-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Migrate base path APIs and UiSettings client to new platform #22694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
d02cd0e
68f7f01
743b553
9618563
df345e1
05d9b8e
b772a7d
4691b7b
dc9f43b
dc5ddc7
02f0cc9
63bcb4d
f5e6643
1bcd411
60d8924
cf2e10f
a7db8fd
ea4cf06
ddbd2b8
8dec538
d2f5816
aa60f3e
aac0a7c
19eb622
b1a6ddf
596ca89
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| /* | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. licenses this file to you 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 { BasePathService } from './base_path_service'; | ||
|
|
||
| function setup(options: any = {}) { | ||
| const injectedBasePath: string = | ||
| options.injectedBasePath === undefined ? '/foo/bar' : options.injectedBasePath; | ||
|
|
||
| const service = new BasePathService(); | ||
|
|
||
| const injectedMetadata = { | ||
| getBasePath: jest.fn().mockReturnValue(injectedBasePath), | ||
| } as any; | ||
|
|
||
| const startContract = service.start({ | ||
| injectedMetadata, | ||
| }); | ||
|
|
||
| return { | ||
| service, | ||
| startContract, | ||
| injectedBasePath, | ||
| }; | ||
| } | ||
|
|
||
| describe('startContract.get()', () => { | ||
| it('returns an empty string if no basePath is injected', () => { | ||
| const { startContract } = setup({ injectedBasePath: null }); | ||
| expect(startContract.get()).toBe(''); | ||
| }); | ||
|
|
||
| it('returns the injected basePath', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.get()).toBe('/foo/bar'); | ||
| }); | ||
| }); | ||
|
|
||
| describe('startContract.addToPath()', () => { | ||
| it('adds the base path to the path if it is relative and starts with a slash', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.addToPath('/a/b')).toBe('/foo/bar/a/b'); | ||
| }); | ||
|
|
||
| it('leaves the query string and hash of path unchanged', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.addToPath('/a/b?x=y#c/d/e')).toBe('/foo/bar/a/b?x=y#c/d/e'); | ||
| }); | ||
|
|
||
| it('returns the path unchanged if it does not start with a slash', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.addToPath('a/b')).toBe('a/b'); | ||
| }); | ||
|
|
||
| it('returns the path unchanged it it has a hostname', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.addToPath('http://localhost:5601/a/b')).toBe('http://localhost:5601/a/b'); | ||
| }); | ||
| }); | ||
|
|
||
| describe('startContract.removeFromPath()', () => { | ||
| it('removes the basePath if relative path starts with it', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.removeFromPath('/foo/bar/a/b')).toBe('/a/b'); | ||
| }); | ||
|
|
||
| it('leaves query string and hash intact', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.removeFromPath('/foo/bar/a/b?c=y#1234')).toBe('/a/b?c=y#1234'); | ||
| }); | ||
|
|
||
| it('ignores urls with hostnames', () => { | ||
| const { startContract } = setup(); | ||
| expect(startContract.removeFromPath('http://localhost:5601/foo/bar/a/b')).toBe( | ||
| 'http://localhost:5601/foo/bar/a/b' | ||
| ); | ||
| }); | ||
| }); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| /* | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. licenses this file to you 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 { InjectedMetadataStartContract } from '../injected_metadata'; | ||
| import { modifyUrl } from '../utils'; | ||
|
|
||
| interface Deps { | ||
| injectedMetadata: InjectedMetadataStartContract; | ||
| } | ||
|
|
||
| export class BasePathService { | ||
| public start({ injectedMetadata }: Deps) { | ||
| const basePath = injectedMetadata.getBasePath() || ''; | ||
|
|
||
| return { | ||
| /** | ||
| * Get the current basePath as defined by the server | ||
| */ | ||
| get() { | ||
| return basePath; | ||
| }, | ||
|
|
||
| /** | ||
| * Add the current basePath to a path string. | ||
| * @param path a relative url including the leading `/`, otherwise it will be returned without modification | ||
| */ | ||
| addToPath(path: string) { | ||
| return modifyUrl(path, parts => { | ||
| if (!parts.hostname && parts.pathname && parts.pathname.startsWith('/')) { | ||
| parts.pathname = `${basePath}${parts.pathname}`; | ||
| } | ||
| }); | ||
| }, | ||
|
|
||
| /** | ||
| * Remove the basePath from a path that starts with it | ||
| * @param path a relative url that starts with the basePath, which will be stripped | ||
| */ | ||
| removeFromPath(path: string) { | ||
| if (!basePath) { | ||
| return path; | ||
| } | ||
|
|
||
| return path.startsWith(basePath) ? path.slice(basePath.length) : path; | ||
|
spalger marked this conversation as resolved.
Outdated
|
||
| }, | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| export type BasePathStartContract = ReturnType<BasePathService['start']>; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| /* | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. licenses this file to you 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 { BasePathService, BasePathStartContract } from './base_path_service'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,7 @@ export interface InjectedMetadataParams { | |
| injectedMetadata: { | ||
| version: string; | ||
| buildNumber: number; | ||
| basePath: string; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. question: |
||
| legacyMetadata: { | ||
| [key: string]: any; | ||
| }; | ||
|
|
@@ -42,6 +43,14 @@ export class InjectedMetadataService { | |
|
|
||
| public start() { | ||
| return { | ||
| getBasePath: () => { | ||
| return this.state.basePath; | ||
| }, | ||
|
|
||
| getKibanaVersion: () => { | ||
| return this.getKibanaVersion(); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. note: haha, my IDE mistakenly marks this as a recursive call :) |
||
| }, | ||
|
|
||
| getLegacyMetadata: () => { | ||
| return this.state.legacyMetadata; | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.