12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package api
- import (
- "net/http"
- "github.com/go-chi/chi"
- "github.com/go-chi/render"
- "github.com/willie68/schematic-service-go/dao"
- )
- // TagsRoutes getting all routes for the tags endpoint
- func TagsRoutes() *chi.Mux {
- router := chi.NewRouter()
- router.Get("/", GetTagsEndpoint)
- router.Get("/count", GetTagsCountEndpoint)
- return router
- }
- // ManufacturersRoutes getting all routes for the manufacturers endpoint
- func ManufacturersRoutes() *chi.Mux {
- router := chi.NewRouter()
- router.Get("/", GetManufacturersEndpoint)
- router.Get("/count", GetManufacturersCountEndpoint)
- return router
- }
- //GetTagsEndpoint getting all tags back. No paging...
- func GetTagsEndpoint(response http.ResponseWriter, req *http.Request) {
- tags := dao.GetTags()
- render.JSON(response, req, tags)
- }
- //GetManufacturersEndpoint getting all manufacturers back. No paging...
- func GetManufacturersEndpoint(response http.ResponseWriter, req *http.Request) {
- manufacturers := dao.GetManufacturers()
- render.JSON(response, req, manufacturers)
- }
- //GetTagsCountEndpoint getting all tags back. No paging...
- func GetTagsCountEndpoint(response http.ResponseWriter, req *http.Request) {
- tagsCount := dao.GetTagsCount()
- render.JSON(response, req, tagsCount)
- }
- //GetManufacturersCountEndpoint getting all manufacturers back. No paging...
- func GetManufacturersCountEndpoint(response http.ResponseWriter, req *http.Request) {
- manufacturersCount := dao.GetManufacturersCount()
- render.JSON(response, req, manufacturersCount)
- }
|