2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
2023-09-25 01:32:09 +02:00
|
|
|
"log/slog"
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
2023-10-21 00:12:02 +02:00
|
|
|
"time"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2024-01-03 03:33:15 +01:00
|
|
|
"miniflux.app/v2/internal/config"
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
2023-10-21 00:12:02 +02:00
|
|
|
"miniflux.app/v2/internal/locale"
|
2023-08-11 04:46:45 +02:00
|
|
|
feedHandler "miniflux.app/v2/internal/reader/handler"
|
2023-10-19 04:57:02 +02:00
|
|
|
"miniflux.app/v2/internal/ui/session"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) refreshFeed(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 06:02:26 +02:00
|
|
|
feedID := request.RouteInt64Param(r, "feedID")
|
2023-08-08 16:12:41 +02:00
|
|
|
forceRefresh := request.QueryBoolParam(r, "forceRefresh", false)
|
2023-11-01 19:28:24 +01:00
|
|
|
if localizedError := feedHandler.RefreshFeed(h.store, request.UserID(r), feedID, forceRefresh); localizedError != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Warn("Unable to refresh feed",
|
|
|
|
slog.Int64("user_id", request.UserID(r)),
|
|
|
|
slog.Int64("feed_id", feedID),
|
|
|
|
slog.Bool("force_refresh", forceRefresh),
|
2023-11-01 19:28:24 +01:00
|
|
|
slog.Any("error", localizedError.Error()),
|
2023-09-25 01:32:09 +02:00
|
|
|
)
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "feedEntries", "feedID", feedID))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) refreshAllFeeds(w http.ResponseWriter, r *http.Request) {
|
2018-09-03 23:26:40 +02:00
|
|
|
userID := request.UserID(r)
|
2023-10-21 00:12:02 +02:00
|
|
|
printer := locale.NewPrinter(request.UserLanguage(r))
|
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
2023-10-19 04:57:02 +02:00
|
|
|
|
2023-10-21 00:12:02 +02:00
|
|
|
// Avoid accidental and excessive refreshes.
|
2024-01-03 03:33:15 +01:00
|
|
|
if time.Now().UTC().Unix()-request.LastForceRefresh(r) < int64(config.Opts.ForceRefreshInterval())*60 {
|
|
|
|
time := config.Opts.ForceRefreshInterval()
|
|
|
|
sess.NewFlashErrorMessage(printer.Plural("alert.too_many_feeds_refresh", time, time))
|
2023-10-21 00:12:02 +02:00
|
|
|
} else {
|
|
|
|
// We allow the end-user to force refresh all its feeds
|
|
|
|
// without taking into consideration the number of errors.
|
|
|
|
batchBuilder := h.store.NewBatchBuilder()
|
|
|
|
batchBuilder.WithoutDisabledFeeds()
|
|
|
|
batchBuilder.WithUserID(userID)
|
2023-10-19 04:57:02 +02:00
|
|
|
|
2023-10-21 00:12:02 +02:00
|
|
|
jobs, err := batchBuilder.FetchJobs()
|
|
|
|
if err != nil {
|
|
|
|
html.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-10-21 00:12:02 +02:00
|
|
|
slog.Info(
|
|
|
|
"Triggered a manual refresh of all feeds from the web ui",
|
|
|
|
slog.Int64("user_id", userID),
|
|
|
|
slog.Int("nb_jobs", len(jobs)),
|
|
|
|
)
|
2023-10-17 06:20:58 +02:00
|
|
|
|
2023-10-21 00:12:02 +02:00
|
|
|
go h.pool.Push(jobs)
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-10-21 00:12:02 +02:00
|
|
|
sess.SetLastForceRefresh()
|
2024-02-27 17:19:38 +01:00
|
|
|
sess.NewFlashMessage(printer.Print("alert.background_feed_refresh"))
|
2023-10-21 00:12:02 +02:00
|
|
|
}
|
2023-10-19 04:57:02 +02:00
|
|
|
|
2023-10-21 00:12:02 +02:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "feeds"))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|