2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-05-21 00:29:14 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-05-21 00:29:14 +02:00
|
|
|
|
|
|
|
import (
|
2023-09-25 01:32:09 +02:00
|
|
|
"log/slog"
|
2018-05-21 00:29:14 +02:00
|
|
|
"net/http"
|
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
|
|
|
"miniflux.app/v2/internal/integration/pocket"
|
|
|
|
"miniflux.app/v2/internal/locale"
|
|
|
|
"miniflux.app/v2/internal/ui/session"
|
2018-05-21 00:29:14 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) pocketAuthorize(w http.ResponseWriter, r *http.Request) {
|
2018-09-23 00:04:55 +02:00
|
|
|
printer := locale.NewPrinter(request.UserLanguage(r))
|
2018-11-11 20:28:29 +01:00
|
|
|
user, err := h.store.UserByID(request.UserID(r))
|
2018-05-21 00:29:14 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
integration, err := h.store.Integration(user.ID)
|
2018-05-21 00:29:14 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
2019-06-02 03:18:09 +02:00
|
|
|
connector := pocket.NewConnector(config.Opts.PocketConsumerKey(integration.PocketConsumerKey))
|
2023-08-24 03:20:54 +02:00
|
|
|
redirectURL := config.Opts.RootURL() + route.Path(h.router, "pocketCallback")
|
2018-05-21 00:29:14 +02:00
|
|
|
requestToken, err := connector.RequestToken(redirectURL)
|
|
|
|
if err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Warn("Pocket authorization request failed",
|
|
|
|
slog.Any("user_id", user.ID),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
2024-02-27 17:19:38 +01:00
|
|
|
sess.NewFlashErrorMessage(printer.Print("error.pocket_request_token"))
|
2018-11-11 20:28:29 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "integrations"))
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sess.SetPocketRequestToken(requestToken)
|
2018-10-08 03:42:43 +02:00
|
|
|
html.Redirect(w, r, connector.AuthorizationURL(requestToken, redirectURL))
|
2018-05-21 00:29:14 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) pocketCallback(w http.ResponseWriter, r *http.Request) {
|
2018-09-23 00:04:55 +02:00
|
|
|
printer := locale.NewPrinter(request.UserLanguage(r))
|
2018-11-11 20:28:29 +01:00
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
2018-05-21 00:29:14 +02:00
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
user, err := h.store.UserByID(request.UserID(r))
|
2018-05-21 00:29:14 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
integration, err := h.store.Integration(user.ID)
|
2018-05-21 00:29:14 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-02 03:18:09 +02:00
|
|
|
connector := pocket.NewConnector(config.Opts.PocketConsumerKey(integration.PocketConsumerKey))
|
2018-09-03 23:26:40 +02:00
|
|
|
accessToken, err := connector.AccessToken(request.PocketRequestToken(r))
|
2018-05-21 00:29:14 +02:00
|
|
|
if err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Warn("Unable to get Pocket access token",
|
|
|
|
slog.Any("user_id", user.ID),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
2024-02-27 17:19:38 +01:00
|
|
|
sess.NewFlashErrorMessage(printer.Print("error.pocket_access_token"))
|
2018-11-11 20:28:29 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "integrations"))
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sess.SetPocketRequestToken("")
|
|
|
|
integration.PocketAccessToken = accessToken
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
err = h.store.UpdateIntegration(integration)
|
2018-05-21 00:29:14 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-05-21 00:29:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-27 17:19:38 +01:00
|
|
|
sess.NewFlashMessage(printer.Print("alert.pocket_linked"))
|
2018-11-11 20:28:29 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "integrations"))
|
2018-05-21 00:29:14 +02:00
|
|
|
}
|