41 lines
944 B
Go
41 lines
944 B
Go
|
package channel
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"strconv"
|
||
|
|
||
|
"git.cliffbreak.de/haveachin/go-tsviewer/response"
|
||
|
"github.com/go-chi/chi"
|
||
|
)
|
||
|
|
||
|
func ChannelHandler(s Service) http.HandlerFunc {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
response.Handler(w, response.HandlerFunc(func() (int, error) {
|
||
|
id, err := strconv.ParseUint(chi.URLParam(r, "id"), 10, 64)
|
||
|
if err != nil {
|
||
|
return http.StatusBadRequest, err
|
||
|
}
|
||
|
|
||
|
c, err := s.Channel(int(id))
|
||
|
if err != nil {
|
||
|
return http.StatusNotFound, err
|
||
|
}
|
||
|
|
||
|
return response.New(c, r).Send(w, http.StatusOK)
|
||
|
}))
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func ChannelsHandler(s Service) http.HandlerFunc {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
response.Handler(w, response.HandlerFunc(func() (int, error) {
|
||
|
cc, err := s.Channels()
|
||
|
if err != nil {
|
||
|
return http.StatusBadRequest, err
|
||
|
}
|
||
|
|
||
|
return response.New(cc, r).Send(w, http.StatusOK)
|
||
|
}))
|
||
|
})
|
||
|
}
|