hiling_go/api/server.go

58 lines
1.3 KiB
Go
Raw Normal View History

2023-09-08 22:25:38 +07:00
package api
import (
"fmt"
db "git.nochill.in/nochill/hiling_go/db/sqlc"
"git.nochill.in/nochill/hiling_go/util"
"git.nochill.in/nochill/hiling_go/util/token"
"github.com/gin-gonic/gin"
)
type Server struct {
Config util.Config
Store db.Store
TokenMaker token.Maker
2023-09-12 17:07:57 +07:00
Router *gin.Engine
2023-09-08 22:25:38 +07:00
}
func NewServer(config util.Config, store db.Store) (*Server, error) {
tokenMaker, err := token.NewPasetoMaker(config.TokenSymmetricKey)
if err != nil {
return nil, fmt.Errorf("cannot create token maker: %w", err)
}
server := &Server{
Config: config,
Store: store,
TokenMaker: tokenMaker,
2023-09-08 22:25:38 +07:00
}
server.getRoutes()
return server, nil
}
func (server *Server) getRoutes() {
router := gin.Default()
2023-09-14 22:51:01 +07:00
router.Use(CORSMiddleware())
2023-09-12 17:07:57 +07:00
router.POST("/user/signup", server.createUser)
2023-09-08 22:25:38 +07:00
// LOCATION
router.POST("/locations", server.createLocation)
2023-09-17 16:32:48 +07:00
router.GET("/locations/recent", server.getListRecentLocationsWithRatings)
router.GET("/locations/top-ratings", server.getTopListLocations)
router.GET("/locations", server.getListLocations)
router.GET("/location/:location_id", server.getLocation)
2023-09-19 21:49:48 +07:00
//IMAGES
router.GET("/images/location", server.getAllImagesByLocation)
2023-09-12 17:07:57 +07:00
server.Router = router
2023-09-08 22:25:38 +07:00
}
func (server *Server) Start(address string) error {
2023-09-12 17:07:57 +07:00
return server.Router.Run(address)
2023-09-08 22:25:38 +07:00
}