rabbitmq-server/deps/rabbitmq_management/priv/www/js/oidc-oauth/helper.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

183 lines
5.2 KiB
JavaScript
Raw Normal View History

var mgr;
var _management_logger;
/*
function oauth_initialize_if_required_deprecated() {
rabbit_port = window.location.port ? ":" + window.location.port : ""
rabbit_path_prefix = window.location.pathname.replace(/(\/js\/oidc-oauth\/.*$|\/+$)/, "")
rabbit_base_uri = window.location.protocol + "//" + window.location.hostname
+ rabbit_port + rabbit_path_prefix
var request = new XMLHttpRequest();
request.open("GET", rabbit_base_uri + "/api/auth", false);
request.send(null);
if (request.status === 200) {
return oauth_initialize(JSON.parse(request.responseText));
} else {
return { "enabled" : false };
}
}
*/
function rabbit_base_uri() {
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 : "";
}
function auth_settings_apply_defaults(authSettings) {
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";
}
return authSettings;
}
function oauth_initialize(authSettings) {
oauth = {
"logged_in": false,
"enabled" : authSettings.oauth_enabled,
2022-05-26 22:49:07 +08:00
"authority" : authSettings.oauth_provider_url
};
if (!oauth.enabled) return oauth;
oauth.sp_initiated = true;
if (authSettings.oauth_initiated_logon_type == "idp_initiated") {
oauth.sp_initiated = false;
return oauth;
}
authSettings = auth_settings_apply_defaults(authSettings);
oidcSettings = {
//userStore: new WebStorageStateStore({ store: window.localStorage }),
authority: authSettings.oauth_provider_url,
client_id: authSettings.oauth_client_id,
response_type: authSettings.oauth_response_type,
scope: authSettings.oauth_scopes,
resource: authSettings.oauth_resource_id,
redirect_uri: rabbit_base_uri() + "/js/oidc-oauth/login-callback.html",
post_logout_redirect_uri: rabbit_base_uri() + "/",
automaticSilentRenew: true,
revokeAccessTokenOnSignout: true,
extraQueryParams: {
audience: authSettings.oauth_resource_id, // required by oauth0
},
};
if (authSettings.oauth_client_secret != "") {
oidcSettings.client_secret = authSettings.oauth_client_secret;
}
if (authSettings.oauth_metadata_url != "") {
oidcSettings.metadataUrl = authSettings.oauth_metadata_url;
}
oidc.Log.setLevel(oidc.Log.DEBUG);
oidc.Log.setLogger(console);
mgr = new oidc.UserManager(oidcSettings);
oauth.readiness_url = mgr.settings.metadataUrl;
_management_logger = new oidc.Logger("Management");
mgr.events.addAccessTokenExpiring(function() {
_management_logger.info("token expiring...");
});
mgr.events.addAccessTokenExpired(function() {
_management_logger.info("token expired!!");
});
mgr.events.addSilentRenewError(function(err) {
_management_logger.error("token expiring failed due to ", err);
});
mgr.events.addUserLoaded(function(user) {
console.log("addUserLoaded setting oauth.access_token ")
oauth.access_token = user.access_token // DEPRECATED
set_token_auth(oauth.access_token)
});
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
});
_management_logger.info(message)
}
function oauth_is_logged_in() {
return mgr.getUser().then(user => {
if (!user) {
return { "loggedIn": false };
}
return { "user": user, "loggedIn": !user.expired };
});
}
function oauth_initiateLogin() {
if (oauth.sp_initiated) {
mgr.signinRedirect({ state: { } }).then(function() {
_management_logger.debug("signinRedirect done");
}).catch(function(err) {
_management_logger.error(err);
})
} else {
location.href = oauth.authority;
}
}
2022-05-26 22:49:07 +08:00
function oauth_redirectToHome(oauth) {
console.log("oauth_redirectToHome set_token_auth")
set_token_auth(oauth.access_token)
go_to_home()
}
function go_to_home() {
location.href = rabbit_path_prefix() + "/"
}
function go_to_authority() {
location.href = oauth.authority
}
2022-05-26 22:49:07 +08:00
function oauth_redirectToLogin(error) {
if (!error) location.href = rabbit_path_prefix() + "/"
2022-05-26 22:49:07 +08:00
else {
location.href = rabbit_path_prefix() + "/?error=" + error
2022-05-26 22:49:07 +08:00
}
}
function oauth_completeLogin() {
2022-05-26 22:49:07 +08:00
mgr.signinRedirectCallback().then(user => oauth_redirectToHome(user)).catch(function(err) {
_management_logger.error(err)
2022-05-26 22:49:07 +08:00
oauth_redirectToLogin(err)
});
}
function oauth_initiateLogout() {
if (oauth.sp_initiated) {
mgr.signoutRedirect()
} else {
go_to_authority()
}
}
function oauth_completeLogout() {
clear_auth()
mgr.signoutRedirectCallback().then(_ => oauth_redirectToLogin())
}