2022-05-05 21:08:48 +08:00
|
|
|
|
|
|
|
var mgr;
|
2022-09-01 20:53:42 +08:00
|
|
|
var _management_logger;
|
2022-05-05 21:08:48 +08:00
|
|
|
|
2022-10-04 22:43:18 +08:00
|
|
|
|
2023-03-31 15:51:22 +08:00
|
|
|
function rabbit_base_uri() {
|
2023-05-18 23:17:11 +08:00
|
|
|
return window.location.protocol + "//" + window.location.hostname + rabbit_port() + rabbit_path_prefix()
|
|
|
|
}
|
|
|
|
function rabbit_path_prefix() {
|
|
|
|
return window.location.pathname.replace(/(\/js\/oidc-oauth\/.*$|\/+$)/, "");
|
|
|
|
}
|
|
|
|
function rabbit_port() {
|
|
|
|
return window.location.port ? ":" + window.location.port : "";
|
2023-03-31 15:51:22 +08:00
|
|
|
}
|
2024-01-03 16:28:36 +08:00
|
|
|
function readiness_url(resource_server) {
|
|
|
|
if (!resource_server.metadata_url) {
|
|
|
|
return resource_server.provider_url + "/.well-known/openid-configuration"
|
|
|
|
}else {
|
|
|
|
return resource_server.metadata_url
|
|
|
|
}
|
|
|
|
}
|
2022-05-10 22:22:04 +08:00
|
|
|
|
2024-01-03 16:28:36 +08:00
|
|
|
function auth_settings_apply_defaults(authSettings) {
|
|
|
|
if (authSettings.oauth_provider_url) {
|
|
|
|
if (!authSettings.oauth_response_type) {
|
|
|
|
authSettings.oauth_response_type = "code"; // although the default value in oidc client
|
|
|
|
}
|
|
|
|
if (!authSettings.oauth_scopes) {
|
|
|
|
authSettings.oauth_scopes = "openid profile";
|
|
|
|
}
|
|
|
|
if (!authSettings.oauth_initiated_logon_type) {
|
|
|
|
authSettings.oauth_initiated_logon_type = "sp_initiated"
|
|
|
|
}
|
2022-05-10 22:22:04 +08:00
|
|
|
}
|
2024-01-03 16:28:36 +08:00
|
|
|
authSettings.resource_servers = []
|
|
|
|
|
|
|
|
if (authSettings.oauth_resource_servers && Object.keys(authSettings.oauth_resource_servers).length > 0) {
|
|
|
|
|
|
|
|
for (const [resource_server_id, resource_server] of Object.entries(authSettings.oauth_resource_servers)) {
|
|
|
|
if (!resource_server.provider_url) {
|
|
|
|
resource_server.provider_url = authSettings.oauth_provider_url
|
|
|
|
}
|
|
|
|
if (!resource_server.provider_url) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if (!resource_server.response_type) {
|
|
|
|
resource_server.response_type = authSettings.oauth_response_type
|
|
|
|
if (!resource_server.response_type) {
|
|
|
|
resource_server.response_type = "code"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!resource_server.scopes) {
|
|
|
|
resource_server.scopes = authSettings.oauth_scopes
|
|
|
|
if (!resource_server.scopes) {
|
|
|
|
resource_server.scopes = "openid profile"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!resource_server.client_id) {
|
|
|
|
resource_server.client_id = authSettings.oauth_client_id
|
|
|
|
}
|
2024-01-18 03:37:25 +08:00
|
|
|
if (!resource_server.client_secret && !resource_server.client_id) {
|
2024-01-03 16:28:36 +08:00
|
|
|
resource_server.client_secret = authSettings.oauth_client_secret
|
|
|
|
}
|
|
|
|
if (resource_server.initiated_logon_type == "idp_initiated") {
|
|
|
|
resource_server.sp_initiated = false
|
|
|
|
} else {
|
|
|
|
resource_server.sp_initiated = true
|
|
|
|
}
|
|
|
|
if (!resource_server.metadata_url) {
|
|
|
|
resource_server.metadata_url = authSettings.metadata_url
|
|
|
|
}
|
|
|
|
resource_server.id = resource_server_id
|
|
|
|
authSettings.resource_servers.push(resource_server)
|
|
|
|
}
|
2022-05-10 22:22:04 +08:00
|
|
|
|
2024-01-03 16:28:36 +08:00
|
|
|
}else if (authSettings.oauth_provider_url) {
|
|
|
|
let resource = {
|
|
|
|
"provider_url" : authSettings.oauth_provider_url,
|
|
|
|
"scopes" : authSettings.oauth_scopes,
|
|
|
|
"response_type" : authSettings.oauth_response_type,
|
|
|
|
"sp_initiated" : authSettings.oauth_initiated_logon_type == "sp_initiated",
|
|
|
|
"id" : authSettings.oauth_resource_id
|
|
|
|
}
|
|
|
|
if (authSettings.oauth_client_secret) {
|
|
|
|
resource.client_secret = authSettings.oauth_client_secret
|
|
|
|
}
|
|
|
|
if (authSettings.oauth_client_id) {
|
|
|
|
resource.client_id = authSettings.oauth_client_id
|
|
|
|
}
|
|
|
|
if (authSettings.metadata_url) {
|
|
|
|
resource.metadata_url = authSettings.metadata_url
|
|
|
|
}
|
|
|
|
authSettings.resource_servers.push(resource)
|
2022-05-10 22:22:04 +08:00
|
|
|
}
|
2022-05-05 21:08:48 +08:00
|
|
|
|
2022-05-10 22:22:04 +08:00
|
|
|
return authSettings;
|
|
|
|
}
|
|
|
|
|
2022-10-04 15:13:57 +08:00
|
|
|
|
2024-01-03 16:28:36 +08:00
|
|
|
function oauth_initialize_user_manager(resource_server) {
|
2022-05-05 21:08:48 +08:00
|
|
|
oidcSettings = {
|
|
|
|
//userStore: new WebStorageStateStore({ store: window.localStorage }),
|
2024-01-03 16:28:36 +08:00
|
|
|
authority: resource_server.provider_url,
|
|
|
|
client_id: resource_server.client_id,
|
|
|
|
response_type: resource_server.response_type,
|
|
|
|
scope: resource_server.scopes,
|
|
|
|
resource: resource_server.id,
|
2023-03-31 15:51:22 +08:00
|
|
|
redirect_uri: rabbit_base_uri() + "/js/oidc-oauth/login-callback.html",
|
|
|
|
post_logout_redirect_uri: rabbit_base_uri() + "/",
|
2022-05-05 21:08:48 +08:00
|
|
|
|
2022-05-05 22:22:47 +08:00
|
|
|
automaticSilentRenew: true,
|
2022-05-05 21:08:48 +08:00
|
|
|
revokeAccessTokenOnSignout: true,
|
2022-05-31 21:08:32 +08:00
|
|
|
extraQueryParams: {
|
2024-01-03 16:28:36 +08:00
|
|
|
audience: resource_server.id, // required by oauth0
|
2022-05-31 21:08:32 +08:00
|
|
|
},
|
2022-05-05 21:08:48 +08:00
|
|
|
};
|
2024-01-03 16:28:36 +08:00
|
|
|
if (resource_server.client_secret != "") {
|
|
|
|
oidcSettings.client_secret = resource_server.client_secret;
|
2022-11-08 16:41:47 +08:00
|
|
|
}
|
2024-01-03 16:28:36 +08:00
|
|
|
if (resource_server.metadata_url != "") {
|
|
|
|
oidcSettings.metadataUrl = resource_server.metadata_url;
|
2022-11-08 16:41:47 +08:00
|
|
|
}
|
2022-05-05 21:08:48 +08:00
|
|
|
|
2022-09-01 20:53:42 +08:00
|
|
|
oidc.Log.setLevel(oidc.Log.DEBUG);
|
|
|
|
oidc.Log.setLogger(console);
|
2022-05-05 21:08:48 +08:00
|
|
|
|
|
|
|
mgr = new oidc.UserManager(oidcSettings);
|
2022-11-08 16:41:47 +08:00
|
|
|
oauth.readiness_url = mgr.settings.metadataUrl;
|
2022-05-05 21:08:48 +08:00
|
|
|
|
2022-09-01 20:53:42 +08:00
|
|
|
_management_logger = new oidc.Logger("Management");
|
2022-05-05 21:08:48 +08:00
|
|
|
|
2022-05-05 22:22:47 +08:00
|
|
|
mgr.events.addAccessTokenExpiring(function() {
|
2022-11-08 16:41:47 +08:00
|
|
|
_management_logger.info("token expiring...");
|
2022-05-05 22:22:47 +08:00
|
|
|
});
|
2022-07-07 17:10:03 +08:00
|
|
|
mgr.events.addAccessTokenExpired(function() {
|
2022-11-08 16:41:47 +08:00
|
|
|
_management_logger.info("token expired!!");
|
2022-07-07 17:10:03 +08:00
|
|
|
});
|
2022-05-05 22:22:47 +08:00
|
|
|
mgr.events.addSilentRenewError(function(err) {
|
2022-11-08 16:41:47 +08:00
|
|
|
_management_logger.error("token expiring failed due to ", err);
|
2022-05-05 22:22:47 +08:00
|
|
|
});
|
2022-07-07 17:10:03 +08:00
|
|
|
mgr.events.addUserLoaded(function(user) {
|
2022-12-19 22:39:32 +08:00
|
|
|
console.log("addUserLoaded setting oauth.access_token ")
|
|
|
|
oauth.access_token = user.access_token // DEPRECATED
|
|
|
|
set_token_auth(oauth.access_token)
|
2022-11-08 16:41:47 +08:00
|
|
|
});
|
2022-05-05 22:22:47 +08:00
|
|
|
|
2024-01-03 16:28:36 +08:00
|
|
|
}
|
|
|
|
function oauth_initialize(authSettings) {
|
|
|
|
authSettings = auth_settings_apply_defaults(authSettings);
|
|
|
|
oauth = {
|
|
|
|
"logged_in": false,
|
|
|
|
"enabled" : authSettings.oauth_enabled,
|
|
|
|
"resource_servers" : authSettings.resource_servers,
|
|
|
|
"oauth_disable_basic_auth" : authSettings.oauth_disable_basic_auth
|
|
|
|
}
|
|
|
|
if (!oauth.enabled) return oauth;
|
|
|
|
|
|
|
|
resource_server = null
|
|
|
|
|
|
|
|
if (oauth.resource_servers.length == 1) {
|
|
|
|
resource_server = oauth.resource_servers[0]
|
|
|
|
} else if (has_auth_resource()) {
|
|
|
|
resource_server = lookup_resource_server(get_auth_resource())
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resource_server) {
|
|
|
|
oauth.sp_initiated = resource_server.sp_initiated
|
|
|
|
oauth.authority = resource_server.provider_url
|
|
|
|
if (!resource_server.sp_initiated) return oauth;
|
|
|
|
else oauth_initialize_user_manager(resource_server)
|
|
|
|
}
|
|
|
|
|
2022-05-05 21:08:48 +08:00
|
|
|
return oauth;
|
|
|
|
}
|
|
|
|
|
|
|
|
function log() {
|
|
|
|
message = ""
|
|
|
|
Array.prototype.forEach.call(arguments, function(msg) {
|
|
|
|
if (msg instanceof Error) {
|
|
|
|
msg = "Error: " + msg.message;
|
|
|
|
}
|
|
|
|
else if (typeof msg !== "string") {
|
|
|
|
msg = JSON.stringify(msg, null, 2);
|
|
|
|
}
|
|
|
|
message += msg
|
|
|
|
});
|
2022-09-01 20:53:42 +08:00
|
|
|
_management_logger.info(message)
|
2022-05-05 21:08:48 +08:00
|
|
|
}
|
|
|
|
|
2022-05-10 22:22:04 +08:00
|
|
|
function oauth_is_logged_in() {
|
2022-05-05 21:08:48 +08:00
|
|
|
return mgr.getUser().then(user => {
|
|
|
|
if (!user) {
|
|
|
|
return { "loggedIn": false };
|
|
|
|
}
|
|
|
|
return { "user": user, "loggedIn": !user.expired };
|
|
|
|
});
|
|
|
|
}
|
2024-01-03 16:28:36 +08:00
|
|
|
function lookup_resource_server(resource_server_id) {
|
|
|
|
let i = 0;
|
|
|
|
|
|
|
|
while (i < oauth.resource_servers.length && oauth.resource_servers[i].id != resource_server_id) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (i < oauth.resource_servers.length) return oauth.resource_servers[i]
|
|
|
|
else return null
|
|
|
|
}
|
|
|
|
|
|
|
|
function oauth_initiateLogin(resource_server_id) {
|
|
|
|
resource_server = lookup_resource_server(resource_server_id)
|
|
|
|
if (!resource_server) return;
|
|
|
|
set_auth_resource(resource_server_id)
|
|
|
|
|
|
|
|
oauth.sp_initiated = resource_server.sp_initiated
|
|
|
|
oauth.authority = resource_server.provider_url
|
|
|
|
|
|
|
|
if (resource_server.sp_initiated) {
|
|
|
|
if (!mgr) oauth_initialize_user_manager(resource_server)
|
|
|
|
|
2022-09-01 20:53:42 +08:00
|
|
|
mgr.signinRedirect({ state: { } }).then(function() {
|
2024-01-03 16:28:36 +08:00
|
|
|
_management_logger.debug("signinRedirect done")
|
2022-05-05 21:08:48 +08:00
|
|
|
}).catch(function(err) {
|
2024-01-03 16:28:36 +08:00
|
|
|
_management_logger.error(err)
|
2022-11-08 16:41:47 +08:00
|
|
|
})
|
|
|
|
} else {
|
2024-01-03 16:28:36 +08:00
|
|
|
location.href = resource_server.provider_url
|
2022-11-08 16:41:47 +08:00
|
|
|
}
|
2022-05-05 21:08:48 +08:00
|
|
|
}
|
2022-10-04 15:13:57 +08:00
|
|
|
|
2022-05-26 22:49:07 +08:00
|
|
|
function oauth_redirectToHome(oauth) {
|
2022-12-13 21:09:18 +08:00
|
|
|
set_token_auth(oauth.access_token)
|
2023-10-27 04:19:07 +08:00
|
|
|
|
|
|
|
path = get_pref("oauth-return-to");
|
|
|
|
clear_pref("oauth-return-to")
|
|
|
|
go_to(path)
|
2022-11-08 16:41:47 +08:00
|
|
|
}
|
2023-10-27 04:19:07 +08:00
|
|
|
function go_to(path) {
|
|
|
|
location.href = rabbit_path_prefix() + "/" + path
|
2022-05-05 21:08:48 +08:00
|
|
|
}
|
2022-11-08 16:41:47 +08:00
|
|
|
function go_to_authority() {
|
2022-12-13 21:09:18 +08:00
|
|
|
location.href = oauth.authority
|
2022-11-08 16:41:47 +08:00
|
|
|
}
|
2022-05-26 22:49:07 +08:00
|
|
|
function oauth_redirectToLogin(error) {
|
2023-05-18 23:17:11 +08:00
|
|
|
if (!error) location.href = rabbit_path_prefix() + "/"
|
2022-05-26 22:49:07 +08:00
|
|
|
else {
|
2023-05-18 23:17:11 +08:00
|
|
|
location.href = rabbit_path_prefix() + "/?error=" + error
|
2022-05-26 22:49:07 +08:00
|
|
|
}
|
2022-05-05 21:08:48 +08:00
|
|
|
}
|
2022-05-10 22:22:04 +08:00
|
|
|
function oauth_completeLogin() {
|
2022-05-26 22:49:07 +08:00
|
|
|
mgr.signinRedirectCallback().then(user => oauth_redirectToHome(user)).catch(function(err) {
|
2022-12-13 21:09:18 +08:00
|
|
|
_management_logger.error(err)
|
2022-05-26 22:49:07 +08:00
|
|
|
oauth_redirectToLogin(err)
|
2022-05-05 21:08:48 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-05-10 22:22:04 +08:00
|
|
|
function oauth_initiateLogout() {
|
2022-11-08 16:41:47 +08:00
|
|
|
if (oauth.sp_initiated) {
|
2022-12-13 21:09:18 +08:00
|
|
|
mgr.signoutRedirect()
|
2022-11-08 16:41:47 +08:00
|
|
|
} else {
|
2022-12-13 21:09:18 +08:00
|
|
|
go_to_authority()
|
2022-11-08 16:41:47 +08:00
|
|
|
}
|
2022-05-05 21:08:48 +08:00
|
|
|
}
|
2022-05-10 22:22:04 +08:00
|
|
|
function oauth_completeLogout() {
|
2022-12-13 21:09:18 +08:00
|
|
|
clear_auth()
|
|
|
|
mgr.signoutRedirectCallback().then(_ => oauth_redirectToLogin())
|
2022-05-05 21:08:48 +08:00
|
|
|
}
|
2024-01-03 16:28:36 +08:00
|
|
|
function validate_openid_configuration(payload) {
|
|
|
|
if (payload == null) {
|
|
|
|
throw new Error("Payload does not contain openid configuration")
|
|
|
|
}
|
|
|
|
if (typeof payload.authorization_endpoint != 'string') {
|
|
|
|
throw new Error("Missing authorization_endpoint")
|
|
|
|
}
|
|
|
|
if (typeof payload.token_endpoint != 'string') {
|
|
|
|
throw new Error("Missing token_endpoint")
|
|
|
|
}
|
|
|
|
if (typeof payload.jwks_uri != 'string') {
|
|
|
|
throw new Error("Missing jwks_uri")
|
|
|
|
}
|
|
|
|
if (typeof payload.end_session_endpoint != 'string') {
|
|
|
|
throw new Error("Missing end_session_endpoint")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|