52 lines
1.8 KiB
Go
Raw Normal View History

2019-02-18 16:57:54 +03:00
/*
2019-05-24 16:13:15 +03:00
Copyright (c) JSC iCore.
2019-02-18 16:57:54 +03:00
2019-05-24 16:13:15 +03:00
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
2019-02-18 16:57:54 +03:00
*/
package hydra
import (
"github.com/pkg/errors"
)
// LoginReqDoer fetches information on the OAuth2 request and then accept or reject the requested authentication process.
type LoginReqDoer struct {
2021-05-13 15:40:27 +10:00
hydraURL string
2021-08-06 22:30:48 +10:00
fakeTLSTermination bool
2021-05-13 15:40:27 +10:00
rememberFor int
2025-02-17 15:12:59 +01:00
acr string
amr []string
2019-02-18 16:57:54 +03:00
}
2019-05-15 15:03:05 +03:00
// NewLoginReqDoer creates a LoginRequest.
2025-02-17 15:12:59 +01:00
func NewLoginReqDoer(hydraURL string, fakeTLSTermination bool, rememberFor int, acr string, amr []string) *LoginReqDoer {
return &LoginReqDoer{hydraURL: hydraURL, fakeTLSTermination: fakeTLSTermination, rememberFor: rememberFor, acr: acr, amr: amr}
2019-02-18 16:57:54 +03:00
}
// InitiateRequest fetches information on the OAuth2 request.
2019-05-15 15:03:05 +03:00
func (lrd *LoginReqDoer) InitiateRequest(challenge string) (*ReqInfo, error) {
2021-08-06 22:30:48 +10:00
ri, err := initiateRequest(login, lrd.hydraURL, lrd.fakeTLSTermination, challenge)
2019-02-18 16:57:54 +03:00
return ri, errors.Wrap(err, "failed to initiate login request")
}
2019-05-15 15:03:05 +03:00
// AcceptLoginRequest accepts the requested authentication process, and returns redirect URI.
func (lrd *LoginReqDoer) AcceptLoginRequest(challenge string, remember bool, subject string) (string, error) {
2019-02-18 16:57:54 +03:00
data := struct {
2025-02-17 15:12:59 +01:00
Remember bool `json:"remember"`
RememberFor int `json:"remember_for"`
Subject string `json:"subject"`
ACR string `json:"acr,omitempty"`
AMR []string `json:"amr,omitempty"`
2019-02-18 16:57:54 +03:00
}{
Remember: remember,
2019-05-15 15:03:05 +03:00
RememberFor: lrd.rememberFor,
2019-02-18 16:57:54 +03:00
Subject: subject,
2025-02-17 15:12:59 +01:00
ACR: lrd.acr,
AMR: lrd.amr,
2019-02-18 16:57:54 +03:00
}
2021-08-06 22:30:48 +10:00
redirectURI, err := acceptRequest(login, lrd.hydraURL, lrd.fakeTLSTermination, challenge, data)
2019-02-18 16:57:54 +03:00
return redirectURI, errors.Wrap(err, "failed to accept login request")
}