2025-09-19 04:08:42 +00:00
|
|
|
package controller
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"narasi-ahli-be/app/module/articles/request"
|
|
|
|
|
"narasi-ahli-be/app/module/articles/service"
|
|
|
|
|
"narasi-ahli-be/utils/paginator"
|
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
|
"github.com/rs/zerolog"
|
|
|
|
|
|
|
|
|
|
utilRes "narasi-ahli-be/utils/response"
|
|
|
|
|
utilVal "narasi-ahli-be/utils/validator"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type articlesController struct {
|
|
|
|
|
articlesService service.ArticlesService
|
|
|
|
|
Log zerolog.Logger
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ArticlesController interface {
|
|
|
|
|
All(c *fiber.Ctx) error
|
|
|
|
|
Show(c *fiber.Ctx) error
|
|
|
|
|
ShowByOldId(c *fiber.Ctx) error
|
|
|
|
|
Save(c *fiber.Ctx) error
|
|
|
|
|
SaveThumbnail(c *fiber.Ctx) error
|
|
|
|
|
Update(c *fiber.Ctx) error
|
|
|
|
|
UpdateBanner(c *fiber.Ctx) error
|
|
|
|
|
Delete(c *fiber.Ctx) error
|
|
|
|
|
Viewer(c *fiber.Ctx) error
|
|
|
|
|
SummaryStats(c *fiber.Ctx) error
|
|
|
|
|
ArticlePerUserLevelStats(c *fiber.Ctx) error
|
|
|
|
|
ArticleMonthlyStats(c *fiber.Ctx) error
|
|
|
|
|
PublishScheduling(c *fiber.Ctx) error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewArticlesController(articlesService service.ArticlesService, log zerolog.Logger) ArticlesController {
|
|
|
|
|
return &articlesController{
|
|
|
|
|
articlesService: articlesService,
|
|
|
|
|
Log: log,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// All Articles
|
|
|
|
|
// @Summary Get all Articles
|
|
|
|
|
// @Description API for getting all Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param X-Client-Key header string true "Insert the X-Client-Key"
|
|
|
|
|
// @Param req query request.ArticlesQueryRequest false "query parameters"
|
|
|
|
|
// @Param req query paginator.Pagination false "pagination parameters"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles [get]
|
|
|
|
|
func (_i *articlesController) All(c *fiber.Ctx) error {
|
|
|
|
|
paginate, err := paginator.Paginate(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reqContext := request.ArticlesQueryRequestContext{
|
|
|
|
|
Title: c.Query("title"),
|
|
|
|
|
Description: c.Query("description"),
|
|
|
|
|
Tags: c.Query("tags"),
|
|
|
|
|
Category: c.Query("category"),
|
|
|
|
|
CategoryId: c.Query("categoryId"),
|
|
|
|
|
TypeId: c.Query("typeId"),
|
|
|
|
|
StatusId: c.Query("statusId"),
|
|
|
|
|
IsPublish: c.Query("isPublish"),
|
|
|
|
|
IsDraft: c.Query("isDraft"),
|
|
|
|
|
IsBanner: c.Query("isBanner"),
|
|
|
|
|
}
|
|
|
|
|
req := reqContext.ToParamRequest()
|
|
|
|
|
req.Pagination = paginate
|
|
|
|
|
|
|
|
|
|
articlesData, paging, err := _i.articlesService.All(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles list successfully retrieved"},
|
|
|
|
|
Data: articlesData,
|
|
|
|
|
Meta: paging,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Show Articles
|
|
|
|
|
// @Summary Get one Articles
|
|
|
|
|
// @Description API for getting one Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param id path int true "Articles ID"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/{id} [get]
|
|
|
|
|
func (_i *articlesController) Show(c *fiber.Ctx) error {
|
|
|
|
|
id, err := strconv.ParseUint(c.Params("id"), 10, 0)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
articlesData, err := _i.articlesService.Show(uint(id))
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles successfully retrieved"},
|
|
|
|
|
Data: articlesData,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ShowByOldId Articles
|
|
|
|
|
// @Summary Get one Articles
|
|
|
|
|
// @Description API for getting one Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param id path int true "Articles Old ID"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/old-id/{id} [get]
|
|
|
|
|
func (_i *articlesController) ShowByOldId(c *fiber.Ctx) error {
|
|
|
|
|
id, err := strconv.ParseUint(c.Params("id"), 10, 0)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
articlesData, err := _i.articlesService.ShowByOldId(uint(id))
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles successfully retrieved"},
|
|
|
|
|
Data: articlesData,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Save Articles
|
|
|
|
|
// @Summary Create Articles
|
|
|
|
|
// @Description API for create Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param X-Csrf-Token header string false "Insert the X-Csrf-Token"
|
|
|
|
|
// @Param Authorization header string false "Insert your access token" default(Bearer <Add access token here>)
|
|
|
|
|
// @Param payload body request.ArticlesCreateRequest true "Required payload"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles [post]
|
|
|
|
|
func (_i *articlesController) Save(c *fiber.Ctx) error {
|
|
|
|
|
req := new(request.ArticlesCreateRequest)
|
|
|
|
|
if err := utilVal.ParseAndValidate(c, req); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
authToken := c.Get("Authorization")
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
dataResult, err := _i.articlesService.Save(*req, authToken)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles successfully created"},
|
|
|
|
|
Data: dataResult,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SaveThumbnail Articles
|
|
|
|
|
// @Summary Save Thumbnail Articles
|
|
|
|
|
// @Description API for Save Thumbnail of Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Produce json
|
|
|
|
|
// @Param X-Csrf-Token header string true "Insert the X-Csrf-Token"
|
|
|
|
|
// @Param files formData file true "Upload thumbnail"
|
|
|
|
|
// @Param id path int true "Articles ID"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/thumbnail/{id} [post]
|
|
|
|
|
func (_i *articlesController) SaveThumbnail(c *fiber.Ctx) error {
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
err := _i.articlesService.SaveThumbnail(c)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Thumbnail of Articles successfully created"},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update Articles
|
|
|
|
|
// @Summary Update Articles
|
|
|
|
|
// @Description API for update Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param X-Csrf-Token header string true "Insert the X-Csrf-Token"
|
|
|
|
|
// @Param payload body request.ArticlesUpdateRequest true "Required payload"
|
|
|
|
|
// @Param id path int true "Articles ID"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/{id} [put]
|
|
|
|
|
func (_i *articlesController) Update(c *fiber.Ctx) error {
|
|
|
|
|
id, err := strconv.ParseUint(c.Params("id"), 10, 0)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
req := new(request.ArticlesUpdateRequest)
|
|
|
|
|
if err := utilVal.ParseAndValidate(c, req); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
err = _i.articlesService.Update(uint(id), *req)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles successfully updated"},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UpdateBanner Articles
|
|
|
|
|
// @Summary Update Banner Articles
|
|
|
|
|
// @Description API for Update Banner Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param X-Csrf-Token header string true "Insert the X-Csrf-Token"
|
|
|
|
|
// @Param id path int true "Articles ID"
|
|
|
|
|
// @Param isBanner query bool true "Articles Banner Status"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/banner/{id} [put]
|
|
|
|
|
func (_i *articlesController) UpdateBanner(c *fiber.Ctx) error {
|
|
|
|
|
id, err := strconv.ParseUint(c.Params("id"), 10, 0)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isBanner, err := strconv.ParseBool(c.Query("isBanner"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
err = _i.articlesService.UpdateBanner(uint(id), isBanner)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles successfully banner updated"},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete Articles
|
|
|
|
|
// @Summary Delete Articles
|
|
|
|
|
// @Description API for delete Articles
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param X-Csrf-Token header string true "Insert the X-Csrf-Token"
|
|
|
|
|
// @Param id path int true "Articles ID"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/{id} [delete]
|
|
|
|
|
func (_i *articlesController) Delete(c *fiber.Ctx) error {
|
|
|
|
|
id, err := strconv.ParseUint(c.Params("id"), 10, 0)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
err = _i.articlesService.Delete(uint(id))
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Articles successfully deleted"},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Viewer Articles
|
|
|
|
|
// @Summary Viewer Articles Thumbnail
|
|
|
|
|
// @Description API for View Thumbnail of Article
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param thumbnailName path string true "Articles Thumbnail Name"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/thumbnail/viewer/{thumbnailName} [get]
|
|
|
|
|
func (_i *articlesController) Viewer(c *fiber.Ctx) error {
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
return _i.articlesService.Viewer(c)
|
2025-09-19 04:08:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SummaryStats Articles
|
|
|
|
|
// @Summary SummaryStats Articles
|
|
|
|
|
// @Description API for Summary Stats of Article
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param Authorization header string false "Insert your access token" default(Bearer <Add access token here>)
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/statistic/summary [get]
|
|
|
|
|
func (_i *articlesController) SummaryStats(c *fiber.Ctx) error {
|
|
|
|
|
authToken := c.Get("Authorization")
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
response, err := _i.articlesService.SummaryStats(authToken)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Summary Stats of Articles successfully retrieved"},
|
|
|
|
|
Data: response,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ArticlePerUserLevelStats Articles
|
|
|
|
|
// @Summary ArticlePerUserLevelStats Articles
|
|
|
|
|
// @Description API for ArticlePerUserLevelStats of Article
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param Authorization header string false "Insert your access token" default(Bearer <Add access token here>)
|
|
|
|
|
// @Param startDate query string false "start date"
|
|
|
|
|
// @Param endDate query string false "start date"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/statistic/user-levels [get]
|
|
|
|
|
func (_i *articlesController) ArticlePerUserLevelStats(c *fiber.Ctx) error {
|
|
|
|
|
authToken := c.Get("Authorization")
|
|
|
|
|
startDate := c.Query("startDate")
|
|
|
|
|
endDate := c.Query("endDate")
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
response, err := _i.articlesService.ArticlePerUserLevelStats(authToken, &startDate, &endDate)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"ArticlePerUserLevelStats of Articles successfully retrieved"},
|
|
|
|
|
Data: response,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ArticleMonthlyStats Articles
|
|
|
|
|
// @Summary ArticleMonthlyStats Articles
|
|
|
|
|
// @Description API for ArticleMonthlyStats of Article
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param Authorization header string false "Insert your access token" default(Bearer <Add access token here>)
|
|
|
|
|
// @Param year query int false "year"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/statistic/monthly [get]
|
|
|
|
|
func (_i *articlesController) ArticleMonthlyStats(c *fiber.Ctx) error {
|
|
|
|
|
authToken := c.Get("Authorization")
|
|
|
|
|
year := c.Query("year")
|
|
|
|
|
yearInt, err := strconv.Atoi(year)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
response, err := _i.articlesService.ArticleMonthlyStats(authToken, &yearInt)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"ArticleMonthlyStats of Articles successfully retrieved"},
|
|
|
|
|
Data: response,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// PublishScheduling Articles
|
|
|
|
|
// @Summary PublishScheduling Articles
|
|
|
|
|
// @Description API for Publish Schedule of Article
|
|
|
|
|
// @Tags Articles
|
|
|
|
|
// @Security Bearer
|
|
|
|
|
// @Param X-Csrf-Token header string true "Insert the X-Csrf-Token"
|
|
|
|
|
// @Param Authorization header string false "Insert your access token" default(Bearer <Add access token here>)
|
|
|
|
|
// @Param id query int false "article id"
|
|
|
|
|
// @Param date query string false "publish date"
|
|
|
|
|
// @Success 200 {object} response.Response
|
|
|
|
|
// @Failure 400 {object} response.BadRequestError
|
|
|
|
|
// @Failure 401 {object} response.UnauthorizedError
|
|
|
|
|
// @Failure 500 {object} response.InternalServerError
|
|
|
|
|
// @Router /articles/publish-scheduling [post]
|
|
|
|
|
func (_i *articlesController) PublishScheduling(c *fiber.Ctx) error {
|
|
|
|
|
id, err := strconv.ParseUint(c.Query("id"), 10, 0)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
date := c.Query("date")
|
|
|
|
|
|
|
|
|
|
// Get from context
|
2025-09-20 02:45:59 +00:00
|
|
|
err = _i.articlesService.PublishScheduling(uint(id), date)
|
2025-09-19 04:08:42 +00:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilRes.Resp(c, utilRes.Response{
|
|
|
|
|
Success: true,
|
|
|
|
|
Messages: utilRes.Messages{"Publish Scheduling of Articles successfully saved"},
|
|
|
|
|
})
|
|
|
|
|
}
|