jsonnet-bundler/cmd/jb/main.go

93 lines
2.6 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/filepath"
2018-04-24 15:19:40 +01:00
"github.com/fatih/color"
2018-04-24 15:19:40 +01:00
"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"
2020-01-24 08:02:34 +01:00
rewriteActionName = "rewrite"
2018-04-24 15:19:40 +01:00
)
var Version = "dev"
func main() {
os.Exit(Main())
2018-04-24 15:19:40 +01:00
}
func Main() int {
cfg := struct {
JsonnetHome string
}{}
color.Output = color.Error
a := kingpin.New(filepath.Base(os.Args[0]), "A jsonnet package manager").Version(Version)
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 new dependencies. Existing ones are silently skipped")
installCmdURIs := installCmd.Arg("uris", "URIs to packages to install, URLs or file paths").Strings()
installCmdSingle := installCmd.Flag("single", "install package without dependencies").Short('1').Bool()
2018-04-24 15:19:40 +01:00
updateCmd := a.Command(updateActionName, "Update all or specific dependencies.")
updateCmdURIs := updateCmd.Arg("uris", "URIs to packages to update, URLs or file paths").Strings()
2018-06-29 14:29:48 +02:00
2020-01-24 08:02:34 +01:00
rewriteCmd := a.Command(rewriteActionName, "Automatically rewrite legacy imports to absolute ones")
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
}
cfg.JsonnetHome = filepath.Clean(cfg.JsonnetHome)
switch command {
case initCmd.FullCommand():
2019-04-24 18:19:27 +02:00
return initCommand(workdir)
case installCmd.FullCommand():
return installCommand(workdir, cfg.JsonnetHome, *installCmdURIs, *installCmdSingle)
2018-06-29 14:29:48 +02:00
case updateCmd.FullCommand():
return updateCommand(workdir, cfg.JsonnetHome, *updateCmdURIs)
2020-01-24 08:02:34 +01:00
case rewriteCmd.FullCommand():
return rewriteCommand(workdir, cfg.JsonnetHome)
default:
installCommand(workdir, cfg.JsonnetHome, []string{}, false)
2018-04-24 15:19:40 +01:00
}
return 0
}