mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2025-01-10 06:40:15 -05:00
45 lines
975 B
Go
45 lines
975 B
Go
package users
|
|
|
|
import (
|
|
"safetwitch-backend/extractor"
|
|
"safetwitch-backend/extractor/twitch"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Routes(route *gin.Engine) {
|
|
auth := route.Group("/api/users")
|
|
|
|
auth.GET("/:streamerName", func(context *gin.Context) {
|
|
data, err := twitch.GetStreamerInfo(context.Param("streamerName"))
|
|
if err != nil {
|
|
if err.Error() == "streamer not found" {
|
|
context.JSON(404, gin.H{
|
|
"status": "error",
|
|
"message": "streamer not found",
|
|
})
|
|
} else {
|
|
context.Error(err)
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
context.JSON(200, extractor.FormatMessage(data, true))
|
|
})
|
|
|
|
// type postData struct {
|
|
// Streamers []string `json:"streamers"`
|
|
// }
|
|
|
|
// auth.POST("/bulk", func(context *gin.Context) {
|
|
// var f postData
|
|
// err := context.ShouldBindJSON(&f)
|
|
// if err != nil {
|
|
// context.Error(err)
|
|
// }
|
|
|
|
// data := twitch.GetBulkStreamerInfo(f.Streamers)
|
|
// context.JSON(200, extractor.FormatMessage(data, true))
|
|
// })
|
|
}
|