-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
63 lines (55 loc) · 1.73 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package main
import (
"fmt"
"net/http"
"github.com/labstack/echo/v4"
)
type result struct {
status string
}
func CheckStatus(url string) (string, int) {
res, err := http.Get(url)
if err != nil {
return "err!", http.StatusInternalServerError
}
if res.StatusCode >= 400 && res.StatusCode < 500 {
failStatus := fmt.Sprintf("Failed with status %d", res.StatusCode)
return failStatus, res.StatusCode
} else if res.StatusCode >= 200 && res.StatusCode < 300 {
successStatus := fmt.Sprintf("Successful with status %d", res.StatusCode)
return successStatus, res.StatusCode
} else if res.StatusCode >= 300 && res.StatusCode < 400 {
status300 := "Hmm... the client is choosing multiple things."
return status300, res.StatusCode
} else if res.StatusCode >= 500 {
StatusInternalServerError := "Oki.. the server has a problem. Give up"
return StatusInternalServerError, res.StatusCode
} else if res.StatusCode >= 100 && res.StatusCode < 200 {
status100 := "Loading...99%"
return status100, res.StatusCode
}
return fmt.Sprintf("Successful with status %d", res.StatusCode), res.StatusCode
}
func handleHome(c echo.Context) error {
return c.File("./html/home.html")
}
func handleChecker(c echo.Context) error {
result, status := CheckStatus("https://discord.com/")
fmt.Println(result)
if status >= 400 && status < 500 {
return c.File("./html/400.html")
} else if status >= 300 && status < 500 {
return c.File("./html/300.html")
} else if status >= 500 {
return c.File("./html/500.html")
} else if status >= 100 && status < 200 {
return c.File("./html/100.html")
}
return c.File("./html/200.html")
}
func main() {
e := echo.New()
e.GET("/", handleHome)
e.POST("/check", handleChecker)
e.Logger.Fatal(e.Start(":3000"))
}