1
0
Fork 0
miniflux/api/category.go

97 lines
2.3 KiB
Go
Raw Normal View History

2017-11-20 00:10:04 -05:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 00:51:50 -04:00
package api // import "miniflux.app/api"
2017-11-20 00:10:04 -05:00
import (
"errors"
"net/http"
2017-11-28 00:30:04 -05:00
2018-08-25 00:51:50 -04:00
"miniflux.app/http/request"
"miniflux.app/http/response/json"
2017-11-20 00:10:04 -05:00
)
// CreateCategory is the API handler to create a new category.
func (c *Controller) CreateCategory(w http.ResponseWriter, r *http.Request) {
category, err := decodeCategoryPayload(r.Body)
2017-11-20 00:10:04 -05:00
if err != nil {
2018-10-07 21:42:43 -04:00
json.BadRequest(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
2018-09-03 17:26:40 -04:00
userID := request.UserID(r)
2017-12-24 21:04:34 -05:00
category.UserID = userID
2017-11-20 00:10:04 -05:00
if err := category.ValidateCategoryCreation(); err != nil {
2018-10-07 21:42:43 -04:00
json.BadRequest(w, r, err)
2017-12-24 21:04:34 -05:00
return
}
if c, err := c.store.CategoryByTitle(userID, category.Title); err != nil || c != nil {
2018-10-07 21:42:43 -04:00
json.BadRequest(w, r, errors.New("This category already exists"))
2017-11-20 00:10:04 -05:00
return
}
2018-10-07 21:42:43 -04:00
if err := c.store.CreateCategory(category); err != nil {
json.ServerError(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
2018-10-07 21:42:43 -04:00
json.Created(w, r, category)
2017-11-20 00:10:04 -05:00
}
// UpdateCategory is the API handler to update a category.
func (c *Controller) UpdateCategory(w http.ResponseWriter, r *http.Request) {
categoryID := request.RouteInt64Param(r, "categoryID")
2017-11-20 00:10:04 -05:00
category, err := decodeCategoryPayload(r.Body)
2017-11-20 00:10:04 -05:00
if err != nil {
2018-10-07 21:42:43 -04:00
json.BadRequest(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
2018-09-03 17:26:40 -04:00
category.UserID = request.UserID(r)
2017-11-20 00:10:04 -05:00
category.ID = categoryID
if err := category.ValidateCategoryModification(); err != nil {
2018-10-07 21:42:43 -04:00
json.BadRequest(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
err = c.store.UpdateCategory(category)
if err != nil {
2018-10-07 21:42:43 -04:00
json.ServerError(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
2018-10-07 21:42:43 -04:00
json.Created(w, r, category)
2017-11-20 00:10:04 -05:00
}
// GetCategories is the API handler to get a list of categories for a given user.
func (c *Controller) GetCategories(w http.ResponseWriter, r *http.Request) {
2018-09-03 17:26:40 -04:00
categories, err := c.store.Categories(request.UserID(r))
2017-11-20 00:10:04 -05:00
if err != nil {
2018-10-07 21:42:43 -04:00
json.ServerError(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
json.OK(w, r, categories)
2017-11-20 00:10:04 -05:00
}
// RemoveCategory is the API handler to remove a category.
func (c *Controller) RemoveCategory(w http.ResponseWriter, r *http.Request) {
2018-09-03 17:26:40 -04:00
userID := request.UserID(r)
categoryID := request.RouteInt64Param(r, "categoryID")
2017-11-20 00:10:04 -05:00
if !c.store.CategoryExists(userID, categoryID) {
2018-10-07 21:42:43 -04:00
json.NotFound(w, r)
2017-11-20 00:10:04 -05:00
return
}
if err := c.store.RemoveCategory(userID, categoryID); err != nil {
2018-10-07 21:42:43 -04:00
json.ServerError(w, r, err)
2017-11-20 00:10:04 -05:00
return
}
2018-10-07 21:42:43 -04:00
json.NoContent(w, r)
2017-11-20 00:10:04 -05:00
}