| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // 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 "miniflux.app/ui/form"
- import (
- "net/http"
- "strconv"
- "miniflux.app/errors"
- "miniflux.app/model"
- )
- // FeedForm represents a feed form in the UI
- type FeedForm struct {
- FeedURL string
- SiteURL string
- Title string
- ScraperRules string
- RewriteRules string
- Crawler bool
- UserAgent string
- CategoryID int64
- Username string
- Password string
- }
- // ValidateModification validates FeedForm fields
- func (f FeedForm) ValidateModification() error {
- if f.FeedURL == "" || f.SiteURL == "" || f.Title == "" || f.CategoryID == 0 {
- return errors.NewLocalizedError("error.fields_mandatory")
- }
- return nil
- }
- // Merge updates the fields of the given feed.
- func (f FeedForm) Merge(feed *model.Feed) *model.Feed {
- feed.Category.ID = f.CategoryID
- feed.Title = f.Title
- feed.SiteURL = f.SiteURL
- feed.FeedURL = f.FeedURL
- feed.ScraperRules = f.ScraperRules
- feed.RewriteRules = f.RewriteRules
- feed.Crawler = f.Crawler
- feed.UserAgent = f.UserAgent
- feed.ParsingErrorCount = 0
- feed.ParsingErrorMsg = ""
- feed.Username = f.Username
- feed.Password = f.Password
- return feed
- }
- // NewFeedForm parses the HTTP request and returns a FeedForm
- func NewFeedForm(r *http.Request) *FeedForm {
- categoryID, err := strconv.Atoi(r.FormValue("category_id"))
- if err != nil {
- categoryID = 0
- }
- return &FeedForm{
- FeedURL: r.FormValue("feed_url"),
- SiteURL: r.FormValue("site_url"),
- Title: r.FormValue("title"),
- ScraperRules: r.FormValue("scraper_rules"),
- UserAgent: r.FormValue("user_agent"),
- RewriteRules: r.FormValue("rewrite_rules"),
- Crawler: r.FormValue("crawler") == "1",
- CategoryID: int64(categoryID),
- Username: r.FormValue("feed_username"),
- Password: r.FormValue("feed_password"),
- }
- }
|