initial commit

This commit is contained in:
Gianni Carafa
2023-11-01 22:11:27 +01:00
commit 4a0a8d4869
12 changed files with 561 additions and 0 deletions

38
handlers/debug.go Normal file
View File

@@ -0,0 +1,38 @@
package handlers
import (
"io/ioutil"
"net/http"
"time"
"github.com/gofiber/fiber/v2"
"github.com/gojek/heimdall/v7/httpclient"
)
func Debug(c *fiber.Ctx) error {
//url := c.Params("*")
timeout := 1000 * time.Millisecond
client := httpclient.NewClient(httpclient.WithHTTPTimeout(timeout))
headers := http.Header{}
headers.Set("User-Agent", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)")
headers.Set("X-Forwarded-For", "66.249.66.1")
res, err := client.Get("http://google.com", headers)
if err != nil {
panic(err)
}
// Heimdall returns the standard *http.Response object
body, err := ioutil.ReadAll(res.Body)
//fmt.Println(string(body))
/*
resp, err := http.Get(url)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
*/
return c.SendString(string(body))
}