2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package handler // import "miniflux.app/v2/internal/reader/handler"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
2023-09-25 01:32:09 +02:00
|
|
|
"log/slog"
|
2017-11-21 02:12:37 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
|
|
|
"miniflux.app/v2/internal/errors"
|
|
|
|
"miniflux.app/v2/internal/http/client"
|
2023-09-09 07:45:17 +02:00
|
|
|
"miniflux.app/v2/internal/integration"
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/locale"
|
|
|
|
"miniflux.app/v2/internal/model"
|
|
|
|
"miniflux.app/v2/internal/reader/browser"
|
|
|
|
"miniflux.app/v2/internal/reader/icon"
|
|
|
|
"miniflux.app/v2/internal/reader/parser"
|
|
|
|
"miniflux.app/v2/internal/reader/processor"
|
|
|
|
"miniflux.app/v2/internal/storage"
|
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) {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Debug("Begin feed creation process",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.String("feed_url", 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
|
|
|
|
2023-08-08 16:12:41 +02:00
|
|
|
processor.ProcessFeedEntries(store, subscription, user, true)
|
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
|
|
|
}
|
|
|
|
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Debug("Created feed",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.Int64("feed_id", subscription.ID),
|
|
|
|
slog.String("feed_url", subscription.FeedURL),
|
|
|
|
)
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2021-02-21 22:42:49 +01:00
|
|
|
checkFeedIcon(
|
|
|
|
store,
|
|
|
|
subscription.ID,
|
|
|
|
subscription.SiteURL,
|
2023-06-05 00:01:59 +02:00
|
|
|
subscription.IconURL,
|
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.
|
2023-08-08 16:12:41 +02:00
|
|
|
func RefreshFeed(store *storage.Storage, userID, feedID int64, forceRefresh bool) error {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Debug("Begin feed refresh process",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.Int64("feed_id", feedID),
|
|
|
|
slog.Bool("force_refresh", forceRefresh),
|
|
|
|
)
|
|
|
|
|
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) {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Debug("Feed modified",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.Int64("feed_id", 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
|
2023-08-08 16:12:41 +02:00
|
|
|
processor.ProcessFeedEntries(store, originalFeed, user, forceRefresh)
|
2017-12-12 07:16:32 +01:00
|
|
|
|
2023-08-08 16:12:41 +02:00
|
|
|
// We don't update existing entries when the crawler is enabled (we crawl only inexisting entries). Unless it is forced to refresh
|
|
|
|
updateExistingEntries := forceRefresh || !originalFeed.Crawler
|
2023-09-09 07:45:17 +02:00
|
|
|
newEntries, storeErr := store.RefreshFeedEntries(originalFeed.UserID, originalFeed.ID, originalFeed.Entries, updateExistingEntries)
|
|
|
|
if 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
|
|
|
}
|
|
|
|
|
2023-09-09 07:45:17 +02:00
|
|
|
userIntegrations, intErr := store.Integration(userID)
|
|
|
|
if intErr != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Error("Fetching integrations failed; the refresh process will go on, but no integrations will run this time",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.Int64("feed_id", feedID),
|
|
|
|
slog.Any("error", intErr),
|
|
|
|
)
|
2023-09-09 07:45:17 +02:00
|
|
|
} else if userIntegrations != nil && len(newEntries) > 0 {
|
|
|
|
go integration.PushEntries(originalFeed, newEntries, userIntegrations)
|
|
|
|
}
|
|
|
|
|
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)
|
2023-09-09 07:45:17 +02:00
|
|
|
|
2021-02-21 22:42:49 +01:00
|
|
|
checkFeedIcon(
|
|
|
|
store,
|
|
|
|
originalFeed.ID,
|
|
|
|
originalFeed.SiteURL,
|
2023-06-05 00:01:59 +02:00
|
|
|
updatedFeed.IconURL,
|
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 {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Debug("Feed not modified",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.Int64("feed_id", 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
|
|
|
}
|
|
|
|
|
2023-09-09 23:18:39 +02:00
|
|
|
func checkFeedIcon(store *storage.Storage, feedID int64, websiteURL, feedIconURL, userAgent string, fetchViaProxy, allowSelfSignedCertificates bool) {
|
2018-10-15 06:43:48 +02:00
|
|
|
if !store.HasIcon(feedID) {
|
2023-10-19 06:42:34 +02:00
|
|
|
iconFinder := icon.NewIconFinder(websiteURL, feedIconURL, userAgent, fetchViaProxy, allowSelfSignedCertificates)
|
|
|
|
if icon, err := iconFinder.FindIcon(); err != nil {
|
2023-10-20 05:04:26 +02:00
|
|
|
slog.Debug("Unable to find feed icon",
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Int64("feed_id", feedID),
|
|
|
|
slog.String("website_url", websiteURL),
|
|
|
|
slog.String("feed_icon_url", feedIconURL),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
2018-10-15 06:43:48 +02:00
|
|
|
} else if icon == nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Debug("No icon found",
|
|
|
|
slog.Int64("feed_id", feedID),
|
|
|
|
slog.String("website_url", websiteURL),
|
|
|
|
slog.String("feed_icon_url", feedIconURL),
|
|
|
|
)
|
2018-10-15 06:43:48 +02:00
|
|
|
} else {
|
|
|
|
if err := store.CreateFeedIcon(feedID, icon); err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Error("Unable to store feed icon",
|
|
|
|
slog.Int64("feed_id", feedID),
|
|
|
|
slog.String("website_url", websiteURL),
|
|
|
|
slog.String("feed_icon_url", feedIconURL),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
2018-10-15 06:43:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-29 20:17:14 +01:00
|
|
|
}
|