| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- // 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 model // import "miniflux.app/model"
- import (
- "fmt"
- "math"
- "time"
- "miniflux.app/config"
- "miniflux.app/http/client"
- )
- // List of supported schedulers.
- const (
- SchedulerRoundRobin = "round_robin"
- SchedulerEntryFrequency = "entry_frequency"
- // Default settings for the feed query builder
- DefaultFeedSorting = "parsing_error_count"
- DefaultFeedSortingDirection = "desc"
- )
- // Feed represents a feed in the application.
- type Feed struct {
- ID int64 `json:"id"`
- UserID int64 `json:"user_id"`
- FeedURL string `json:"feed_url"`
- SiteURL string `json:"site_url"`
- Title string `json:"title"`
- CheckedAt time.Time `json:"checked_at"`
- NextCheckAt time.Time `json:"next_check_at"`
- EtagHeader string `json:"etag_header"`
- LastModifiedHeader string `json:"last_modified_header"`
- ParsingErrorMsg string `json:"parsing_error_message"`
- ParsingErrorCount int `json:"parsing_error_count"`
- ScraperRules string `json:"scraper_rules"`
- RewriteRules string `json:"rewrite_rules"`
- Crawler bool `json:"crawler"`
- BlocklistRules string `json:"blocklist_rules"`
- KeeplistRules string `json:"keeplist_rules"`
- UrlRewriteRules string `json:"urlrewrite_rules"`
- UserAgent string `json:"user_agent"`
- Cookie string `json:"cookie"`
- Username string `json:"username"`
- Password string `json:"password"`
- Disabled bool `json:"disabled"`
- IgnoreHTTPCache bool `json:"ignore_http_cache"`
- AllowSelfSignedCertificates bool `json:"allow_self_signed_certificates"`
- FetchViaProxy bool `json:"fetch_via_proxy"`
- Category *Category `json:"category,omitempty"`
- Entries Entries `json:"entries,omitempty"`
- Icon *FeedIcon `json:"icon"`
- HideGlobally bool `json:"hide_globally"`
- UnreadCount int `json:"-"`
- ReadCount int `json:"-"`
- }
- type FeedCounters struct {
- ReadCounters map[int64]int `json:"reads"`
- UnreadCounters map[int64]int `json:"unreads"`
- }
- func (f *Feed) String() string {
- return fmt.Sprintf("ID=%d, UserID=%d, FeedURL=%s, SiteURL=%s, Title=%s, Category={%s}",
- f.ID,
- f.UserID,
- f.FeedURL,
- f.SiteURL,
- f.Title,
- f.Category,
- )
- }
- // WithClientResponse updates feed attributes from an HTTP request.
- func (f *Feed) WithClientResponse(response *client.Response) {
- f.EtagHeader = response.ETag
- f.LastModifiedHeader = response.LastModified
- f.FeedURL = response.EffectiveURL
- }
- // WithCategoryID initializes the category attribute of the feed.
- func (f *Feed) WithCategoryID(categoryID int64) {
- f.Category = &Category{ID: categoryID}
- }
- // WithError adds a new error message and increment the error counter.
- func (f *Feed) WithError(message string) {
- f.ParsingErrorCount++
- f.ParsingErrorMsg = message
- }
- // ResetErrorCounter removes all previous errors.
- func (f *Feed) ResetErrorCounter() {
- f.ParsingErrorCount = 0
- f.ParsingErrorMsg = ""
- }
- // CheckedNow set attribute values when the feed is refreshed.
- func (f *Feed) CheckedNow() {
- f.CheckedAt = time.Now()
- if f.SiteURL == "" {
- f.SiteURL = f.FeedURL
- }
- }
- // ScheduleNextCheck set "next_check_at" of a feed based on the scheduler selected from the configuration.
- func (f *Feed) ScheduleNextCheck(weeklyCount int) {
- switch config.Opts.PollingScheduler() {
- case SchedulerEntryFrequency:
- var intervalMinutes int
- if weeklyCount == 0 {
- intervalMinutes = config.Opts.SchedulerEntryFrequencyMaxInterval()
- } else {
- intervalMinutes = int(math.Round(float64(7*24*60) / float64(weeklyCount)))
- }
- intervalMinutes = int(math.Min(float64(intervalMinutes), float64(config.Opts.SchedulerEntryFrequencyMaxInterval())))
- intervalMinutes = int(math.Max(float64(intervalMinutes), float64(config.Opts.SchedulerEntryFrequencyMinInterval())))
- f.NextCheckAt = time.Now().Add(time.Minute * time.Duration(intervalMinutes))
- default:
- f.NextCheckAt = time.Now()
- }
- }
- // FeedCreationRequest represents the request to create a feed.
- type FeedCreationRequest struct {
- FeedURL string `json:"feed_url"`
- CategoryID int64 `json:"category_id"`
- UserAgent string `json:"user_agent"`
- Cookie string `json:"cookie"`
- Username string `json:"username"`
- Password string `json:"password"`
- Crawler bool `json:"crawler"`
- Disabled bool `json:"disabled"`
- IgnoreHTTPCache bool `json:"ignore_http_cache"`
- AllowSelfSignedCertificates bool `json:"allow_self_signed_certificates"`
- FetchViaProxy bool `json:"fetch_via_proxy"`
- ScraperRules string `json:"scraper_rules"`
- RewriteRules string `json:"rewrite_rules"`
- BlocklistRules string `json:"blocklist_rules"`
- KeeplistRules string `json:"keeplist_rules"`
- HideGlobally bool `json:"hide_globally"`
- UrlRewriteRules string `json:"urlrewrite_rules"`
- }
- // FeedModificationRequest represents the request to update a feed.
- type FeedModificationRequest struct {
- FeedURL *string `json:"feed_url"`
- SiteURL *string `json:"site_url"`
- Title *string `json:"title"`
- ScraperRules *string `json:"scraper_rules"`
- RewriteRules *string `json:"rewrite_rules"`
- BlocklistRules *string `json:"blocklist_rules"`
- KeeplistRules *string `json:"keeplist_rules"`
- UrlRewriteRules *string `json:"urlrewrite_rules"`
- Crawler *bool `json:"crawler"`
- UserAgent *string `json:"user_agent"`
- Cookie *string `json:"cookie"`
- Username *string `json:"username"`
- Password *string `json:"password"`
- CategoryID *int64 `json:"category_id"`
- Disabled *bool `json:"disabled"`
- IgnoreHTTPCache *bool `json:"ignore_http_cache"`
- AllowSelfSignedCertificates *bool `json:"allow_self_signed_certificates"`
- FetchViaProxy *bool `json:"fetch_via_proxy"`
- HideGlobally *bool `json:"hide_globally"`
- }
- // Patch updates a feed with modified values.
- func (f *FeedModificationRequest) Patch(feed *Feed) {
- if f.FeedURL != nil && *f.FeedURL != "" {
- feed.FeedURL = *f.FeedURL
- }
- if f.SiteURL != nil && *f.SiteURL != "" {
- feed.SiteURL = *f.SiteURL
- }
- if f.Title != nil && *f.Title != "" {
- feed.Title = *f.Title
- }
- if f.ScraperRules != nil {
- feed.ScraperRules = *f.ScraperRules
- }
- if f.RewriteRules != nil {
- feed.RewriteRules = *f.RewriteRules
- }
- if f.KeeplistRules != nil {
- feed.KeeplistRules = *f.KeeplistRules
- }
- if f.UrlRewriteRules != nil {
- feed.UrlRewriteRules = *f.UrlRewriteRules
- }
- if f.BlocklistRules != nil {
- feed.BlocklistRules = *f.BlocklistRules
- }
- if f.Crawler != nil {
- feed.Crawler = *f.Crawler
- }
- if f.UserAgent != nil {
- feed.UserAgent = *f.UserAgent
- }
- if f.Cookie != nil {
- feed.Cookie = *f.Cookie
- }
- if f.Username != nil {
- feed.Username = *f.Username
- }
- if f.Password != nil {
- feed.Password = *f.Password
- }
- if f.CategoryID != nil && *f.CategoryID > 0 {
- feed.Category.ID = *f.CategoryID
- }
- if f.Disabled != nil {
- feed.Disabled = *f.Disabled
- }
- if f.IgnoreHTTPCache != nil {
- feed.IgnoreHTTPCache = *f.IgnoreHTTPCache
- }
- if f.AllowSelfSignedCertificates != nil {
- feed.AllowSelfSignedCertificates = *f.AllowSelfSignedCertificates
- }
- if f.FetchViaProxy != nil {
- feed.FetchViaProxy = *f.FetchViaProxy
- }
- if f.HideGlobally != nil {
- feed.HideGlobally = *f.HideGlobally
- }
- }
- // Feeds is a list of feed
- type Feeds []*Feed
|