backend-app-api: Move deprecated loadBackendConfig to backend-common
Co-authored-by: Camila Belo <camilaibs@gmail.com> Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
@@ -21,6 +21,7 @@ import { CacheService } from '@backstage/backend-plugin-api';
|
||||
import { CacheServiceOptions } from '@backstage/backend-plugin-api';
|
||||
import { CacheServiceSetOptions } from '@backstage/backend-plugin-api';
|
||||
import { Config } from '@backstage/config';
|
||||
import { ConfigSchema } from '@backstage/config-loader';
|
||||
import cors from 'cors';
|
||||
import { DatabaseService } from '@backstage/backend-plugin-api';
|
||||
import { DiscoveryService } from '@backstage/backend-plugin-api';
|
||||
@@ -133,6 +134,11 @@ export interface ContainerRunner {
|
||||
runContainer(opts: RunContainerOptions): Promise<void>;
|
||||
}
|
||||
|
||||
// Warning: (ae-forgotten-export) The symbol "createConfigSecretEnumerator_2" needs to be exported by the entry point index.d.ts
|
||||
//
|
||||
// @public @deprecated (undocumented)
|
||||
export const createConfigSecretEnumerator: typeof createConfigSecretEnumerator_2;
|
||||
|
||||
// @public @deprecated
|
||||
export function createLegacyAuthAdapters<
|
||||
TOptions extends {
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
/*
|
||||
* Copyright 2020 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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.
|
||||
*/
|
||||
|
||||
// eslint-disable-next-line @backstage/no-relative-monorepo-imports
|
||||
import {
|
||||
createConfigSecretEnumerator,
|
||||
loadBackendConfig as newLoadBackendConfig,
|
||||
} from '../../../backend-app-api/src/config';
|
||||
import { LoggerService } from '@backstage/backend-plugin-api';
|
||||
import { AppConfig, Config } from '@backstage/config';
|
||||
import { LoadConfigOptionsRemote } from '@backstage/config-loader';
|
||||
import { setRootLoggerRedactionList } from './logging/createRootLogger';
|
||||
|
||||
/**
|
||||
* Load configuration for a Backend.
|
||||
*
|
||||
* This function should only be called once, during the initialization of the backend.
|
||||
*
|
||||
* @public
|
||||
* @deprecated Use {@link @backstage/backend-app-api#loadBackendConfig} instead.
|
||||
*/
|
||||
export async function loadBackendConfig(options: {
|
||||
logger: LoggerService;
|
||||
// process.argv or any other overrides
|
||||
remote?: LoadConfigOptionsRemote;
|
||||
additionalConfigs?: AppConfig[];
|
||||
argv: string[];
|
||||
watch?: boolean;
|
||||
}): Promise<Config> {
|
||||
const secretEnumerator = await createConfigSecretEnumerator({
|
||||
logger: options.logger,
|
||||
});
|
||||
const { config } = await newLoadBackendConfig(options);
|
||||
|
||||
setRootLoggerRedactionList(secretEnumerator(config));
|
||||
config.subscribe?.(() =>
|
||||
setRootLoggerRedactionList(secretEnumerator(config)),
|
||||
);
|
||||
|
||||
return config;
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
/*
|
||||
* Copyright 2020 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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 { ConfigReader } from '@backstage/config';
|
||||
import { ObservableConfigProxy } from './ObservableConfigProxy';
|
||||
|
||||
describe('ObservableConfigProxy', () => {
|
||||
it('should notify subscribers', () => {
|
||||
const config = new ObservableConfigProxy();
|
||||
|
||||
const fn = jest.fn();
|
||||
const sub = config.subscribe(fn);
|
||||
expect(config.getOptionalNumber('x')).toBe(undefined);
|
||||
|
||||
config.setConfig(new ConfigReader({}));
|
||||
expect(fn).toHaveBeenCalledTimes(1);
|
||||
expect(config.getOptionalNumber('x')).toBe(undefined);
|
||||
|
||||
config.setConfig(new ConfigReader({ x: 1 }));
|
||||
expect(fn).toHaveBeenCalledTimes(2);
|
||||
expect(config.getOptionalNumber('x')).toBe(1);
|
||||
|
||||
config.setConfig(new ConfigReader({ x: 3 }));
|
||||
expect(fn).toHaveBeenCalledTimes(3);
|
||||
sub.unsubscribe();
|
||||
expect(config.getOptionalNumber('x')).toBe(3);
|
||||
|
||||
config.setConfig(new ConfigReader({ x: 5 }));
|
||||
expect(fn).toHaveBeenCalledTimes(3);
|
||||
expect(config.getOptionalNumber('x')).toBe(5);
|
||||
});
|
||||
|
||||
it('should forward subscriptions', () => {
|
||||
const config1 = new ObservableConfigProxy();
|
||||
|
||||
const fn1 = jest.fn();
|
||||
const fn2 = jest.fn();
|
||||
const fn3 = jest.fn();
|
||||
const config2 = config1.getConfig('a');
|
||||
const config3 = config2.getConfig('b');
|
||||
const sub1 = config1.subscribe(fn1);
|
||||
const sub2 = config2.subscribe!(fn2);
|
||||
const sub3 = config3.subscribe!(fn3);
|
||||
expect(config1.getOptionalNumber('x')).toBe(undefined);
|
||||
expect(config2.getOptionalNumber('x')).toBe(undefined);
|
||||
expect(config3.getOptionalNumber('x')).toBe(undefined);
|
||||
|
||||
config1.setConfig(new ConfigReader({}));
|
||||
expect(fn1).toHaveBeenCalledTimes(1);
|
||||
expect(fn2).toHaveBeenCalledTimes(1);
|
||||
expect(fn3).toHaveBeenCalledTimes(1);
|
||||
expect(config1.getOptionalNumber('x')).toBe(undefined);
|
||||
expect(config2.getOptionalNumber('x')).toBe(undefined);
|
||||
expect(config3.getOptionalNumber('x')).toBe(undefined);
|
||||
|
||||
config1.setConfig(new ConfigReader({ x: 1, a: { x: 2, b: { x: 3 } } }));
|
||||
expect(fn1).toHaveBeenCalledTimes(2);
|
||||
expect(fn2).toHaveBeenCalledTimes(2);
|
||||
expect(fn3).toHaveBeenCalledTimes(2);
|
||||
expect(config1.getNumber('x')).toBe(1);
|
||||
expect(config2.getNumber('x')).toBe(2);
|
||||
expect(config3.getNumber('x')).toBe(3);
|
||||
|
||||
sub1.unsubscribe();
|
||||
sub2.unsubscribe();
|
||||
sub3.unsubscribe();
|
||||
|
||||
config1.setConfig(new ConfigReader({ x: 4, a: { x: 5, b: { x: 6 } } }));
|
||||
expect(fn1).toHaveBeenCalledTimes(2);
|
||||
expect(fn2).toHaveBeenCalledTimes(2);
|
||||
expect(fn3).toHaveBeenCalledTimes(2);
|
||||
expect(config1.getNumber('x')).toBe(4);
|
||||
expect(config2.getNumber('x')).toBe(5);
|
||||
expect(config3.getNumber('x')).toBe(6);
|
||||
|
||||
config1.setConfig(new ConfigReader({}));
|
||||
expect(() => config1.getNumber('x')).toThrow(
|
||||
"Missing required config value at 'x'",
|
||||
);
|
||||
expect(() => config2.getNumber('x')).toThrow(
|
||||
"Missing required config value at 'a'",
|
||||
);
|
||||
expect(() => config3.getNumber('x')).toThrow(
|
||||
"Missing required config value at 'a'",
|
||||
);
|
||||
|
||||
config1.setConfig(
|
||||
new ConfigReader({ x: 's', a: { x: 's', b: { x: 's' } } }),
|
||||
);
|
||||
expect(() => config1.getNumber('x')).toThrow(
|
||||
"Unable to convert config value for key 'x' in 'mock-config' to a number",
|
||||
);
|
||||
expect(() => config2.getNumber('x')).toThrow(
|
||||
"Unable to convert config value for key 'a.x' in 'mock-config' to a number",
|
||||
);
|
||||
expect(() => config3.getNumber('x')).toThrow(
|
||||
"Unable to convert config value for key 'a.b.x' in 'mock-config' to a number",
|
||||
);
|
||||
});
|
||||
|
||||
it('should make sub configs available as expected', () => {
|
||||
const config = new ObservableConfigProxy();
|
||||
|
||||
config.setConfig(new ConfigReader({ a: { x: 1 } }));
|
||||
|
||||
expect(config.getConfig('a')).toBeDefined();
|
||||
expect(config.getConfig('a').getNumber('x')).toBe(1);
|
||||
expect(config.getConfig('a').getOptionalNumber('x')).toBe(1);
|
||||
expect(config.getOptionalConfig('a')?.getNumber('x')).toBe(1);
|
||||
expect(config.getOptionalConfig('a')?.getOptionalNumber('x')).toBe(1);
|
||||
expect(config.getOptionalConfig('b')).toBeUndefined();
|
||||
expect(() => config.getConfig('b')).toBeDefined();
|
||||
expect(() => config.getConfig('b').get()).toThrow();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,128 @@
|
||||
/*
|
||||
* Copyright 2023 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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 { Config, ConfigReader } from '@backstage/config';
|
||||
import { JsonValue } from '@backstage/types';
|
||||
|
||||
export class ObservableConfigProxy implements Config {
|
||||
private config: Config = new ConfigReader({});
|
||||
|
||||
private readonly subscribers: (() => void)[] = [];
|
||||
|
||||
constructor(
|
||||
private readonly parent?: ObservableConfigProxy,
|
||||
private parentKey?: string,
|
||||
) {
|
||||
if (parent && !parentKey) {
|
||||
throw new Error('parentKey is required if parent is set');
|
||||
}
|
||||
}
|
||||
|
||||
setConfig(config: Config) {
|
||||
if (this.parent) {
|
||||
throw new Error('immutable');
|
||||
}
|
||||
this.config = config;
|
||||
for (const subscriber of this.subscribers) {
|
||||
try {
|
||||
subscriber();
|
||||
} catch (error) {
|
||||
console.error(`Config subscriber threw error, ${error}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
subscribe(onChange: () => void): { unsubscribe: () => void } {
|
||||
if (this.parent) {
|
||||
return this.parent.subscribe(onChange);
|
||||
}
|
||||
|
||||
this.subscribers.push(onChange);
|
||||
return {
|
||||
unsubscribe: () => {
|
||||
const index = this.subscribers.indexOf(onChange);
|
||||
if (index >= 0) {
|
||||
this.subscribers.splice(index, 1);
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
private select(required: true): Config;
|
||||
private select(required: false): Config | undefined;
|
||||
private select(required: boolean): Config | undefined {
|
||||
if (this.parent && this.parentKey) {
|
||||
if (required) {
|
||||
return this.parent.select(true).getConfig(this.parentKey);
|
||||
}
|
||||
return this.parent.select(false)?.getOptionalConfig(this.parentKey);
|
||||
}
|
||||
|
||||
return this.config;
|
||||
}
|
||||
|
||||
has(key: string): boolean {
|
||||
return this.select(false)?.has(key) ?? false;
|
||||
}
|
||||
keys(): string[] {
|
||||
return this.select(false)?.keys() ?? [];
|
||||
}
|
||||
get<T = JsonValue>(key?: string): T {
|
||||
return this.select(true).get(key);
|
||||
}
|
||||
getOptional<T = JsonValue>(key?: string): T | undefined {
|
||||
return this.select(false)?.getOptional(key);
|
||||
}
|
||||
getConfig(key: string): Config {
|
||||
return new ObservableConfigProxy(this, key);
|
||||
}
|
||||
getOptionalConfig(key: string): Config | undefined {
|
||||
if (this.select(false)?.has(key)) {
|
||||
return new ObservableConfigProxy(this, key);
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
getConfigArray(key: string): Config[] {
|
||||
return this.select(true).getConfigArray(key);
|
||||
}
|
||||
getOptionalConfigArray(key: string): Config[] | undefined {
|
||||
return this.select(false)?.getOptionalConfigArray(key);
|
||||
}
|
||||
getNumber(key: string): number {
|
||||
return this.select(true).getNumber(key);
|
||||
}
|
||||
getOptionalNumber(key: string): number | undefined {
|
||||
return this.select(false)?.getOptionalNumber(key);
|
||||
}
|
||||
getBoolean(key: string): boolean {
|
||||
return this.select(true).getBoolean(key);
|
||||
}
|
||||
getOptionalBoolean(key: string): boolean | undefined {
|
||||
return this.select(false)?.getOptionalBoolean(key);
|
||||
}
|
||||
getString(key: string): string {
|
||||
return this.select(true).getString(key);
|
||||
}
|
||||
getOptionalString(key: string): string | undefined {
|
||||
return this.select(false)?.getOptionalString(key);
|
||||
}
|
||||
getStringArray(key: string): string[] {
|
||||
return this.select(true).getStringArray(key);
|
||||
}
|
||||
getOptionalStringArray(key: string): string[] | undefined {
|
||||
return this.select(false)?.getOptionalStringArray(key);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Copyright 2020 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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 { loadConfigSchema } from '@backstage/config-loader';
|
||||
import { mockServices } from '@backstage/backend-test-utils';
|
||||
import { createConfigSecretEnumerator } from './config';
|
||||
|
||||
describe('createConfigSecretEnumerator', () => {
|
||||
it('should enumerate secrets', async () => {
|
||||
const logger = mockServices.logger.mock();
|
||||
|
||||
const enumerate = await createConfigSecretEnumerator({
|
||||
logger,
|
||||
});
|
||||
const secrets = enumerate(
|
||||
mockServices.rootConfig({
|
||||
data: {
|
||||
backend: { auth: { keys: [{ secret: 'my-secret-password' }] } },
|
||||
},
|
||||
}),
|
||||
);
|
||||
expect(Array.from(secrets)).toEqual(['my-secret-password']);
|
||||
}, 20_000); // Bit higher timeout since we're loading all config schemas in the repo
|
||||
|
||||
it('should enumerate secrets with explicit schema', async () => {
|
||||
const logger = mockServices.logger.mock();
|
||||
|
||||
const enumerate = await createConfigSecretEnumerator({
|
||||
logger,
|
||||
schema: await loadConfigSchema({
|
||||
serialized: {
|
||||
schemas: [
|
||||
{
|
||||
value: {
|
||||
type: 'object',
|
||||
properties: {
|
||||
secret: {
|
||||
visibility: 'secret',
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
},
|
||||
path: '/mock',
|
||||
},
|
||||
],
|
||||
backstageConfigSchemaVersion: 1,
|
||||
},
|
||||
}),
|
||||
});
|
||||
|
||||
const secrets = enumerate(
|
||||
mockServices.rootConfig({
|
||||
data: {
|
||||
secret: 'my-secret',
|
||||
other: 'not-secret',
|
||||
},
|
||||
}),
|
||||
);
|
||||
expect(Array.from(secrets)).toEqual(['my-secret']);
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,133 @@
|
||||
/*
|
||||
* Copyright 2020 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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 { LoggerService } from '@backstage/backend-plugin-api';
|
||||
import { AppConfig, Config } from '@backstage/config';
|
||||
import { setRootLoggerRedactionList } from '../logging/createRootLogger';
|
||||
// eslint-disable-next-line @backstage/no-relative-monorepo-imports
|
||||
import { createConfigSecretEnumerator as _createConfigSecretEnumerator } from '../../../../backend-defaults/src/entrypoints/rootConfig/createConfigSecretEnumerator';
|
||||
|
||||
import { resolve as resolvePath } from 'path';
|
||||
import parseArgs from 'minimist';
|
||||
import { findPaths } from '@backstage/cli-common';
|
||||
import {
|
||||
loadConfig,
|
||||
ConfigTarget,
|
||||
LoadConfigOptionsRemote,
|
||||
} from '@backstage/config-loader';
|
||||
import { ConfigReader } from '@backstage/config';
|
||||
import { ObservableConfigProxy } from './ObservableConfigProxy';
|
||||
import { isValidUrl } from './urls';
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @deprecated Please migrate to the new backend system and use `coreServices.rootConfig` instead, or the {@link @backstage/config-loader#ConfigSources} facilities if required.
|
||||
*/
|
||||
export const createConfigSecretEnumerator = _createConfigSecretEnumerator;
|
||||
|
||||
/**
|
||||
* Load configuration for a Backend.
|
||||
*
|
||||
* This function should only be called once, during the initialization of the backend.
|
||||
*
|
||||
* @public
|
||||
* @deprecated Please migrate to the new backend system and use `coreServices.rootConfig` instead, or the {@link @backstage/config-loader#ConfigSources} facilities if required.
|
||||
*/
|
||||
export async function loadBackendConfig(options: {
|
||||
logger: LoggerService;
|
||||
// process.argv or any other overrides
|
||||
remote?: LoadConfigOptionsRemote;
|
||||
additionalConfigs?: AppConfig[];
|
||||
argv: string[];
|
||||
watch?: boolean;
|
||||
}): Promise<Config> {
|
||||
const secretEnumerator = await createConfigSecretEnumerator({
|
||||
logger: options.logger,
|
||||
});
|
||||
const { config } = await newLoadBackendConfig(options);
|
||||
|
||||
setRootLoggerRedactionList(secretEnumerator(config));
|
||||
config.subscribe?.(() =>
|
||||
setRootLoggerRedactionList(secretEnumerator(config)),
|
||||
);
|
||||
|
||||
return config;
|
||||
}
|
||||
|
||||
async function newLoadBackendConfig(options: {
|
||||
remote?: LoadConfigOptionsRemote;
|
||||
argv: string[];
|
||||
additionalConfigs?: AppConfig[];
|
||||
watch?: boolean;
|
||||
}): Promise<{ config: Config }> {
|
||||
const args = parseArgs(options.argv);
|
||||
|
||||
const configTargets: ConfigTarget[] = [args.config ?? []]
|
||||
.flat()
|
||||
.map(arg => (isValidUrl(arg) ? { url: arg } : { path: resolvePath(arg) }));
|
||||
|
||||
/* eslint-disable-next-line no-restricted-syntax */
|
||||
const paths = findPaths(__dirname);
|
||||
|
||||
let currentCancelFunc: (() => void) | undefined = undefined;
|
||||
|
||||
const config = new ObservableConfigProxy();
|
||||
const { appConfigs } = await loadConfig({
|
||||
configRoot: paths.targetRoot,
|
||||
configTargets: configTargets,
|
||||
remote: options.remote,
|
||||
watch:
|
||||
options.watch ?? true
|
||||
? {
|
||||
onChange(newConfigs) {
|
||||
console.info(
|
||||
`Reloaded config from ${newConfigs
|
||||
.map(c => c.context)
|
||||
.join(', ')}`,
|
||||
);
|
||||
const configsToMerge = [...newConfigs];
|
||||
if (options.additionalConfigs) {
|
||||
configsToMerge.push(...options.additionalConfigs);
|
||||
}
|
||||
config.setConfig(ConfigReader.fromConfigs(configsToMerge));
|
||||
},
|
||||
stopSignal: new Promise(resolve => {
|
||||
if (currentCancelFunc) {
|
||||
currentCancelFunc();
|
||||
}
|
||||
currentCancelFunc = resolve;
|
||||
|
||||
// TODO(Rugvip): We keep this here for now to avoid breaking the old system
|
||||
// since this is re-used in backend-common
|
||||
if (module.hot) {
|
||||
module.hot.addDisposeHandler(resolve);
|
||||
}
|
||||
}),
|
||||
}
|
||||
: undefined,
|
||||
});
|
||||
console.info(
|
||||
`Loaded config from ${appConfigs.map(c => c.context).join(', ')}`,
|
||||
);
|
||||
|
||||
const finalAppConfigs = [...appConfigs];
|
||||
if (options.additionalConfigs) {
|
||||
finalAppConfigs.push(...options.additionalConfigs);
|
||||
}
|
||||
config.setConfig(ConfigReader.fromConfigs(finalAppConfigs));
|
||||
|
||||
return { config };
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright 2024 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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.
|
||||
*/
|
||||
|
||||
export { loadBackendConfig, createConfigSecretEnumerator } from './config';
|
||||
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Copyright 2021 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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 { isValidUrl } from './urls';
|
||||
|
||||
describe('isValidUrl', () => {
|
||||
it('should return true for url', () => {
|
||||
const validUrl = isValidUrl('http://some.valid.url');
|
||||
expect(validUrl).toBe(true);
|
||||
});
|
||||
|
||||
it('should return false for absolute path', () => {
|
||||
const validUrl = isValidUrl('/some/absolute/path');
|
||||
expect(validUrl).toBe(false);
|
||||
});
|
||||
|
||||
it('should return false for relative path', () => {
|
||||
const validUrl = isValidUrl('../some/relative/path');
|
||||
expect(validUrl).toBe(false);
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Copyright 2021 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License 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.
|
||||
*/
|
||||
|
||||
export function isValidUrl(url: string): boolean {
|
||||
try {
|
||||
// eslint-disable-next-line no-new
|
||||
new URL(url);
|
||||
return true;
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user