summaryrefslogtreecommitdiff
path: root/internal/api/redirect.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/redirect.go')
-rw-r--r--internal/api/redirect.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/internal/api/redirect.go b/internal/api/redirect.go
deleted file mode 100644
index 417edf5..0000000
--- a/internal/api/redirect.go
+++ /dev/null
@@ -1,28 +0,0 @@
-package api
-
-// customRedirects supplies redirect values that should be handled by the app itself
-// here we hardcode the redirect values that we should use in the OAuth requests
-// these values were taken from https://codeberg.org/eduVPN/vpn-user-portal/src/branch/v3/src/OAuth/VpnClientDb.php
-var customRedirects = map[string]string{
- "org.letsconnect-vpn.app.macos": "org.letsconnect-vpn.app.macos:/api/callback",
- "org.letsconnect-vpn.app.ios": "org.letsconnect-vpn.app.ios:/api/callback",
- "org.letsconnect-vpn.app.android": "org.letsconnect-vpn.app.android:/api/callback",
- "org.eduvpn.app.macos": "org.eduvpn.app.macos:/api/callback",
- "org.eduvpn.app.ios": "org.eduvpn.app.ios:/api/callback",
- "org.eduvpn.app.android": "org.eduvpn.app.android:/api/callback",
- "org.govvpn.app.macos": "org.govvpn.app.macos:/api/callback",
- "org.govvpn.app.ios": "org.govvpn.app.ios:/api/callback",
- "org.govvpn.app.android": "org.govvpn.app.android:/api/callback",
-}
-
-// customRedirect returns the custom redirect string for the clientID `cid`
-// Empty string if none is defined or one is defined but is empty.
-// In both empty string cases, eduvpn-common handles the redirects as 127.0.0.1 local server redirects
-// If a non-empty string is returned, the redirect should be handled by the client and we only use the redirect URI value in our OAuth requests
-func customRedirect(cid string) string {
- v, ok := customRedirects[cid]
- if !ok {
- return ""
- }
- return v
-}