miniflux-v2/ui/form/category.go

39 lines
887 B
Go
Raw Normal View History

2017-11-20 06:10:04 +01: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.
package form
import (
"net/http"
2017-11-28 06:30:04 +01:00
2017-12-13 06:48:13 +01:00
"github.com/miniflux/miniflux/errors"
"github.com/miniflux/miniflux/model"
2017-11-20 06:10:04 +01:00
)
// CategoryForm represents a feed form in the UI
type CategoryForm struct {
Title string
}
2017-11-28 06:30:04 +01:00
// Validate makes sure the form values are valid.
2017-11-20 06:10:04 +01:00
func (c CategoryForm) Validate() error {
if c.Title == "" {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("The title is mandatory.")
2017-11-20 06:10:04 +01:00
}
return nil
}
2017-11-28 06:30:04 +01:00
// Merge update the given category fields.
2017-11-20 06:10:04 +01:00
func (c CategoryForm) Merge(category *model.Category) *model.Category {
category.Title = c.Title
return category
}
2017-11-28 06:30:04 +01:00
// NewCategoryForm returns a new CategoryForm.
2017-11-20 06:10:04 +01:00
func NewCategoryForm(r *http.Request) *CategoryForm {
return &CategoryForm{
Title: r.FormValue("title"),
}
}