blob: 75fb650b9ebdb9c330c2f7783e8d14ae31751d38 (
plain) (
tree)
|
|
package handler
import (
"net/http"
"github.com/labstack/echo/v4"
"sh.org.ru/pkg/model"
"sh.org.ru/pkg/tpl"
)
func (h *Handler) Admin(c echo.Context) error {
quotes := make([]model.Quote, 0, 20)
count, err := h.DB.NewSelect().
Model((*model.Quote)(nil)).
Order("id ASC").
Where("approved = ?", false).
ScanAndCount(c.Request().Context(), "es)
if err != nil {
return err
}
return tpl.Admin(quotes, count).Render(c.Request().Context(), c.Response())
}
func (h *Handler) AdminAction(c echo.Context) error {
form := new(tpl.AdminForm)
if err := c.Bind(form); err != nil {
return err
}
switch form.Action {
case "approve":
_, err := h.DB.NewUpdate().
Model(&model.Quote{
ID: int64(form.ID),
Approved: true,
}).
Column("approved").
WherePK("id").
Exec(c.Request().Context())
if err != nil {
return err
}
case "decline":
_, err := h.DB.NewDelete().
Model(&model.Quote{
ID: int64(form.ID),
}).
WherePK("id").
Exec(c.Request().Context())
if err != nil {
return err
}
}
return c.Redirect(http.StatusFound, "/admin/")
}
func (h *Handler) AdminExport(c echo.Context) error {
quotes := []model.Quote{}
err := h.DB.NewSelect().
Model((*model.Quote)(nil)).
Order("id ASC").
Scan(c.Request().Context(), "es)
if err != nil {
return err
}
quotesString := make([]string, 0, len(quotes))
for _, q := range quotes {
quotesString = append(quotesString, q.Quote)
}
return c.JSON(http.StatusOK, quotesString)
}
|