-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
54 lines (39 loc) · 1.24 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
package main
import (
"log"
"os"
"github.com/arkhamHack/VerbiNative-backend/users"
"github.com/arkhamHack/VerbiNative-backend/websockets"
"github.com/arkhamHack/VerbiNative-backend/chatroom"
"github.com/arkhamHack/VerbiNative-backend/controllers"
"github.com/arkhamHack/VerbiNative-backend/middleware"
"github.com/gin-gonic/gin"
"github.com/go-redis/redis"
)
func init() {
rdb := redis.NewClient(&redis.Options{Addr: "localhost:6379"})
defer rdb.Close()
rdb.SAdd(controllers.Channels_key, "general", "random")
}
var rdb *redis.Client
func main() {
router := gin.Default()
sessionKey := os.Getenv("SECRET_SESSION_KEY")
if sessionKey == "" {
log.Fatal("error: set SECRET_SESSION_KEY to a secret string and try again")
}
router.Use(gin.Logger())
router.Use(middleware.CORSMiddleware())
// store := cookie.NewStore([]byte(sessionKey))
// router.Use(sessions.Sessions("verbinative-user-session", store))
//router.Use(middleware.RedisMiddleware())
users.UserRoute(router)
authRoutes := router.Group("/user")
authRoutes.Use(middleware.Authentication())
chatroom.ChatRoutes(router)
router.Group("/chat")
// chatRouter.Use(middleware.RedisMiddleware(rdb))
websockets.WebSockRoute(router)
router.Group("/ws")
router.Run(":8080")
}