Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
a293f94e
Commit
a293f94e
authored
Feb 01, 2016
by
Matt Butcher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Streamline local file handling, test Windows files
parent
204f9872
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
24 deletions
+70
-24
url.go
url/url.go
+51
-24
url_test.go
url/url_test.go
+19
-0
No files found.
url/url.go
View file @
a293f94e
/*
Copyright 2015 The Kubernetes Authors All rights reserved.
Licensed 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.
*/
/* package URL handles Helm-DM URLs
/* package URL handles Helm-DM URLs
Helm uses three kinds of URLs:
Helm uses three kinds of URLs:
...
@@ -14,11 +30,16 @@ import (
...
@@ -14,11 +30,16 @@ import (
"errors"
"errors"
"fmt"
"fmt"
"net/url"
"net/url"
"path/filepath"
"regexp"
"regexp"
"strings"
"strings"
)
)
// ErrLocal indicates that a local URL was used as a remote URL.
var
ErrLocal
=
errors
.
New
(
"cannot use local URL as remote"
)
// ErrRemote indicates that a remote URL was used as a local URL.
var
ErrRemote
=
errors
.
New
(
"cannot use remote URL as local"
)
const
(
const
(
SchemeHTTP
=
"http"
SchemeHTTP
=
"http"
SchemeHTTPS
=
"https"
SchemeHTTPS
=
"https"
...
@@ -61,31 +82,23 @@ type URL struct {
...
@@ -61,31 +82,23 @@ type URL struct {
func
Parse
(
path
string
)
(
*
URL
,
error
)
{
func
Parse
(
path
string
)
(
*
URL
,
error
)
{
// Check for absolute or relative path.
if
path
[
0
]
==
'.'
||
path
[
0
]
==
'/'
{
return
&
URL
{
LocalRef
:
path
,
isLocal
:
true
,
original
:
path
,
},
nil
}
// TODO: Do we want to support file:///foo/bar.tgz?
// TODO: Do we want to support file:///foo/bar.tgz?
if
strings
.
HasPrefix
(
path
,
SchemeFile
+
":"
)
{
//
if strings.HasPrefix(path, SchemeFile+":") {
path
:=
strings
.
TrimPrefix
(
path
,
SchemeFile
+
":"
)
//
path := strings.TrimPrefix(path, SchemeFile+":")
return
&
URL
{
//
return &URL{
LocalRef
:
filepath
.
Clean
(
path
),
//
LocalRef: filepath.Clean(path),
isLocal
:
true
,
//
isLocal: true,
original
:
path
,
//
original: path,
},
nil
//
}, nil
}
//
}
u
,
err
:=
url
.
Parse
(
path
)
u
,
err
:=
url
.
Parse
(
path
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
// Short name
if
u
.
Scheme
==
SchemeHelm
{
switch
u
.
Scheme
{
case
SchemeHelm
:
parts
:=
strings
.
SplitN
(
u
.
Opaque
,
"/"
,
3
)
parts
:=
strings
.
SplitN
(
u
.
Opaque
,
"/"
,
3
)
if
len
(
parts
)
<
3
{
if
len
(
parts
)
<
3
{
return
nil
,
fmt
.
Errorf
(
"both bucket and chart name are required in %s: %s"
,
path
,
u
.
Path
)
return
nil
,
fmt
.
Errorf
(
"both bucket and chart name are required in %s: %s"
,
path
,
u
.
Path
)
...
@@ -99,8 +112,8 @@ func Parse(path string) (*URL, error) {
...
@@ -99,8 +112,8 @@ func Parse(path string) (*URL, error) {
Version
:
u
.
Fragment
,
Version
:
u
.
Fragment
,
original
:
path
,
original
:
path
,
},
nil
},
nil
}
case
SchemeHTTP
,
SchemeHTTPS
:
// Long name
// Long name
parts
:=
strings
.
SplitN
(
u
.
Path
,
"/"
,
3
)
parts
:=
strings
.
SplitN
(
u
.
Path
,
"/"
,
3
)
if
len
(
parts
)
<
3
{
if
len
(
parts
)
<
3
{
...
@@ -120,6 +133,23 @@ func Parse(path string) (*URL, error) {
...
@@ -120,6 +133,23 @@ func Parse(path string) (*URL, error) {
Version
:
version
,
Version
:
version
,
original
:
path
,
original
:
path
,
},
nil
},
nil
case
SchemeFile
:
return
&
URL
{
LocalRef
:
u
.
Path
,
isLocal
:
true
,
original
:
path
,
},
nil
default
:
// In this case...
// - if the path is relative or absolute, return it as-is.
// - if it's a URL of an unknown scheme, return it as is.
return
&
URL
{
LocalRef
:
path
,
isLocal
:
true
,
original
:
path
,
},
nil
}
}
}
// IsLocal returns true if this is a local path.
// IsLocal returns true if this is a local path.
...
@@ -134,9 +164,6 @@ func (u *URL) Local() (string, error) {
...
@@ -134,9 +164,6 @@ func (u *URL) Local() (string, error) {
return
u
.
LocalRef
,
nil
return
u
.
LocalRef
,
nil
}
}
var
ErrLocal
=
errors
.
New
(
"cannot use local URL as remote"
)
var
ErrRemote
=
errors
.
New
(
"cannot use remote URL as local"
)
// Short returns a short form URL.
// Short returns a short form URL.
//
//
// This will return an error if the URL references a local chart.
// This will return an error if the URL references a local chart.
...
...
url/url_test.go
View file @
a293f94e
/*
Copyright 2015 The Kubernetes Authors All rights reserved.
Licensed 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.
*/
package
url
package
url
import
(
import
(
...
@@ -129,6 +145,9 @@ func TestLocal(t *testing.T) {
...
@@ -129,6 +145,9 @@ func TestLocal(t *testing.T) {
"file:///foo/bar"
:
"/foo/bar"
,
"file:///foo/bar"
:
"/foo/bar"
,
"./foo/bar"
:
"./foo/bar"
,
"./foo/bar"
:
"./foo/bar"
,
"/foo/bar"
:
"/foo/bar"
,
"/foo/bar"
:
"/foo/bar"
,
"file://localhost/etc/fstab"
:
"/etc/fstab"
,
// https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/
"file:///C:/WINDOWS/clock.avi"
:
"/C:/WINDOWS/clock.avi"
,
}
}
for
start
,
expect
:=
range
tests
{
for
start
,
expect
:=
range
tests
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment