Skip to content

Commit

Permalink
Merge pull request #1916 from chirino/simplifiy-web-login
Browse files Browse the repository at this point in the history
frontend: Redirect to the authorization server from the apiserver
  • Loading branch information
mergify[bot] authored Feb 16, 2024
2 parents 9246963 + 507b70f commit 19c7b64
Show file tree
Hide file tree
Showing 35 changed files with 650 additions and 1,082 deletions.
20 changes: 7 additions & 13 deletions cmd/apiserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,6 @@ func main() {
Usage: "OTLP endpoint for trace data",
Sources: cli.EnvVars("NEXAPI_TRACE_ENDPOINT_OTLP"),
},

&cli.StringFlag{
Name: "redirect-url",
Usage: "Redirect URL. This is the URL of the SPA.",
Value: "https://example.com",
Sources: cli.EnvVars("NEXAPI_REDIRECT_URL"),
},
&cli.StringSliceFlag{
Name: "scopes",
Usage: "Additional OAUTH2 scopes",
Expand Down Expand Up @@ -344,6 +337,12 @@ func main() {
log.Fatal(err)
}

api.URL = command.String("url")
api.URLParsed, err = url.Parse(api.URL)
if err != nil {
log.Fatal(fmt.Errorf("invalid url: %w", err))
}

smtpServer := email.SmtpServer{
HostPort: command.String("smtp-host-port"),
User: command.String("smtp-user"),
Expand All @@ -368,7 +367,7 @@ func main() {
command.Bool("insecure-tls"),
command.String("oidc-client-id-web"),
command.String("oidc-client-secret-web"),
command.String("redirect-url"),
fmt.Sprintf("%s/web/login/end", api.URL),
scopes,
command.String("domain"),
command.StringSlice("origins"),
Expand Down Expand Up @@ -403,11 +402,6 @@ func main() {
if err != nil {
log.Fatal(fmt.Errorf("invalid tls-key: %w", err))
}
api.URL = command.String("url")
api.URLParsed, err = url.Parse(api.URL)
if err != nil {
log.Fatal(fmt.Errorf("invalid url: %w", err))
}

router, err := routers.NewAPIRouter(ctx, routers.APIRouterOptions{
Logger: logger.Sugar(),
Expand Down
5 changes: 0 additions & 5 deletions deploy/nexodus/base/apiserver/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,6 @@ spec:
configMapKeyRef:
name: apiserver
key: NEXAPI_FFLAG_SECURITY_GROUPS
- name: NEXAPI_REDIRECT_URL
valueFrom:
configMapKeyRef:
name: apiserver
key: NEXAPI_REDIRECT_URL
- name: NEXAPI_ORIGINS
valueFrom:
configMapKeyRef:
Expand Down
1 change: 0 additions & 1 deletion deploy/nexodus/base/apiserver/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ configMapGenerator:
- NEXAPI_DB_SSLMODE=require
- NEXAPI_DOMAIN=api.try.nexodus.127.0.0.1.nip.io
- NEXAPI_URL=https://api.try.nexodus.127.0.0.1.nip.io
- NEXAPI_REDIRECT_URL=https://try.nexodus.127.0.0.1.nip.io/#/login
- NEXAPI_ORIGINS=https://try.nexodus.127.0.0.1.nip.io
- NEXAPI_SCOPES=read:organizations,write:organizations,read:users,write:users,read:devices,write:devices
- NEXAPI_REDIS_SERVER=redis:6379
Expand Down
5 changes: 5 additions & 0 deletions deploy/nexodus/base/auth/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ spec:
configMapKeyRef:
name: auth-config
key: frontend-url
- name: REDIRECT_URL
valueFrom:
configMapKeyRef:
name: auth-config
key: redirect-url
- name: GOOGLE_CLIENT_ID
valueFrom:
secretKeyRef:
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/base/auth/files/nexodus.json
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@
"clientAuthenticatorType": "client-secret",
"secret": "${WEB_CLIENT_SECRET}",
"redirectUris": [
"${FRONTEND_URL}/*"
"${REDIRECT_URL}/*"
],
"webOrigins": [
"+"
Expand Down
1 change: 1 addition & 0 deletions deploy/nexodus/base/auth/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ configMapGenerator:
- literals:
- hostname=auth.try.nexodus.127.0.0.1.nip.io
- frontend-url=https://try.nexodus.127.0.0.1.nip.io
- redirect-url=https://api.try.nexodus.127.0.0.1.nip.io/web
name: auth-config
- files:
- files/nexodus.json
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/overlays/playground/files/nexodus.json
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@
"clientAuthenticatorType": "client-secret",
"secret": "${WEB_CLIENT_SECRET}",
"redirectUris": [
"${FRONTEND_URL}/*"
"${REDIRECT_URL}/*"
],
"webOrigins": [
"+"
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/overlays/playground/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ configMapGenerator:
literals:
- hostname=auth.playground.nexodus.io
- frontend-url=https://playground.nexodus.io
- redirect-url=https://api.playground.nexodus.io/web
- behavior: replace
name: realm
files:
Expand All @@ -30,7 +31,6 @@ configMapGenerator:
- NEXAPI_URL=https://api.playground.nexodus.io
- NEXAPI_OIDC_URL=https://auth.playground.nexodus.io/realms/nexodus
- NEXAPI_DOMAIN=api.playground.nexodus.io
- NEXAPI_REDIRECT_URL=https://playground.nexodus.io/#/login
- NEXAPI_ORIGINS=https://playground.nexodus.io
- NEXAPI_ENVIRONMENT=qa
- NEXAPI_FFLAG_DEVICES=false
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/overlays/prod/files/nexodus.json
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@
"clientAuthenticatorType": "client-secret",
"secret": "${WEB_CLIENT_SECRET}",
"redirectUris": [
"${FRONTEND_URL}/*"
"${REDIRECT_URL}/*"
],
"webOrigins": [
"+"
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/overlays/prod/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ configMapGenerator:
literals:
- hostname=auth.try.nexodus.io
- frontend-url=https://try.nexodus.io
- redirect-url=https://api.try.nexodus.io/web
name: auth-config
- behavior: replace
files:
Expand All @@ -29,7 +30,6 @@ configMapGenerator:
- NEXAPI_URL=https://api.try.nexodus.io
- NEXAPI_OIDC_URL=https://auth.try.nexodus.io/realms/nexodus
- NEXAPI_DOMAIN=api.try.nexodus.io
- NEXAPI_REDIRECT_URL=https://try.nexodus.io/#/login
- NEXAPI_ORIGINS=https://try.nexodus.io
- NEXAPI_ENVIRONMENT=production
- NEXAPI_FFLAG_SITES=false
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/overlays/qa/files/nexodus.json
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@
"clientAuthenticatorType": "client-secret",
"secret": "${WEB_CLIENT_SECRET}",
"redirectUris": [
"${FRONTEND_URL}/*"
"${REDIRECT_URL}/*"
],
"webOrigins": [
"+"
Expand Down
2 changes: 1 addition & 1 deletion deploy/nexodus/overlays/qa/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ configMapGenerator:
literals:
- hostname=auth.qa.nexodus.io
- frontend-url=https://qa.nexodus.io
- redirect-url=https://api.qa.nexodus.io/web
name: auth-config
- behavior: merge
literals:
Expand All @@ -29,7 +30,6 @@ configMapGenerator:
- NEXAPI_URL=https://api.qa.nexodus.io
- NEXAPI_OIDC_URL=https://auth.qa.nexodus.io/realms/nexodus
- NEXAPI_DOMAIN=api.qa.nexodus.io
- NEXAPI_REDIRECT_URL=https://qa.nexodus.io/#/login
- NEXAPI_ORIGINS=https://qa.nexodus.io
- NEXAPI_ENVIRONMENT=qa
- NEXAPI_DEBUG=0
Expand Down
6 changes: 0 additions & 6 deletions internal/api/public/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,8 @@ model_models_endpoint.go
model_models_internal_server_error.go
model_models_invitation.go
model_models_key_usage.go
model_models_login_end_request.go
model_models_login_end_response.go
model_models_login_start_response.go
model_models_logout_response.go
model_models_not_allowed_error.go
model_models_organization.go
model_models_refresh_token_request.go
model_models_refresh_token_response.go
model_models_reg_key.go
model_models_security_group.go
model_models_security_rule.go
Expand Down
Loading

0 comments on commit 19c7b64

Please sign in to comment.