File: scpurl.go

package info (click to toggle)
singularity-container 4.1.5%2Bds4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 43,876 kB
  • sloc: asm: 14,840; sh: 3,190; ansic: 1,751; awk: 414; makefile: 413; python: 99
file content (43 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (3)
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
package sshutil

import (
	"errors"
	"fmt"
	"net/url"
	"regexp"
)

var gitSSHRegex = regexp.MustCompile("^([a-zA-Z0-9-_]+)@([a-zA-Z0-9-.]+):(.*?)(?:#(.*))?$")

func IsImplicitSSHTransport(s string) bool {
	return gitSSHRegex.MatchString(s)
}

type SCPStyleURL struct {
	User *url.Userinfo
	Host string

	Path     string
	Fragment string
}

func ParseSCPStyleURL(raw string) (*SCPStyleURL, error) {
	matches := gitSSHRegex.FindStringSubmatch(raw)
	if matches == nil {
		return nil, errors.New("invalid scp-style url")
	}
	return &SCPStyleURL{
		User:     url.User(matches[1]),
		Host:     matches[2],
		Path:     matches[3],
		Fragment: matches[4],
	}, nil
}

func (url *SCPStyleURL) String() string {
	base := fmt.Sprintf("%s@%s:%s", url.User.String(), url.Host, url.Path)
	if url.Fragment == "" {
		return base
	}
	return base + "#" + url.Fragment
}