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-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
|
|
|
"miniflux.app/v2/internal/http/client"
|
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
|
|
|
"miniflux.app/v2/internal/reader/opml"
|
|
|
|
"miniflux.app/v2/internal/ui/session"
|
|
|
|
"miniflux.app/v2/internal/ui/view"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) uploadOPML(w http.ResponseWriter, r *http.Request) {
|
2023-09-25 01:32:09 +02:00
|
|
|
loggedUserID := request.UserID(r)
|
|
|
|
user, err := h.store.UserByID(loggedUserID)
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
file, fileHeader, err := r.FormFile("file")
|
|
|
|
if err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Error("OPML file upload error",
|
|
|
|
slog.Int64("user_id", loggedUserID),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "import"))
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Info("OPML file uploaded",
|
|
|
|
slog.Int64("user_id", loggedUserID),
|
|
|
|
slog.String("file_name", fileHeader.Filename),
|
|
|
|
slog.Int64("file_size", fileHeader.Size),
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
|
|
view := view.New(h.tpl, r, sess)
|
2018-04-30 01:35:04 +02:00
|
|
|
view.Set("menu", "feeds")
|
|
|
|
view.Set("user", user)
|
2018-11-11 20:28:29 +01:00
|
|
|
view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
2020-09-28 01:01:06 +02:00
|
|
|
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
if fileHeader.Size == 0 {
|
2018-09-22 03:53:29 +02:00
|
|
|
view.Set("errorMessage", "error.empty_file")
|
2018-07-07 05:39:28 +02:00
|
|
|
html.OK(w, r, view.Render("import"))
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
if impErr := opml.NewHandler(h.store).Import(user.ID, file); impErr != nil {
|
2018-04-30 01:35:04 +02:00
|
|
|
view.Set("errorMessage", impErr)
|
2018-07-07 05:39:28 +02:00
|
|
|
html.OK(w, r, view.Render("import"))
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "feeds"))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|
2019-08-15 09:48:07 +02:00
|
|
|
|
|
|
|
func (h *handler) fetchOPML(w http.ResponseWriter, r *http.Request) {
|
2023-09-25 01:32:09 +02:00
|
|
|
loggedUserID := request.UserID(r)
|
|
|
|
user, err := h.store.UserByID(loggedUserID)
|
2019-08-15 09:48:07 +02:00
|
|
|
if err != nil {
|
|
|
|
html.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
url := r.FormValue("url")
|
|
|
|
if url == "" {
|
|
|
|
html.Redirect(w, r, route.Path(h.router, "import"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Info("Fetching OPML file remotely",
|
|
|
|
slog.Int64("user_id", loggedUserID),
|
|
|
|
slog.String("opml_file_url", url),
|
2019-08-15 09:48:07 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
|
|
view := view.New(h.tpl, r, sess)
|
|
|
|
view.Set("menu", "feeds")
|
|
|
|
view.Set("user", user)
|
|
|
|
view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
2020-09-28 01:01:06 +02:00
|
|
|
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
2019-08-15 09:48:07 +02:00
|
|
|
|
2020-09-27 23:29:48 +02:00
|
|
|
clt := client.NewClientWithConfig(url, config.Opts)
|
2019-08-15 09:48:07 +02:00
|
|
|
resp, err := clt.Get()
|
|
|
|
if err != nil {
|
|
|
|
view.Set("errorMessage", err)
|
|
|
|
html.OK(w, r, view.Render("import"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if impErr := opml.NewHandler(h.store).Import(user.ID, resp.Body); impErr != nil {
|
|
|
|
view.Set("errorMessage", impErr)
|
|
|
|
html.OK(w, r, view.Render("import"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
html.Redirect(w, r, route.Path(h.router, "feeds"))
|
|
|
|
}
|