2016-02-15 01:10:14 -08:00
|
|
|
// Package vain implements a vanity service for use by the the go tool.
|
|
|
|
//
|
2016-02-16 23:27:53 -08:00
|
|
|
// The executable, cmd/vaind, is located in the respective subdirectory.
|
2016-02-11 11:57:16 -08:00
|
|
|
package vain
|
2016-02-07 23:54:55 -08:00
|
|
|
|
2016-04-11 20:43:18 -07:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/rand"
|
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"strings"
|
|
|
|
)
|
2016-02-07 23:54:55 -08:00
|
|
|
|
2016-02-23 22:09:29 -08:00
|
|
|
var vcss = map[string]bool{
|
|
|
|
"hg": true,
|
|
|
|
"git": true,
|
|
|
|
"bzr": true,
|
|
|
|
"svn": true,
|
2016-02-07 23:54:55 -08:00
|
|
|
}
|
|
|
|
|
2016-02-23 22:09:29 -08:00
|
|
|
func valid(vcs string) bool {
|
|
|
|
_, ok := vcss[vcs]
|
|
|
|
return ok
|
2016-02-07 23:54:55 -08:00
|
|
|
}
|
|
|
|
|
2016-02-15 01:10:14 -08:00
|
|
|
// Package stores the three pieces of information needed to create the meta
|
|
|
|
// tag. Two of these (Vcs and Repo) are stored explicitly, and the third is
|
|
|
|
// determined implicitly by the path POSTed to. For more information refer to
|
|
|
|
// the documentation for the go tool:
|
|
|
|
//
|
|
|
|
// https://golang.org/cmd/go/#hdr-Remote_import_paths
|
2016-02-08 00:14:30 -08:00
|
|
|
type Package struct {
|
2016-02-23 22:09:29 -08:00
|
|
|
//Vcs (version control system) supported: "hg", "git", "bzr", "svn"
|
|
|
|
Vcs string `json:"vcs"`
|
2016-02-15 01:10:14 -08:00
|
|
|
// Repo: the remote repository url
|
2016-02-07 23:54:55 -08:00
|
|
|
Repo string `json:"repo"`
|
2016-02-15 01:10:14 -08:00
|
|
|
|
2016-04-11 20:43:18 -07:00
|
|
|
Path string `json:"path"`
|
|
|
|
Ns string `json:"-"`
|
2016-02-07 23:54:55 -08:00
|
|
|
}
|
|
|
|
|
2016-02-08 00:14:30 -08:00
|
|
|
func (p Package) String() string {
|
2016-02-07 23:54:55 -08:00
|
|
|
return fmt.Sprintf(
|
|
|
|
"<meta name=\"go-import\" content=\"%s %s %s\">",
|
2016-04-11 20:43:18 -07:00
|
|
|
p.Path,
|
2016-02-07 23:54:55 -08:00
|
|
|
p.Vcs,
|
|
|
|
p.Repo,
|
|
|
|
)
|
|
|
|
}
|
2016-04-11 20:43:18 -07:00
|
|
|
|
|
|
|
// Valid checks that p will not confuse the go tool if added to packages.
|
|
|
|
func Valid(p string, packages []Package) bool {
|
|
|
|
for _, pkg := range packages {
|
|
|
|
if strings.HasPrefix(pkg.Path, p) || strings.HasPrefix(p, pkg.Path) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseNamespace(path string) (string, error) {
|
|
|
|
path = strings.TrimLeft(path, "/")
|
|
|
|
if path == "" {
|
|
|
|
return "", errors.New("path does not contain namespace")
|
|
|
|
}
|
|
|
|
elems := strings.Split(path, "/")
|
|
|
|
return elems[0], nil
|
|
|
|
}
|
|
|
|
|
2016-05-23 23:54:35 -07:00
|
|
|
// FreshToken returns a random token string.
|
2016-04-11 20:43:18 -07:00
|
|
|
func FreshToken() string {
|
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
io.Copy(buf, io.LimitReader(rand.Reader, 6))
|
|
|
|
s := hex.EncodeToString(buf.Bytes())
|
|
|
|
r := []string{}
|
|
|
|
for i := 0; i < len(s)/4; i++ {
|
|
|
|
r = append(r, s[i*4:(i+1)*4])
|
|
|
|
}
|
|
|
|
return strings.Join(r, "-")
|
|
|
|
}
|