-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.go
68 lines (57 loc) · 1.2 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
64
65
66
67
68
package main
import (
"fmt"
"log"
"net"
"net/http"
"os"
"os/signal"
"strconv"
"syscall"
"time"
"github.com/gin-gonic/gin"
)
func isPrime(value int) bool {
for i := 2; i <= value/2; i++ {
if value%i == 0 {
return false
}
}
return value > 1
}
func main() {
m := gin.Default()
m.LoadHTMLGlob("templates/*")
m.GET("/", func(c *gin.Context) {
waitQuery := c.Request.URL.Query().Get("wait")
primeQuery := c.Request.URL.Query().Get("prime")
if waitQuery != "" {
sleep, _ := strconv.Atoi(waitQuery)
log.Printf("Sleep for %d seconds\n", sleep)
time.Sleep(time.Duration(sleep) * time.Second)
}
if primeQuery != "" {
val, _ := strconv.Atoi(primeQuery)
log.Printf("Is %d prime: %t", val, isPrime(val))
}
c.HTML(http.StatusOK, "index.tmpl", nil)
})
if os.Getenv("PANIC") == "true" {
panic("this is crashing")
}
port := "3000"
if os.Getenv("PORT") != "" {
port = os.Getenv("PORT")
}
listener, err := net.Listen("tcp", ":"+port)
if err != nil {
panic(err)
}
go http.Serve(listener, m)
log.Println("Listening on 0.0.0.0:" + port)
sigs := make(chan os.Signal)
signal.Notify(sigs, syscall.SIGTERM)
<-sigs
fmt.Println("SIGTERM, time to shutdown")
listener.Close()
}