package main
import (
"context"
"fmt"
"io"
"encoding/json"
"log"
"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) {
if r.URL.Path == "/api/clientIP" {
ClientIP := r.RemoteAddr
resp := make(map[string]string)
resp["clientIP"] = ClientIP
JsonResp, err := json.Marshal(resp)
if err != nil {
log.Fatalf("Error happened in JSON marshal. Err: %s", err)
}
w.Write(JsonResp)
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(fsthttp.StatusOK)
return
}
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)
})
}