-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
69 lines (57 loc) · 1.41 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
69
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"github.com/hibiken/asynq"
log "github.com/sirupsen/logrus"
"os"
"rtcgw/config"
"rtcgw/controllers"
"sync"
"time"
)
func init() {
formatter := new(log.TextFormatter)
formatter.TimestampFormat = time.RFC3339
formatter.FullTimestamp = true
log.SetFormatter(formatter)
log.SetOutput(os.Stdout)
}
var splash = `
┏━┓╺┳╸┏━╸┏━╸╻ ╻
┣┳┛ ┃ ┃ ┃╺┓┃╻┃
╹┗╸ ╹ ┗━╸┗━┛┗┻┛
`
var client *asynq.Client
func main() {
fmt.Printf(splash)
var wg sync.WaitGroup
client = asynq.NewClient(asynq.RedisClientOpt{Addr: config.RTCGwConf.Server.RedisAddress})
defer func(client *asynq.Client) {
_ = client.Close()
}(client)
wg.Add(1)
go startAPIServer(&wg)
wg.Wait()
}
func startAPIServer(wg *sync.WaitGroup) {
defer wg.Done()
router := gin.Default()
v2 := router.Group("/api", BasicAuth())
{
v2.GET("/test2", func(c *gin.Context) {
c.String(200, "Authorized")
})
r := new(controllers.ResultsController)
v2.POST("/results", r.Start)
e := new(controllers.ClientsController)
v2.POST("/clients", e.Start)
}
// Handle error response when a route is not defined
router.NoRoute(func(c *gin.Context) {
c.String(404, "Page Not Found!")
})
if err := router.Run(":" + fmt.Sprintf("%s", config.RTCGwConf.Server.Port)); err != nil {
log.Fatalf("Could not start GIN server: %v", err)
}
}