mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-11 23:50:05 +01:00
rewrites the installation of packages from scratch to solve several issues with the existing implementation: - does not need to choose between lockfile and jsonnetfile anymore. The jsonnetfile what to be installed, while the lockfile also has versions and checksums of all packages, even nested ones. - the lockfile is regenerated on every run, preserving the locked values - downloaded packages are hashed using sha256 to make sure we receive what we expect. If files on the local disk are modified, they are downloaded again.
83 lines
1.8 KiB
Go
83 lines
1.8 KiB
Go
// 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.
|
|
|
|
package jsonnetfile
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/jsonnet-bundler/jsonnet-bundler/spec"
|
|
)
|
|
|
|
const (
|
|
File = "jsonnetfile.json"
|
|
LockFile = "jsonnetfile.lock.json"
|
|
)
|
|
|
|
var ErrNoFile = errors.New("no jsonnetfile")
|
|
|
|
func Choose(dir string) (string, bool, error) {
|
|
jsonnetfileLock := filepath.Join(dir, LockFile)
|
|
jsonnetfile := filepath.Join(dir, File)
|
|
|
|
lockExists, err := Exists(jsonnetfileLock)
|
|
if err != nil {
|
|
return "", false, err
|
|
}
|
|
if lockExists {
|
|
return jsonnetfileLock, true, nil
|
|
}
|
|
|
|
fileExists, err := Exists(jsonnetfile)
|
|
if err != nil {
|
|
return "", false, err
|
|
}
|
|
if fileExists {
|
|
return jsonnetfile, false, nil
|
|
}
|
|
|
|
return "", false, ErrNoFile
|
|
}
|
|
|
|
func Load(filepath string) (spec.JsonnetFile, error) {
|
|
m := spec.JsonnetFile{}
|
|
|
|
bytes, err := ioutil.ReadFile(filepath)
|
|
if err != nil {
|
|
return m, err
|
|
}
|
|
|
|
if err := json.Unmarshal(bytes, &m); err != nil {
|
|
return m, errors.Wrap(err, "failed to unmarshal file")
|
|
}
|
|
|
|
return m, nil
|
|
}
|
|
|
|
func Exists(path string) (bool, error) {
|
|
_, err := os.Stat(path)
|
|
if os.IsNotExist(err) {
|
|
return false, nil
|
|
}
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return true, nil
|
|
}
|