blob: a1d2dcbbbdc5c6017a77581c2261a9297f19c239 [file] [log] [blame]
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {getBaseUrl} from '../../../utils/url-util';
import {HttpMethod} from '../../../constants/constants';
import {RequestPayload} from '../../../types/common';
import {RestApiService} from '../../../services/gr-rest-api/gr-rest-api';
import {readJSONResponsePayload} from '../gr-rest-api-interface/gr-rest-apis/gr-rest-api-helper';
export const PLUGIN_LOADING_TIMEOUT_MS = 10000;
export const THEME_JS = '/static/gerrit-theme.js';
const THEME_NAME = 'gerrit-theme';
export function isThemeFile(path: string) {
return path.endsWith(THEME_JS);
}
/**
* Retrieves the name of the plugin base on the url.
*/
export function getPluginNameFromUrl(url: URL | string) {
if (!(url instanceof URL)) {
try {
url = new URL(url);
} catch (e) {
console.warn(e);
return null;
}
}
const base = getBaseUrl();
let pathname = url.pathname.replace(base, '');
// Load from ASSETS_PATH
if (window.ASSETS_PATH && url.href.includes(window.ASSETS_PATH)) {
pathname = url.href.replace(window.ASSETS_PATH, '');
}
if (isThemeFile(pathname)) return THEME_NAME;
if (!pathname.startsWith('/plugins')) {
console.warn(
'Plugin not being loaded from /plugins base path:',
url.href,
'— Unable to determine name.'
);
return null;
}
// Pathname should normally look like this:
// /plugins/PLUGINNAME/static/SCRIPTNAME.js
// Or:
// /plugins/PLUGINNAME.js
// TODO(taoalpha): guard with a regex
return pathname.split('/')[2].split('.')[0];
}
export function send(
restApiService: RestApiService,
method: HttpMethod,
url: string,
callback?: (response: unknown) => void,
payload?: RequestPayload
) {
return restApiService
.send(method, url, payload)
.then(response => {
if (response.status < 200 || response.status >= 300) {
return response.text().then((text: string | undefined) => {
if (text) {
return Promise.reject(new Error(text));
} else {
return Promise.reject(new Error(`${response.status}`));
}
});
} else {
return readJSONResponsePayload(response).then(obj => obj.parsed);
}
})
.then(response => {
if (callback) {
callback(response);
}
return response;
});
}