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
|
/*
* SonarQube
* Copyright (C) 2009-2020 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 { getBaseUrl, Location } from 'sonar-ui-common/helpers/urls';
import { getProfilePath } from '../apps/quality-profiles/utils';
import { BranchLike } from '../types/branch-like';
import { GraphType } from '../types/project-activity';
import { getBranchLikeQuery, isBranch, isMainBranch, isPullRequest } from './branch-like';
type Query = Location['query'];
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 (isBranch(branchLike) && !isMainBranch(branchLike)) {
return getBranchUrl(project, branchLike.name);
} else {
return getProjectUrl(project);
}
}
export function getBranchUrl(project: string, branch: string): Location {
return { pathname: '/dashboard', query: { branch, id: project } };
}
export function getPullRequestUrl(project: string, pullRequest: string): Location {
return { pathname: '/dashboard', query: { id: project, pullRequest } };
}
/**
* 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 security hotspot page
*/
export function getComponentSecurityHotspotsUrl(componentKey: string, query: Query = {}): Location {
return { pathname: '/security_hotspots', 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;
listView?: boolean;
}): Location {
const { componentKey, metric, branchLike, selectionKey, treemapView, listView } = options;
const query: Query = { id: componentKey, metric, ...getBranchLikeQuery(branchLike) };
if (treemapView) {
query.view = 'treemap';
}
if (listView) {
query.view = 'list';
}
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, graph?: GraphType) {
return {
pathname: '/project/activity',
query: { id: component, graph, ...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) {
return getRulesUrl({ open: rule, rule_key: rule }, organization);
}
export function getMarkdownHelpUrl(): string {
return getBaseUrl() + '/markdown/help';
}
export function getCodeUrl(
project: string,
branchLike?: BranchLike,
selected?: string,
line?: number
) {
return {
pathname: '/code',
query: { id: project, ...getBranchLikeQuery(branchLike), selected, line }
};
}
export function getOrganizationUrl(organization: string) {
return `/organizations/${organization}`;
}
export function getHomePageUrl(homepage: T.HomePage) {
switch (homepage.type) {
case 'APPLICATION':
return homepage.branch
? getProjectUrl(homepage.component, homepage.branch)
: getProjectUrl(homepage.component);
case 'PROJECT':
return homepage.branch
? getBranchUrl(homepage.component, homepage.branch)
: getProjectUrl(homepage.component);
case 'ORGANIZATION':
return getOrganizationUrl(homepage.organization);
case 'PORTFOLIO':
return getPortfolioUrl(homepage.component);
case 'PORTFOLIOS':
return '/portfolios';
case 'MY_PROJECTS':
return '/projects';
case 'ISSUES':
case 'MY_ISSUES':
return { pathname: '/issues', query: { resolved: 'false' } };
}
// should never happen, but just in case...
return '/projects';
}
|