jsonnet-bundler/cmd/jb/main.go

246 lines
5.9 KiB
Go
Raw Normal View History

2019-04-24 18:27:47 +02:00
// Copyright 2018 jsonnet-bundler authors
//
// 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.
2018-04-24 15:19:40 +01:00
package main
import (
"fmt"
"os"
"path"
"path/filepath"
"regexp"
2019-07-22 19:42:43 +02:00
"strings"
2018-04-24 15:19:40 +01:00
"github.com/jsonnet-bundler/jsonnet-bundler/spec"
"github.com/pkg/errors"
"gopkg.in/alecthomas/kingpin.v2"
2018-04-24 15:19:40 +01:00
)
const (
installActionName = "install"
2018-06-29 14:29:48 +02:00
updateActionName = "update"
initActionName = "init"
2018-04-24 15:19:40 +01:00
)
var (
gitSSHRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git")
gitSSHWithVersionRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git@(.*)")
gitSSHWithPathRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git/(.*)")
gitSSHWithPathAndVersionRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git/(.*)@(.*)")
2018-04-25 15:53:32 +01:00
githubSlugRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)")
githubSlugWithVersionRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)@(.*)")
githubSlugWithPathRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/(.*)")
githubSlugWithPathAndVersionRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/(.*)@(.*)")
2018-04-24 15:19:40 +01:00
)
func main() {
os.Exit(Main())
2018-04-24 15:19:40 +01:00
}
func Main() int {
cfg := struct {
JsonnetHome string
}{}
a := kingpin.New(filepath.Base(os.Args[0]), "A jsonnet package manager")
a.HelpFlag.Short('h')
a.Flag("jsonnetpkg-home", "The directory used to cache packages in.").
Default("vendor").StringVar(&cfg.JsonnetHome)
initCmd := a.Command(initActionName, "Initialize a new empty jsonnetfile")
installCmd := a.Command(installActionName, "Install all dependencies or install specific ones")
2019-07-22 18:04:24 +02:00
installCmdPaths := installCmd.Arg("paths", "paths to packages to install, URLs or file paths").Strings()
2018-04-24 15:19:40 +01:00
2018-06-29 14:29:48 +02:00
updateCmd := a.Command(updateActionName, "Update all dependencies.")
command, err := a.Parse(os.Args[1:])
if err != nil {
fmt.Fprintln(os.Stderr, errors.Wrapf(err, "Error parsing commandline arguments"))
a.Usage(os.Args[1:])
return 2
}
2018-04-24 15:19:40 +01:00
2019-04-24 18:19:27 +02:00
workdir, err := os.Getwd()
if err != nil {
return 1
}
switch command {
case initCmd.FullCommand():
2019-04-24 18:19:27 +02:00
return initCommand(workdir)
case installCmd.FullCommand():
2019-07-22 18:04:24 +02:00
return installCommand(workdir, cfg.JsonnetHome, *installCmdPaths...)
2018-06-29 14:29:48 +02:00
case updateCmd.FullCommand():
return updateCommand(cfg.JsonnetHome)
default:
2019-04-24 18:19:27 +02:00
installCommand(workdir, cfg.JsonnetHome)
2018-04-24 15:19:40 +01:00
}
return 0
}
2019-07-22 19:42:43 +02:00
func parseDependency(path string) *spec.Dependency {
if d := parseGitSSHDependency(path); d != nil {
return d
}
2019-07-22 19:42:43 +02:00
if d := parseGithubDependency(path); d != nil {
return d
}
if d := parseLocalDependency(path); d != nil {
return d
}
return nil
}
2019-07-22 19:42:43 +02:00
func parseGitSSHDependency(p string) *spec.Dependency {
if !gitSSHRegex.MatchString(p) {
return nil
}
subdir := ""
host := ""
org := ""
repo := ""
version := "master"
2019-07-22 19:42:43 +02:00
if gitSSHWithPathAndVersionRegex.MatchString(p) {
matches := gitSSHWithPathAndVersionRegex.FindStringSubmatch(p)
host = matches[1]
org = matches[2]
repo = matches[3]
subdir = matches[4]
version = matches[5]
2019-07-22 19:42:43 +02:00
} else if gitSSHWithPathRegex.MatchString(p) {
matches := gitSSHWithPathRegex.FindStringSubmatch(p)
host = matches[1]
org = matches[2]
repo = matches[3]
subdir = matches[4]
2019-07-22 19:42:43 +02:00
} else if gitSSHWithVersionRegex.MatchString(p) {
matches := gitSSHWithVersionRegex.FindStringSubmatch(p)
host = matches[1]
org = matches[2]
repo = matches[3]
version = matches[4]
} else {
2019-07-22 19:42:43 +02:00
matches := gitSSHRegex.FindStringSubmatch(p)
host = matches[1]
org = matches[2]
repo = matches[3]
}
return &spec.Dependency{
Name: repo,
Source: spec.Source{
GitSource: &spec.GitSource{
Remote: fmt.Sprintf("git@%s:%s/%s", host, org, repo),
Subdir: subdir,
},
},
Version: version,
}
}
2019-07-22 19:42:43 +02:00
func parseGithubDependency(p string) *spec.Dependency {
if !githubSlugRegex.MatchString(p) {
2018-05-23 11:20:42 -07:00
return nil
}
name := ""
user := ""
repo := ""
subdir := ""
version := "master"
2019-07-22 19:42:43 +02:00
if githubSlugWithPathRegex.MatchString(p) {
if githubSlugWithPathAndVersionRegex.MatchString(p) {
matches := githubSlugWithPathAndVersionRegex.FindStringSubmatch(p)
2018-05-23 11:20:42 -07:00
user = matches[1]
repo = matches[2]
subdir = matches[3]
version = matches[4]
name = path.Base(subdir)
} else {
2019-07-22 19:42:43 +02:00
matches := githubSlugWithPathRegex.FindStringSubmatch(p)
2018-05-23 11:20:42 -07:00
user = matches[1]
repo = matches[2]
subdir = matches[3]
name = path.Base(subdir)
}
} else {
2019-07-22 19:42:43 +02:00
if githubSlugWithVersionRegex.MatchString(p) {
matches := githubSlugWithVersionRegex.FindStringSubmatch(p)
2018-05-23 11:20:42 -07:00
user = matches[1]
repo = matches[2]
name = repo
version = matches[3]
} else {
2019-07-22 19:42:43 +02:00
matches := githubSlugRegex.FindStringSubmatch(p)
2018-05-23 11:20:42 -07:00
user = matches[1]
repo = matches[2]
name = repo
}
}
return &spec.Dependency{
Name: name,
Source: spec.Source{
GitSource: &spec.GitSource{
Remote: fmt.Sprintf("https://github.com/%s/%s", user, repo),
Subdir: subdir,
},
},
Version: version,
}
}
2019-07-22 19:42:43 +02:00
func parseLocalDependency(p string) *spec.Dependency {
if p == "" {
return nil
}
if strings.HasPrefix(p, "github.com") {
return nil
}
if strings.HasPrefix(p, "git+ssh") {
return nil
}
clean := filepath.Clean(p)
info, err := os.Stat(clean)
if err != nil {
return nil
}
if !info.IsDir() {
return nil
}
return &spec.Dependency{
Name: info.Name(),
Source: spec.Source{
LocalSource: &spec.LocalSource{
Directory: clean,
2019-07-22 19:42:43 +02:00
},
},
Version: "",
2019-07-22 19:42:43 +02:00
}
}