newsbot-portal/internal/handlers/articles.go

35 lines
927 B
Go
Raw Normal View History

2024-05-12 10:46:00 -07:00
package handlers
import (
"net/http"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/domain"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/articles"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
2024-05-12 10:46:00 -07:00
"github.com/labstack/echo/v4"
)
func (h *Handler) ArticlesList(c echo.Context) error {
_, err := ValidateJwt(c, h.config.JwtSecret, h.config.ServerAddress)
if err != nil {
return Render(c, http.StatusOK, layout.Error(err))
}
2024-05-12 10:46:00 -07:00
userToken, err := c.Cookie(domain.CookieToken)
if err != nil {
return Render(c, http.StatusBadRequest, layout.Error(err))
2024-05-12 10:46:00 -07:00
}
resp, err := h.api.Articles.List(userToken.Value, 0)
if err != nil {
return Render(c, http.StatusBadRequest, layout.Error(err))
2024-05-12 10:46:00 -07:00
}
vm := models.ListArticlesViewModel{
2024-05-12 10:46:00 -07:00
Items: resp.Payload,
}
return Render(c, http.StatusOK, articles.List(vm))
}