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.
|
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
package handler // import "miniflux.app/reader/handler"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-11-21 02:12:37 +01:00
|
|
|
"time"
|
|
|
|
|
2020-05-25 23:59:15 +02:00
|
|
|
"miniflux.app/config"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/errors"
|
|
|
|
"miniflux.app/http/client"
|
|
|
|
"miniflux.app/locale"
|
|
|
|
"miniflux.app/logger"
|
|
|
|
"miniflux.app/model"
|
2018-10-15 06:43:48 +02:00
|
|
|
"miniflux.app/reader/browser"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/reader/icon"
|
2018-10-14 20:46:41 +02:00
|
|
|
"miniflux.app/reader/parser"
|
2018-12-03 05:51:06 +01:00
|
|
|
"miniflux.app/reader/processor"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/storage"
|
|
|
|
"miniflux.app/timer"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-02-08 04:10:36 +01:00
|
|
|
errDuplicate = "This feed already exists (%s)"
|
2017-11-25 07:29:20 +01:00
|
|
|
errNotFound = "Feed %d not found"
|
2018-02-08 04:10:36 +01:00
|
|
|
errCategoryNotFound = "Category not found for this user"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// CreateFeed fetch, parse and store a new feed.
|
2021-01-04 22:49:28 +01:00
|
|
|
func CreateFeed(store *storage.Storage, userID int64, feedCreationRequest *model.FeedCreationRequest) (*model.Feed, error) {
|
|
|
|
defer timer.ExecutionTime(time.Now(), fmt.Sprintf("[CreateFeed] FeedURL=%s", feedCreationRequest.FeedURL))
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2021-08-30 16:53:05 +02:00
|
|
|
user, storeErr := store.UserByID(userID)
|
|
|
|
if storeErr != nil {
|
|
|
|
return nil, storeErr
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
if !store.CategoryIDExists(userID, feedCreationRequest.CategoryID) {
|
2017-11-25 07:29:20 +01:00
|
|
|
return nil, errors.NewLocalizedError(errCategoryNotFound)
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
request := client.NewClientWithConfig(feedCreationRequest.FeedURL, config.Opts)
|
|
|
|
request.WithCredentials(feedCreationRequest.Username, feedCreationRequest.Password)
|
|
|
|
request.WithUserAgent(feedCreationRequest.UserAgent)
|
2021-03-23 04:27:58 +01:00
|
|
|
request.WithCookie(feedCreationRequest.Cookie)
|
2021-02-21 22:42:49 +01:00
|
|
|
request.AllowSelfSignedCertificates = feedCreationRequest.AllowSelfSignedCertificates
|
2020-09-10 08:28:54 +02:00
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
if feedCreationRequest.FetchViaProxy {
|
2020-09-10 08:28:54 +02:00
|
|
|
request.WithProxy()
|
|
|
|
}
|
|
|
|
|
2018-10-15 06:43:48 +02:00
|
|
|
response, requestErr := browser.Exec(request)
|
|
|
|
if requestErr != nil {
|
|
|
|
return nil, requestErr
|
2018-01-05 03:32:36 +01:00
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
if store.FeedURLExists(userID, response.EffectiveURL) {
|
2017-11-20 06:10:04 +01:00
|
|
|
return nil, errors.NewLocalizedError(errDuplicate, response.EffectiveURL)
|
|
|
|
}
|
|
|
|
|
2020-12-03 05:47:11 +01:00
|
|
|
subscription, parseErr := parser.ParseFeed(response.EffectiveURL, response.BodyAsString())
|
2018-10-15 06:43:48 +02:00
|
|
|
if parseErr != nil {
|
|
|
|
return nil, parseErr
|
2017-11-21 02:12:37 +01:00
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
subscription.UserID = userID
|
|
|
|
subscription.UserAgent = feedCreationRequest.UserAgent
|
2021-03-23 04:27:58 +01:00
|
|
|
subscription.Cookie = feedCreationRequest.Cookie
|
2021-01-04 22:49:28 +01:00
|
|
|
subscription.Username = feedCreationRequest.Username
|
|
|
|
subscription.Password = feedCreationRequest.Password
|
|
|
|
subscription.Crawler = feedCreationRequest.Crawler
|
|
|
|
subscription.Disabled = feedCreationRequest.Disabled
|
|
|
|
subscription.IgnoreHTTPCache = feedCreationRequest.IgnoreHTTPCache
|
2021-02-21 22:42:49 +01:00
|
|
|
subscription.AllowSelfSignedCertificates = feedCreationRequest.AllowSelfSignedCertificates
|
2021-01-04 22:49:28 +01:00
|
|
|
subscription.FetchViaProxy = feedCreationRequest.FetchViaProxy
|
|
|
|
subscription.ScraperRules = feedCreationRequest.ScraperRules
|
|
|
|
subscription.RewriteRules = feedCreationRequest.RewriteRules
|
|
|
|
subscription.BlocklistRules = feedCreationRequest.BlocklistRules
|
|
|
|
subscription.KeeplistRules = feedCreationRequest.KeeplistRules
|
2022-07-12 06:12:26 +02:00
|
|
|
subscription.UrlRewriteRules = feedCreationRequest.UrlRewriteRules
|
2021-01-04 22:49:28 +01:00
|
|
|
subscription.WithCategoryID(feedCreationRequest.CategoryID)
|
2018-10-15 06:43:48 +02:00
|
|
|
subscription.WithClientResponse(response)
|
|
|
|
subscription.CheckedNow()
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2021-08-30 16:53:05 +02:00
|
|
|
processor.ProcessFeedEntries(store, subscription, user)
|
2017-12-12 07:16:32 +01:00
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
if storeErr := store.CreateFeed(subscription); storeErr != nil {
|
2018-10-15 06:43:48 +02:00
|
|
|
return nil, storeErr
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
logger.Debug("[CreateFeed] Feed saved with ID: %d", subscription.ID)
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2021-02-21 22:42:49 +01:00
|
|
|
checkFeedIcon(
|
|
|
|
store,
|
|
|
|
subscription.ID,
|
|
|
|
subscription.SiteURL,
|
2022-01-09 00:09:12 +01:00
|
|
|
feedCreationRequest.UserAgent,
|
2021-02-21 22:42:49 +01:00
|
|
|
feedCreationRequest.FetchViaProxy,
|
|
|
|
feedCreationRequest.AllowSelfSignedCertificates,
|
|
|
|
)
|
2017-11-20 06:10:04 +01:00
|
|
|
return subscription, nil
|
|
|
|
}
|
|
|
|
|
2020-09-28 01:01:06 +02:00
|
|
|
// RefreshFeed refreshes a feed.
|
2021-01-03 01:33:41 +01:00
|
|
|
func RefreshFeed(store *storage.Storage, userID, feedID int64) error {
|
|
|
|
defer timer.ExecutionTime(time.Now(), fmt.Sprintf("[RefreshFeed] feedID=%d", feedID))
|
2021-08-30 16:53:05 +02:00
|
|
|
user, storeErr := store.UserByID(userID)
|
|
|
|
if storeErr != nil {
|
|
|
|
return storeErr
|
|
|
|
}
|
|
|
|
|
|
|
|
printer := locale.NewPrinter(user.Language)
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
originalFeed, storeErr := store.FeedByID(userID, feedID)
|
2018-10-15 06:43:48 +02:00
|
|
|
if storeErr != nil {
|
|
|
|
return storeErr
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if originalFeed == nil {
|
|
|
|
return errors.NewLocalizedError(errNotFound, feedID)
|
|
|
|
}
|
|
|
|
|
2020-05-25 23:59:15 +02:00
|
|
|
weeklyEntryCount := 0
|
|
|
|
if config.Opts.PollingScheduler() == model.SchedulerEntryFrequency {
|
|
|
|
var weeklyCountErr error
|
2021-01-03 01:33:41 +01:00
|
|
|
weeklyEntryCount, weeklyCountErr = store.WeeklyFeedEntryCount(userID, feedID)
|
2020-05-25 23:59:15 +02:00
|
|
|
if weeklyCountErr != nil {
|
|
|
|
return weeklyCountErr
|
|
|
|
}
|
2020-05-25 23:06:56 +02:00
|
|
|
}
|
|
|
|
|
2018-10-15 06:43:48 +02:00
|
|
|
originalFeed.CheckedNow()
|
2020-05-25 23:59:15 +02:00
|
|
|
originalFeed.ScheduleNextCheck(weeklyEntryCount)
|
2018-02-09 03:16:54 +01:00
|
|
|
|
2020-09-27 23:29:48 +02:00
|
|
|
request := client.NewClientWithConfig(originalFeed.FeedURL, config.Opts)
|
2018-10-15 06:43:48 +02:00
|
|
|
request.WithCredentials(originalFeed.Username, originalFeed.Password)
|
|
|
|
request.WithUserAgent(originalFeed.UserAgent)
|
2021-03-23 04:27:58 +01:00
|
|
|
request.WithCookie(originalFeed.Cookie)
|
2021-02-21 22:42:49 +01:00
|
|
|
request.AllowSelfSignedCertificates = originalFeed.AllowSelfSignedCertificates
|
2020-06-06 06:50:59 +02:00
|
|
|
|
|
|
|
if !originalFeed.IgnoreHTTPCache {
|
|
|
|
request.WithCacheHeaders(originalFeed.EtagHeader, originalFeed.LastModifiedHeader)
|
|
|
|
}
|
|
|
|
|
2020-09-10 08:28:54 +02:00
|
|
|
if originalFeed.FetchViaProxy {
|
|
|
|
request.WithProxy()
|
|
|
|
}
|
|
|
|
|
2018-10-15 06:43:48 +02:00
|
|
|
response, requestErr := browser.Exec(request)
|
|
|
|
if requestErr != nil {
|
|
|
|
originalFeed.WithError(requestErr.Localize(printer))
|
2021-01-03 01:33:41 +01:00
|
|
|
store.UpdateFeedError(originalFeed)
|
2018-10-15 06:43:48 +02:00
|
|
|
return requestErr
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
if store.AnotherFeedURLExists(userID, originalFeed.ID, response.EffectiveURL) {
|
2020-09-21 08:29:51 +02:00
|
|
|
storeErr := errors.NewLocalizedError(errDuplicate, response.EffectiveURL)
|
|
|
|
originalFeed.WithError(storeErr.Error())
|
2021-01-03 01:33:41 +01:00
|
|
|
store.UpdateFeedError(originalFeed)
|
2020-09-21 08:29:51 +02:00
|
|
|
return storeErr
|
|
|
|
}
|
|
|
|
|
2020-06-06 06:50:59 +02:00
|
|
|
if originalFeed.IgnoreHTTPCache || response.IsModified(originalFeed.EtagHeader, originalFeed.LastModifiedHeader) {
|
2021-01-03 01:33:41 +01:00
|
|
|
logger.Debug("[RefreshFeed] Feed #%d has been modified", feedID)
|
2018-01-05 03:32:36 +01:00
|
|
|
|
2020-12-03 05:47:11 +01:00
|
|
|
updatedFeed, parseErr := parser.ParseFeed(response.EffectiveURL, response.BodyAsString())
|
2018-02-28 06:08:32 +01:00
|
|
|
if parseErr != nil {
|
2018-10-15 06:43:48 +02:00
|
|
|
originalFeed.WithError(parseErr.Localize(printer))
|
2021-01-03 01:33:41 +01:00
|
|
|
store.UpdateFeedError(originalFeed)
|
2018-10-15 06:43:48 +02:00
|
|
|
return parseErr
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2018-10-15 07:33:19 +02:00
|
|
|
originalFeed.Entries = updatedFeed.Entries
|
2021-08-30 16:53:05 +02:00
|
|
|
processor.ProcessFeedEntries(store, originalFeed, user)
|
2017-12-12 07:16:32 +01:00
|
|
|
|
2018-10-15 07:33:19 +02:00
|
|
|
// We don't update existing entries when the crawler is enabled (we crawl only inexisting entries).
|
2021-01-03 01:33:41 +01:00
|
|
|
if storeErr := store.RefreshFeedEntries(originalFeed.UserID, originalFeed.ID, originalFeed.Entries, !originalFeed.Crawler); storeErr != nil {
|
2018-10-21 20:44:29 +02:00
|
|
|
originalFeed.WithError(storeErr.Error())
|
2021-01-03 01:33:41 +01:00
|
|
|
store.UpdateFeedError(originalFeed)
|
2018-10-15 06:43:48 +02:00
|
|
|
return storeErr
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2018-10-15 06:43:48 +02:00
|
|
|
// We update caching headers only if the feed has been modified,
|
|
|
|
// because some websites don't return the same headers when replying with a 304.
|
|
|
|
originalFeed.WithClientResponse(response)
|
2021-02-21 22:42:49 +01:00
|
|
|
checkFeedIcon(
|
|
|
|
store,
|
|
|
|
originalFeed.ID,
|
|
|
|
originalFeed.SiteURL,
|
2022-01-09 00:09:12 +01:00
|
|
|
originalFeed.UserAgent,
|
2021-02-21 22:42:49 +01:00
|
|
|
originalFeed.FetchViaProxy,
|
|
|
|
originalFeed.AllowSelfSignedCertificates,
|
|
|
|
)
|
2017-11-20 06:10:04 +01:00
|
|
|
} else {
|
2021-01-03 01:33:41 +01:00
|
|
|
logger.Debug("[RefreshFeed] Feed #%d not modified", feedID)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2018-10-15 06:43:48 +02:00
|
|
|
originalFeed.ResetErrorCounter()
|
2018-12-15 22:04:38 +01:00
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
if storeErr := store.UpdateFeed(originalFeed); storeErr != nil {
|
2018-12-15 22:04:38 +01:00
|
|
|
originalFeed.WithError(storeErr.Error())
|
2021-01-03 01:33:41 +01:00
|
|
|
store.UpdateFeedError(originalFeed)
|
2018-12-15 22:04:38 +01:00
|
|
|
return storeErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2022-01-09 00:09:12 +01:00
|
|
|
func checkFeedIcon(store *storage.Storage, feedID int64, websiteURL, userAgent string, fetchViaProxy, allowSelfSignedCertificates bool) {
|
2018-10-15 06:43:48 +02:00
|
|
|
if !store.HasIcon(feedID) {
|
2022-01-09 00:09:12 +01:00
|
|
|
icon, err := icon.FindIcon(websiteURL, userAgent, fetchViaProxy, allowSelfSignedCertificates)
|
2018-10-15 06:43:48 +02:00
|
|
|
if err != nil {
|
2021-01-03 01:33:41 +01:00
|
|
|
logger.Debug(`[CheckFeedIcon] %v (feedID=%d websiteURL=%s)`, err, feedID, websiteURL)
|
2018-10-15 06:43:48 +02:00
|
|
|
} else if icon == nil {
|
2021-01-03 01:33:41 +01:00
|
|
|
logger.Debug(`[CheckFeedIcon] No icon found (feedID=%d websiteURL=%s)`, feedID, websiteURL)
|
2018-10-15 06:43:48 +02:00
|
|
|
} else {
|
|
|
|
if err := store.CreateFeedIcon(feedID, icon); err != nil {
|
2021-01-03 01:33:41 +01:00
|
|
|
logger.Debug(`[CheckFeedIcon] %v (feedID=%d websiteURL=%s)`, err, feedID, websiteURL)
|
2018-10-15 06:43:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-29 20:17:14 +01:00
|
|
|
}
|