miniflux-v2/internal/api/category.go

164 lines
3.9 KiB
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01:00
package api // import "miniflux.app/v2/internal/api"
2017-11-20 06:10:04 +01:00
import (
2021-01-04 07:28:04 +01:00
json_parser "encoding/json"
"log/slog"
"net/http"
2020-11-25 20:46:05 +01:00
"time"
2017-11-28 06:30:04 +01:00
"miniflux.app/v2/internal/config"
"miniflux.app/v2/internal/http/request"
"miniflux.app/v2/internal/http/response/json"
"miniflux.app/v2/internal/model"
"miniflux.app/v2/internal/validator"
2017-11-20 06:10:04 +01:00
)
func (h *handler) createCategory(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r)
2021-01-04 07:28:04 +01:00
var categoryRequest model.CategoryRequest
if err := json_parser.NewDecoder(r.Body).Decode(&categoryRequest); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-12-25 03:04:34 +01:00
return
}
2021-01-04 07:28:04 +01:00
if validationErr := validator.ValidateCategoryCreation(h.store, userID, &categoryRequest); validationErr != nil {
json.BadRequest(w, r, validationErr.Error())
2017-11-20 06:10:04 +01:00
return
}
2021-01-04 07:28:04 +01:00
category, err := h.store.CreateCategory(userID, &categoryRequest)
if err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
2018-10-08 03:42:43 +02:00
json.Created(w, r, category)
2017-11-20 06:10:04 +01:00
}
func (h *handler) updateCategory(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r)
categoryID := request.RouteInt64Param(r, "categoryID")
2017-11-20 06:10:04 +01:00
category, err := h.store.Category(userID, categoryID)
if err != nil {
json.ServerError(w, r, err)
return
}
if category == nil {
json.NotFound(w, r)
return
}
2021-01-04 07:28:04 +01:00
var categoryRequest model.CategoryRequest
if err := json_parser.NewDecoder(r.Body).Decode(&categoryRequest); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
2021-01-04 07:28:04 +01:00
if validationErr := validator.ValidateCategoryModification(h.store, userID, category.ID, &categoryRequest); validationErr != nil {
json.BadRequest(w, r, validationErr.Error())
2017-11-20 06:10:04 +01:00
return
}
2021-01-04 07:28:04 +01:00
categoryRequest.Patch(category)
err = h.store.UpdateCategory(category)
2017-11-20 06:10:04 +01:00
if err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
2018-10-08 03:42:43 +02:00
json.Created(w, r, category)
2017-11-20 06:10:04 +01:00
}
2020-11-25 20:46:05 +01:00
func (h *handler) markCategoryAsRead(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r)
categoryID := request.RouteInt64Param(r, "categoryID")
category, err := h.store.Category(userID, categoryID)
if err != nil {
json.ServerError(w, r, err)
return
}
if category == nil {
json.NotFound(w, r)
return
}
if err = h.store.MarkCategoryAsRead(userID, categoryID, time.Now()); err != nil {
json.ServerError(w, r, err)
return
}
json.NoContent(w, r)
}
func (h *handler) getCategories(w http.ResponseWriter, r *http.Request) {
var categories model.Categories
var err error
includeCounts := request.QueryStringParam(r, "counts", "false")
if includeCounts == "true" {
categories, err = h.store.CategoriesWithFeedCount(request.UserID(r))
} else {
categories, err = h.store.Categories(request.UserID(r))
}
2017-11-20 06:10:04 +01:00
if err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
json.OK(w, r, categories)
2017-11-20 06:10:04 +01:00
}
func (h *handler) removeCategory(w http.ResponseWriter, r *http.Request) {
2018-09-03 23:26:40 +02:00
userID := request.UserID(r)
categoryID := request.RouteInt64Param(r, "categoryID")
2017-11-20 06:10:04 +01:00
2021-01-04 07:28:04 +01:00
if !h.store.CategoryIDExists(userID, categoryID) {
2018-10-08 03:42:43 +02:00
json.NotFound(w, r)
2017-11-20 06:10:04 +01:00
return
}
if err := h.store.RemoveCategory(userID, categoryID); err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
2018-10-08 03:42:43 +02:00
json.NoContent(w, r)
2017-11-20 06:10:04 +01:00
}
2022-12-11 18:07:01 +01:00
func (h *handler) refreshCategory(w http.ResponseWriter, r *http.Request) {
userID := request.UserID(r)
categoryID := request.RouteInt64Param(r, "categoryID")
batchBuilder := h.store.NewBatchBuilder()
batchBuilder.WithErrorLimit(config.Opts.PollingParsingErrorLimit())
batchBuilder.WithoutDisabledFeeds()
batchBuilder.WithUserID(userID)
batchBuilder.WithCategoryID(categoryID)
batchBuilder.WithNextCheckExpired()
jobs, err := batchBuilder.FetchJobs()
2022-12-11 18:07:01 +01:00
if err != nil {
json.ServerError(w, r, err)
return
}
slog.Info(
"Triggered a manual refresh of all feeds for a given category from the API",
slog.Int64("user_id", userID),
slog.Int64("category_id", categoryID),
slog.Int("nb_jobs", len(jobs)),
)
go h.pool.Push(jobs)
2022-12-11 18:07:01 +01:00
json.NoContent(w, r)
}