feat(web-proxy): add plausible.pluralkit.me

This commit is contained in:
spiral 2022-12-16 22:24:06 +00:00
parent 91f5e7c8f6
commit 6c7abeb3de
No known key found for this signature in database
GPG Key ID: 244A11E4B0BCF40E

View File

@ -23,10 +23,9 @@ var token2 string
// todo: this shouldn't be in this repo
var remotes = map[string]*httputil.ReverseProxy{
"api.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:5000"),
"dash.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:8080"),
"sentry.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:9000"),
"plausible.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:8000"),
"api.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:5000"),
"dash.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:8080"),
"sentry.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:9000"),
}
func init() {
@ -48,6 +47,13 @@ func init() {
type ProxyHandler struct{}
func (p ProxyHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
// redirect to plausible through fly-proxy
if r.Host == "plausible.pluralkit.me" {
rw.Header().Add("fly-replay", "app=pluralkit-analytics")
rw.WriteHeader(200)
return
}
remote, ok := remotes[r.Host]
if !ok {
// unknown domains redirect to landing page