1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
/*
* SonarQube
* Copyright (C) 2009-2018 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { stringify } from 'querystring';
import { omitBy, isNil } from 'lodash';
import {
isShortLivingBranch,
isPullRequest,
isLongLivingBranch,
getBranchLikeQuery
} from './branches';
import { getProfilePath } from '../apps/quality-profiles/utils';
import { BranchLike, HomePage, HomePageType } from '../app/types';
interface Query {
[x: string]: string | undefined;
}
export interface Location {
pathname: string;
query?: Query;
}
export function getBaseUrl(): string {
return (window as any).baseUrl;
}
export function getHostUrl(): string {
return window.location.origin + getBaseUrl();
}
export function getPathUrlAsString(path: Location): string {
return `${getBaseUrl()}${path.pathname}?${stringify(omitBy(path.query, isNil))}`;
}
export function getProjectUrl(project: string, branch?: string): Location {
return { pathname: '/dashboard', query: { id: project, branch } };
}
export function getPortfolioUrl(key: string): Location {
return { pathname: '/portfolio', query: { id: key } };
}
export function getPortfolioAdminUrl(key: string, qualifier: string) {
return { pathname: '/project/admin/extension/governance/console', query: { id: key, qualifier } };
}
export function getComponentBackgroundTaskUrl(componentKey: string, status?: string): Location {
return { pathname: '/project/background_tasks', query: { id: componentKey, status } };
}
export function getBranchLikeUrl(project: string, branchLike?: BranchLike): Location {
if (isPullRequest(branchLike)) {
return getPullRequestUrl(project, branchLike.key);
} else if (isShortLivingBranch(branchLike)) {
return getShortLivingBranchUrl(project, branchLike.name);
} else if (isLongLivingBranch(branchLike)) {
return getLongLivingBranchUrl(project, branchLike.name);
} else {
return getProjectUrl(project);
}
}
export function getLongLivingBranchUrl(project: string, branch: string): Location {
return { pathname: '/dashboard', query: { branch, id: project } };
}
export function getShortLivingBranchUrl(project: string, branch: string): Location {
return { pathname: '/project/issues', query: { branch, id: project, resolved: 'false' } };
}
export function getPullRequestUrl(project: string, pullRequest: string): Location {
return { pathname: '/project/issues', query: { id: project, pullRequest, resolved: 'false' } };
}
/**
* Generate URL for a global issues page
*/
export function getIssuesUrl(query: Query, organization?: string): Location {
const pathname = organization ? `/organizations/${organization}/issues` : '/issues';
return { pathname, query };
}
/**
* Generate URL for a component's issues page
*/
export function getComponentIssuesUrl(componentKey: string, query?: Query): Location {
return { pathname: '/project/issues', query: { ...(query || {}), id: componentKey } };
}
/**
* Generate URL for a component's drilldown page
*/
export function getComponentDrilldownUrl(options: {
componentKey: string;
metric: string;
branchLike?: BranchLike;
selectionKey?: string;
treemapView?: boolean;
}): Location {
const { componentKey, metric, branchLike, selectionKey, treemapView } = options;
const query: Query = { id: componentKey, metric, ...getBranchLikeQuery(branchLike) };
if (treemapView) {
query.view = 'treemap';
}
if (selectionKey) {
query.selected = selectionKey;
}
return { pathname: '/component_measures', query };
}
export function getComponentDrilldownUrlWithSelection(
componentKey: string,
selectionKey: string,
metric: string,
branchLike?: BranchLike
): Location {
return getComponentDrilldownUrl({ componentKey, selectionKey, metric, branchLike });
}
export function getMeasureTreemapUrl(componentKey: string, metric: string) {
return getComponentDrilldownUrl({ componentKey, metric, treemapView: true });
}
export function getActivityUrl(component: string, branchLike?: BranchLike) {
return {
pathname: '/project/activity',
query: { id: component, ...getBranchLikeQuery(branchLike) }
};
}
/**
* Generate URL for a component's measure history
*/
export function getMeasureHistoryUrl(component: string, metric: string, branchLike?: BranchLike) {
return {
pathname: '/project/activity',
query: {
id: component,
graph: 'custom',
custom_metrics: metric,
...getBranchLikeQuery(branchLike)
}
};
}
/**
* Generate URL for a component's permissions page
*/
export function getComponentPermissionsUrl(componentKey: string): Location {
return { pathname: '/project_roles', query: { id: componentKey } };
}
/**
* Generate URL for a quality profile
*/
export function getQualityProfileUrl(
name: string,
language: string,
organization?: string | null
): Location {
return getProfilePath(name, language, organization);
}
export function getQualityGateUrl(key: string, organization?: string | null): Location {
return {
pathname: getQualityGatesUrl(organization).pathname + '/show/' + encodeURIComponent(key)
};
}
export function getQualityGatesUrl(organization?: string | null): Location {
return {
pathname:
(organization ? '/organizations/' + encodeURIComponent(organization) : '') + '/quality_gates'
};
}
/**
* Generate URL for the rules page
*/
export function getRulesUrl(query: Query, organization: string | null | undefined): Location {
const pathname = organization ? `/organizations/${organization}/rules` : '/coding_rules';
return { pathname, query };
}
/**
* Generate URL for the rules page filtering only active deprecated rules
*/
export function getDeprecatedActiveRulesUrl(
query: Query = {},
organization: string | null | undefined
): Location {
const baseQuery = { activation: 'true', statuses: 'DEPRECATED' };
return getRulesUrl({ ...query, ...baseQuery }, organization);
}
export function getRuleUrl(rule: string, organization: string | undefined) {
/* eslint-disable camelcase */
return getRulesUrl({ open: rule, rule_key: rule }, organization);
/* eslint-enable camelcase */
}
export function getMarkdownHelpUrl(): string {
return getBaseUrl() + '/markdown/help';
}
export function getCodeUrl(project: string, branchLike?: BranchLike, selected?: string) {
return { pathname: '/code', query: { id: project, ...getBranchLikeQuery(branchLike), selected } };
}
export function getOrganizationUrl(organization: string) {
return `/organizations/${organization}`;
}
export function getHomePageUrl(homepage: HomePage) {
switch (homepage.type) {
case HomePageType.Application:
return homepage.branch
? getProjectUrl(homepage.component, homepage.branch)
: getProjectUrl(homepage.component);
case HomePageType.Project:
return homepage.branch
? getLongLivingBranchUrl(homepage.component, homepage.branch)
: getProjectUrl(homepage.component);
case HomePageType.Organization:
return getOrganizationUrl(homepage.organization);
case HomePageType.Portfolio:
return getPortfolioUrl(homepage.component);
case HomePageType.Portfolios:
return '/portfolios';
case HomePageType.MyProjects:
return '/projects';
case HomePageType.Issues:
case HomePageType.MyIssues:
return { pathname: '/issues', query: { resolved: 'false' } };
}
// should never happen, but just in case...
return '/projects';
}
export function isUrl(url: string) {
if (!URL) {
const elem = document.createElement('a');
elem.href = url;
return !!(elem.host && elem.hostname && elem.protocol);
}
try {
const parsedUrl = new URL(url);
return url.includes(parsedUrl.host);
} catch (error) {
return false;
}
}
|