Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
152fdaf5
Commit
152fdaf5
authored
6 years ago
by
Tomas Restrepo
Browse files
Options
Download
Patches
Plain Diff
Only propagate query string if refURL is relative to baseURL
parent
db692001
release-2.17
dev-v2
release-2.11
release-2.12
release-2.13
release-2.14
release-2.15
release-2.16
v2.17.0
v2.17.0-rc.1
v2.16.12
v2.16.11
v2.16.10
v2.16.9
v2.16.8
v2.16.7
v2.16.6
v2.16.5
v2.16.4
v2.16.3
v2.16.2
v2.16.1
v2.16.0
v2.16.0-rc.2
v2.16.0-rc.1
v2.15.2
v2.15.1
v2.15.0
v2.15.0-rc.2
v2.15.0-rc.1
v2.14.3
v2.14.2
v2.14.1
v2.14.0
v2.14.0-rc.2
v2.14.0-rc.1
v2.13.1
v2.13.1-rc.1
v2.13.0
v2.13.0-rc.2
v2.13.0-rc.1
v2.12.3
v2.12.2
v2.12.1
v2.12.0
v2.12.0-rc.2
v2.12.0-rc.1
v2.11.0
v2.11.0-rc.4
v2.11.0-rc.3
v2.11.0-rc.2
v2.11.0-rc.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pkg/repo/chartrepo.go
+6
-1
pkg/repo/chartrepo.go
pkg/repo/chartrepo_test.go
+8
-0
pkg/repo/chartrepo_test.go
with
14 additions
and
1 deletion
+14
-1
pkg/repo/chartrepo.go
+
6
−
1
View file @
152fdaf5
...
...
@@ -270,8 +270,13 @@ func ResolveReferenceURL(baseURL, refURL string) (string, error) {
return
""
,
fmt
.
Errorf
(
"failed to parse %s as URL: %v"
,
refURL
,
err
)
}
// if the base URL contains query string parameters,
// propagate them to the child URL but only if the
// refURL is relative to baseURL
resolvedURL
:=
parsedBaseURL
.
ResolveReference
(
parsedRefURL
)
resolvedURL
.
RawQuery
=
parsedBaseURL
.
RawQuery
if
(
resolvedURL
.
Hostname
()
==
parsedBaseURL
.
Hostname
())
&&
(
resolvedURL
.
Port
()
==
parsedBaseURL
.
Port
())
{
resolvedURL
.
RawQuery
=
parsedBaseURL
.
RawQuery
}
return
resolvedURL
.
String
(),
nil
}
This diff is collapsed.
Click to expand it.
pkg/repo/chartrepo_test.go
+
8
−
0
View file @
152fdaf5
...
...
@@ -302,4 +302,12 @@ func TestResolveReferenceURL(t *testing.T) {
if
chartURL
!=
"https://kubernetes-charts.storage.googleapis.com/nginx-0.2.0.tgz"
{
t
.
Errorf
(
"%s"
,
chartURL
)
}
chartURL
,
err
=
ResolveReferenceURL
(
"http://localhost:8123/?querystring"
,
"https://kubernetes-charts.storage.googleapis.com/nginx-0.2.0.tgz"
)
if
err
!=
nil
{
t
.
Errorf
(
"%s"
,
err
)
}
if
chartURL
!=
"https://kubernetes-charts.storage.googleapis.com/nginx-0.2.0.tgz"
{
t
.
Errorf
(
"%s contains query string from base URL when it shouldn't"
,
chartURL
)
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets