35 lines
927 B
Go
35 lines
927 B
Go
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"
|
|
"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))
|
|
}
|
|
|
|
userToken, err := c.Cookie(domain.CookieToken)
|
|
if err != nil {
|
|
return Render(c, http.StatusBadRequest, layout.Error(err))
|
|
}
|
|
|
|
resp, err := h.api.Articles.List(userToken.Value, 0)
|
|
if err != nil {
|
|
return Render(c, http.StatusBadRequest, layout.Error(err))
|
|
}
|
|
|
|
vm := models.ListArticlesViewModel{
|
|
Items: resp.Payload,
|
|
}
|
|
|
|
return Render(c, http.StatusOK, articles.List(vm))
|
|
}
|