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.
|
|
|
|
|
|
2019-04-24 18:04:53 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"io/ioutil"
|
|
|
|
|
"os"
|
|
|
|
|
"path/filepath"
|
2019-10-16 20:38:00 +02:00
|
|
|
"reflect"
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
"github.com/pkg/errors"
|
2019-10-16 12:07:10 +02:00
|
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
|
|
|
|
|
2019-04-24 18:04:53 +02:00
|
|
|
"github.com/jsonnet-bundler/jsonnet-bundler/pkg"
|
|
|
|
|
"github.com/jsonnet-bundler/jsonnet-bundler/pkg/jsonnetfile"
|
|
|
|
|
"github.com/jsonnet-bundler/jsonnet-bundler/spec"
|
|
|
|
|
)
|
|
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
func installCommand(dir, jsonnetHome string, uris []string) int {
|
2019-04-24 18:04:53 +02:00
|
|
|
if dir == "" {
|
|
|
|
|
dir = "."
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-08 09:36:13 -05:00
|
|
|
jbfilebytes, err := ioutil.ReadFile(filepath.Join(dir, jsonnetfile.File))
|
2019-10-16 20:38:00 +02:00
|
|
|
kingpin.FatalIfError(err, "failed to load jsonnetfile")
|
|
|
|
|
|
2019-11-08 09:36:13 -05:00
|
|
|
jsonnetFile, err := jsonnetfile.Unmarshal(jbfilebytes)
|
|
|
|
|
kingpin.FatalIfError(err, "")
|
|
|
|
|
|
|
|
|
|
jblockfilebytes, err := ioutil.ReadFile(filepath.Join(dir, jsonnetfile.LockFile))
|
2019-10-16 20:38:00 +02:00
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
|
kingpin.FatalIfError(err, "failed to load lockfile")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-08 09:36:13 -05:00
|
|
|
lockFile, err := jsonnetfile.Unmarshal(jblockfilebytes)
|
|
|
|
|
kingpin.FatalIfError(err, "")
|
|
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
kingpin.FatalIfError(
|
2019-10-16 17:36:25 +02:00
|
|
|
os.MkdirAll(filepath.Join(dir, jsonnetHome, ".tmp"), os.ModePerm),
|
|
|
|
|
"creating vendor folder")
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
for _, u := range uris {
|
|
|
|
|
d := parseDependency(dir, u)
|
2019-10-29 22:35:59 +01:00
|
|
|
if d == nil {
|
|
|
|
|
kingpin.Fatalf("Unable to parse package URI `%s`", u)
|
|
|
|
|
}
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 20:38:00 +02:00
|
|
|
if !depEqual(jsonnetFile.Dependencies[d.Name], *d) {
|
|
|
|
|
// the dep passed on the cli is different from the jsonnetFile
|
|
|
|
|
jsonnetFile.Dependencies[d.Name] = *d
|
|
|
|
|
|
|
|
|
|
// we want to install the passed version (ignore the lock)
|
|
|
|
|
delete(lockFile.Dependencies, d.Name)
|
|
|
|
|
}
|
2019-04-24 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2019-10-16 17:36:25 +02:00
|
|
|
locked, err := pkg.Ensure(jsonnetFile, jsonnetHome, lockFile.Dependencies)
|
2019-10-16 16:34:53 +02:00
|
|
|
kingpin.FatalIfError(err, "failed to install packages")
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
kingpin.FatalIfError(
|
2019-11-08 09:36:13 -05:00
|
|
|
writeChangedJsonnetFile(jbfilebytes, &jsonnetFile, filepath.Join(dir, jsonnetfile.File)),
|
2019-10-16 16:34:53 +02:00
|
|
|
"updating jsonnetfile.json")
|
2019-11-08 09:36:13 -05:00
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
kingpin.FatalIfError(
|
2019-11-08 09:36:13 -05:00
|
|
|
writeChangedJsonnetFile(jblockfilebytes, &spec.JsonnetFile{Dependencies: locked}, filepath.Join(dir, jsonnetfile.LockFile)),
|
2019-10-16 16:34:53 +02:00
|
|
|
"updating jsonnetfile.lock.json")
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
return 0
|
|
|
|
|
}
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 20:38:00 +02:00
|
|
|
func depEqual(d1, d2 spec.Dependency) bool {
|
|
|
|
|
name := d1.Name == d2.Name
|
|
|
|
|
version := d1.Version == d2.Version
|
|
|
|
|
source := reflect.DeepEqual(d1.Source, d2.Source)
|
|
|
|
|
|
|
|
|
|
return name && version && source
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
func writeJSONFile(name string, d interface{}) error {
|
|
|
|
|
b, err := json.MarshalIndent(d, "", " ")
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errors.Wrap(err, "encoding json")
|
2019-04-24 18:04:53 +02:00
|
|
|
}
|
2019-10-16 16:34:53 +02:00
|
|
|
b = append(b, []byte("\n")...)
|
2019-04-24 18:04:53 +02:00
|
|
|
|
2019-10-16 16:34:53 +02:00
|
|
|
return ioutil.WriteFile(name, b, 0644)
|
2019-04-24 18:04:53 +02:00
|
|
|
}
|
2019-11-08 09:36:13 -05:00
|
|
|
|
|
|
|
|
func writeChangedJsonnetFile(originalBytes []byte, modified *spec.JsonnetFile, path string) error {
|
|
|
|
|
origJsonnetFile, err := jsonnetfile.Unmarshal(originalBytes)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if reflect.DeepEqual(origJsonnetFile, *modified) {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return writeJSONFile(path, *modified)
|
|
|
|
|
}
|