/* * Copyright OpenSearch Contributors * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://www.apache.org/licenses/LICENSE-2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ import { HttpStart } from 'opensearch-dashboards/public'; import { API_AUTH_LOGOUT, LOGIN_PAGE_URI, OPENID_AUTH_LOGOUT, SAML_AUTH_LOGOUT, } from '../../../common'; import { API_ENDPOINT_ACCOUNT_INFO } from './constants'; import { AccountInfo } from './types'; import { httpGet, httpGetWithIgnores, httpPost } from '../configuration/utils/request-utils'; import { setShouldShowTenantPopup } from '../../utils/storage-utils'; export function fetchAccountInfo(http: HttpStart): Promise { return httpGet(http, API_ENDPOINT_ACCOUNT_INFO); } export async function fetchAccountInfoSafe(http: HttpStart): Promise { return httpGetWithIgnores(http, API_ENDPOINT_ACCOUNT_INFO, [401]); } export async function logout(http: HttpStart, logoutUrl?: string): Promise { await httpPost(http, API_AUTH_LOGOUT); setShouldShowTenantPopup(null); // Clear everything in the sessionStorage since they can contain sensitive information sessionStorage.clear(); // When no basepath is set, we can take '/' as the basepath. const basePath = http.basePath.serverBasePath ? http.basePath.serverBasePath : '/'; const nextUrl = encodeURIComponent(basePath); window.location.href = logoutUrl || `${http.basePath.serverBasePath}/app/login?nextUrl=${nextUrl}`; } export async function samlLogout(http: HttpStart): Promise { // This will ensure tenancy is picked up from local storage in the next login. setShouldShowTenantPopup(null); window.location.href = `${http.basePath.serverBasePath}${SAML_AUTH_LOGOUT}`; } export async function openidLogout(http: HttpStart): Promise { // This will ensure tenancy is picked up from local storage in the next login. setShouldShowTenantPopup(null); sessionStorage.clear(); window.location.href = `${http.basePath.serverBasePath}${OPENID_AUTH_LOGOUT}`; } export async function externalLogout(http: HttpStart, logoutEndpoint: string): Promise { // This will ensure tenancy is picked up from local storage in the next login. setShouldShowTenantPopup(null); sessionStorage.clear(); window.location.href = `${http.basePath.serverBasePath}${logoutEndpoint}`; } export async function updateNewPassword( http: HttpStart, newPassword: string, currentPassword: string ): Promise { await httpPost(http, API_ENDPOINT_ACCOUNT_INFO, { password: newPassword, current_password: currentPassword, }); }