2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-29 16:35:04 -07:00
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-04-29 16:35:04 -07:00
|
|
|
|
|
|
|
import (
|
2023-09-24 16:32:09 -07:00
|
|
|
"log/slog"
|
2018-04-29 16:35:04 -07:00
|
|
|
"net/http"
|
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
2023-09-02 21:35:10 -07:00
|
|
|
"miniflux.app/v2/internal/oauth2"
|
2023-08-10 19:46:45 -07:00
|
|
|
"miniflux.app/v2/internal/ui/session"
|
2018-04-29 16:35:04 -07:00
|
|
|
)
|
|
|
|
|
2018-11-11 11:28:29 -08:00
|
|
|
func (h *handler) oauth2Redirect(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
2018-04-29 16:35:04 -07:00
|
|
|
|
2018-09-23 21:02:26 -07:00
|
|
|
provider := request.RouteStringParam(r, "provider")
|
2018-04-29 16:35:04 -07:00
|
|
|
if provider == "" {
|
2023-09-24 16:32:09 -07:00
|
|
|
slog.Warn("Invalid or missing OAuth2 provider")
|
2018-11-11 11:28:29 -08:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "login"))
|
2018-04-29 16:35:04 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-21 21:14:10 -08:00
|
|
|
authProvider, err := getOAuth2Manager(r.Context()).FindProvider(provider)
|
2018-04-29 16:35:04 -07:00
|
|
|
if err != nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
slog.Error("Unable to initialize OAuth2 provider",
|
|
|
|
slog.String("provider", provider),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
2018-11-11 11:28:29 -08:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "login"))
|
2018-04-29 16:35:04 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-02 21:35:10 -07:00
|
|
|
auth := oauth2.GenerateAuthorization(authProvider.GetConfig())
|
|
|
|
|
|
|
|
sess.SetOAuth2State(auth.State())
|
|
|
|
sess.SetOAuth2CodeVerifier(auth.CodeVerifier())
|
|
|
|
|
|
|
|
html.Redirect(w, r, auth.RedirectURL())
|
2018-04-29 16:35:04 -07:00
|
|
|
}
|