package main
import (
"context"
"fmt"
"io"
"regexp"
"github.com/fastly/compute-sdk-go/fsthttp"
)
const BackendName = "origin_0"
func main() {
fsthttp.ServeFunc(func(ctx context.Context, w fsthttp.ResponseWriter, r *fsthttp.Request) {
var subdomainCheck = regexp.MustCompile(`^(.+?\.)fiddle\.`)
if (subdomainCheck.MatchString(r.Header.Get("host"))) {
r.URL.Path = "/subcontent/" + r.URL.Path;
}
resp, err := r.Send(ctx, BackendName)
if err != nil {
w.WriteHeader(fsthttp.StatusBadGateway)
fmt.Fprintln(w, err.Error())
return
}
w.Header().Reset(resp.Header)
w.WriteHeader(resp.StatusCode)
io.Copy(w, resp.Body)
})
}