mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 03:27:02 -07:00
Added access token fetching
This commit is contained in:
parent
7114073441
commit
3020a9068e
3 changed files with 63 additions and 25 deletions
|
|
@ -23,6 +23,7 @@ type Config struct {
|
|||
OIDCHost string `yaml:"oidc.host"`
|
||||
OIDCPort int `yaml:"oidc.port"`
|
||||
IdentitiesUrl string `yaml:"identities-url"`
|
||||
AccessTokenUrl string `yaml:"access-token-url"`
|
||||
}
|
||||
|
||||
func NewConfig() Config {
|
||||
|
|
@ -38,6 +39,7 @@ func NewConfig() Config {
|
|||
OIDCHost: "127.0.0.1",
|
||||
OIDCPort: 80,
|
||||
IdentitiesUrl: "",
|
||||
AccessTokenUrl: "",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
16
cmd/login.go
16
cmd/login.go
|
|
@ -15,6 +15,7 @@ import (
|
|||
|
||||
var (
|
||||
identitiesUrl = ""
|
||||
accessTokenUrl = ""
|
||||
)
|
||||
|
||||
var loginCmd = &cobra.Command{
|
||||
|
|
@ -29,6 +30,12 @@ var loginCmd = &cobra.Command{
|
|||
oidcProvider := oidc.NewOIDCProvider()
|
||||
oidcProvider.Host = config.OIDCHost
|
||||
oidcProvider.Port = config.OIDCPort
|
||||
|
||||
// check if the client ID is set
|
||||
if config.ClientId == "" {
|
||||
fmt.Printf("client ID must be set\n")
|
||||
os.Exit(1)
|
||||
}
|
||||
var authorizationUrl = util.BuildAuthorizationUrl(
|
||||
oidcProvider.GetAuthorizeUrl(),
|
||||
config.ClientId,
|
||||
|
|
@ -39,10 +46,10 @@ var loginCmd = &cobra.Command{
|
|||
)
|
||||
|
||||
// print the authorization URL for the user to log in
|
||||
fmt.Printf("Login with identity provider: %s\n", authorizationUrl)
|
||||
fmt.Printf("login with identity provider: %s\n", authorizationUrl)
|
||||
|
||||
// authorize oauth client and listen for callback from provider
|
||||
fmt.Printf("Waiting for response from OIDC provider...\n")
|
||||
fmt.Printf("waiting for response from OIDC provider...\n")
|
||||
code, err := api.WaitForAuthorizationCode(config.Host, config.Port)
|
||||
if errors.Is(err, http.ErrServerClosed) {
|
||||
fmt.Printf("server closed\n")
|
||||
|
|
@ -67,12 +74,17 @@ var loginCmd = &cobra.Command{
|
|||
api.CreateIdentity(config.IdentitiesUrl, idToken)
|
||||
api.FetchIdentities(config.IdentitiesUrl)
|
||||
}
|
||||
|
||||
// use ID token/user info to get access token from Ory Hydra
|
||||
if config.AccessTokenUrl != "" {
|
||||
api.FetchAccessToken(config.AccessTokenUrl, config.ClientId, idToken)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
func init() {
|
||||
loginCmd.Flags().StringVar(&config.ClientId, "client.id", config.ClientId, "set the client ID")
|
||||
loginCmd.Flags().StringVar(&config.ClientSecret, "client.secret", config.ClientSecret, "set the client secret")
|
||||
loginCmd.Flags().StringSliceVar(&config.RedirectUri, "redirect-uri", config.RedirectUri, "set the redirect URI")
|
||||
loginCmd.Flags().StringVar(&config.ResponseType, "response-type", config.ResponseType, "set the response-type")
|
||||
loginCmd.Flags().StringSliceVar(&config.Scope, "scope", config.Scope, "set the scopes")
|
||||
|
|
|
|||
|
|
@ -53,6 +53,30 @@ func FetchToken(code string, remoteUrl string, clientId string, clientSecret str
|
|||
return token, nil
|
||||
}
|
||||
|
||||
func FetchAccessToken(remoteUrl string, clientId string, jwt string) (string, error) {
|
||||
var token string
|
||||
data := url.Values{
|
||||
"grant_type": {"client_credentials"},
|
||||
"client_id": {clientId},
|
||||
"client_assertion_type": {"urn:ietf:params:oauth:client-assertion-type:jwt-bearer"},
|
||||
"client_assertion": {jwt},
|
||||
}
|
||||
res, err := http.PostForm(remoteUrl, data)
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to get token: %s", err)
|
||||
}
|
||||
defer res.Body.Close()
|
||||
|
||||
b, err := io.ReadAll(res.Body)
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to read response body: %v", err)
|
||||
}
|
||||
token = string(b)
|
||||
|
||||
fmt.Printf("%v\n", token)
|
||||
return token, nil
|
||||
}
|
||||
|
||||
func CreateIdentity(remoteUrl string, idToken string) error {
|
||||
data := []byte(`{
|
||||
"schema_id": "preset://email",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue