Commit 04519162 authored by Fatih Acet's avatar Fatih Acet

Merge branch 'fix-api-ide-relative-url-root' into 'master'

Fix API and IDE path with `/` relative_url_root

See merge request gitlab-org/gitlab-ce!27635
parents 66ff5f3d 4abd4360
import $ from 'jquery'; import $ from 'jquery';
import _ from 'underscore'; import _ from 'underscore';
import axios from './lib/utils/axios_utils'; import axios from './lib/utils/axios_utils';
import { joinPaths } from './lib/utils/url_utility';
const Api = { const Api = {
groupsPath: '/api/:version/groups.json', groupsPath: '/api/:version/groups.json',
...@@ -339,11 +340,7 @@ const Api = { ...@@ -339,11 +340,7 @@ const Api = {
}, },
buildUrl(url) { buildUrl(url) {
let urlRoot = ''; return joinPaths(gon.relative_url_root || '', url.replace(':version', gon.api_version));
if (gon.relative_url_root != null) {
urlRoot = gon.relative_url_root;
}
return urlRoot + url.replace(':version', gon.api_version);
}, },
}; };
......
import Vue from 'vue'; import Vue from 'vue';
import VueRouter from 'vue-router'; import VueRouter from 'vue-router';
import { join as joinPath } from 'path'; import { joinPaths } from '~/lib/utils/url_utility';
import flash from '~/flash'; import flash from '~/flash';
import store from './stores'; import store from './stores';
...@@ -34,7 +34,7 @@ const EmptyRouterComponent = { ...@@ -34,7 +34,7 @@ const EmptyRouterComponent = {
const router = new VueRouter({ const router = new VueRouter({
mode: 'history', mode: 'history',
base: `${gon.relative_url_root}/-/ide/`, base: joinPaths(gon.relative_url_root || '', '/-/ide/'),
routes: [ routes: [
{ {
path: '/project/:namespace+/:project', path: '/project/:namespace+/:project',
...@@ -46,11 +46,11 @@ const router = new VueRouter({ ...@@ -46,11 +46,11 @@ const router = new VueRouter({
}, },
{ {
path: ':targetmode(edit|tree|blob)/:branchid+/', path: ':targetmode(edit|tree|blob)/:branchid+/',
redirect: to => joinPath(to.path, '/-/'), redirect: to => joinPaths(to.path, '/-/'),
}, },
{ {
path: ':targetmode(edit|tree|blob)', path: ':targetmode(edit|tree|blob)',
redirect: to => joinPath(to.path, '/master/-/'), redirect: to => joinPaths(to.path, '/master/-/'),
}, },
{ {
path: 'merge_requests/:mrid', path: 'merge_requests/:mrid',
...@@ -58,7 +58,7 @@ const router = new VueRouter({ ...@@ -58,7 +58,7 @@ const router = new VueRouter({
}, },
{ {
path: '', path: '',
redirect: to => joinPath(to.path, '/edit/master/-/'), redirect: to => joinPaths(to.path, '/edit/master/-/'),
}, },
], ],
}, },
......
...@@ -120,3 +120,5 @@ export function webIDEUrl(route = undefined) { ...@@ -120,3 +120,5 @@ export function webIDEUrl(route = undefined) {
} }
return returnUrl; return returnUrl;
} }
export { join as joinPaths } from 'path';
---
title: Fix FE API and IDE handling of '/' relative_url_root
merge_request: 27635
author:
type: fixed
...@@ -4,7 +4,7 @@ import Api from '~/api'; ...@@ -4,7 +4,7 @@ import Api from '~/api';
describe('Api', () => { describe('Api', () => {
const dummyApiVersion = 'v3000'; const dummyApiVersion = 'v3000';
const dummyUrlRoot = 'http://host.invalid'; const dummyUrlRoot = '/gitlab';
const dummyGon = { const dummyGon = {
api_version: dummyApiVersion, api_version: dummyApiVersion,
relative_url_root: dummyUrlRoot, relative_url_root: dummyUrlRoot,
...@@ -32,6 +32,18 @@ describe('Api', () => { ...@@ -32,6 +32,18 @@ describe('Api', () => {
expect(builtUrl).toEqual(expectedOutput); expect(builtUrl).toEqual(expectedOutput);
}); });
[null, '', '/'].forEach(root => {
it(`works when relative_url_root is ${root}`, () => {
window.gon.relative_url_root = root;
const input = '/api/:version/foo/bar';
const expectedOutput = `/api/${dummyApiVersion}/foo/bar`;
const builtUrl = Api.buildUrl(input);
expect(builtUrl).toEqual(expectedOutput);
});
});
}); });
describe('group', () => { describe('group', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment