2023-05-25 20:04:15 -05:00
|
|
|
package root
|
|
|
|
|
|
|
|
import (
|
|
|
|
"safetwitch-backend/extractor"
|
2023-05-30 09:22:20 -05:00
|
|
|
"safetwitch-backend/extractor/chat"
|
2023-05-25 20:04:15 -05:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Routes(route *gin.Engine) {
|
|
|
|
auth := route.Group("/")
|
|
|
|
|
2023-06-07 11:25:52 -05:00
|
|
|
auth.GET("", func(context *gin.Context) {
|
2023-05-30 09:22:20 -05:00
|
|
|
upgradeHeader := context.Request.Header.Get("Upgrade")
|
|
|
|
if upgradeHeader == "websocket" {
|
2023-05-31 07:11:10 -05:00
|
|
|
chat.ServeWS(context)
|
2023-05-30 09:22:20 -05:00
|
|
|
} else {
|
|
|
|
context.JSON(200, extractor.FormatMessage("SafeTwitch backend running", true))
|
|
|
|
}
|
2023-05-25 20:04:15 -05:00
|
|
|
})
|
|
|
|
}
|