mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-12 08:00:05 +01:00
Adds a `version` field to the `jsonnetfile.json`, so that `jb` can automatically recognize too old / too new schema versions, instead of panicking.
113 lines
2.6 KiB
Go
113 lines
2.6 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"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
v0 "github.com/jsonnet-bundler/jsonnet-bundler/spec/v0"
|
|
v1 "github.com/jsonnet-bundler/jsonnet-bundler/spec/v1"
|
|
depsv1 "github.com/jsonnet-bundler/jsonnet-bundler/spec/v1/deps"
|
|
)
|
|
|
|
const (
|
|
File = "jsonnetfile.json"
|
|
LockFile = "jsonnetfile.lock.json"
|
|
)
|
|
|
|
var (
|
|
ErrUpdateJB = errors.New("jsonnetfile version unknown, update jb")
|
|
)
|
|
|
|
// Load reads a jsonnetfile.(lock).json from disk
|
|
func Load(filepath string) (v1.JsonnetFile, error) {
|
|
bytes, err := ioutil.ReadFile(filepath)
|
|
if err != nil {
|
|
return v1.New(), err
|
|
}
|
|
|
|
return Unmarshal(bytes)
|
|
}
|
|
|
|
// Unmarshal creates a spec.JsonnetFile from bytes. Empty bytes
|
|
// will create an empty spec.
|
|
func Unmarshal(bytes []byte) (v1.JsonnetFile, error) {
|
|
m := v1.New()
|
|
|
|
if len(bytes) == 0 {
|
|
return m, nil
|
|
}
|
|
|
|
versions := struct {
|
|
Version uint `json:"version"`
|
|
}{}
|
|
|
|
err := json.Unmarshal(bytes, &versions)
|
|
if err != nil {
|
|
return m, err
|
|
}
|
|
|
|
if versions.Version > v1.Version {
|
|
return m, ErrUpdateJB
|
|
}
|
|
|
|
if versions.Version == v1.Version {
|
|
if err := json.Unmarshal(bytes, &m); err != nil {
|
|
return m, errors.Wrap(err, "failed to unmarshal v1 file")
|
|
}
|
|
|
|
return m, nil
|
|
} else {
|
|
var mv0 v0.JsonnetFile
|
|
if err := json.Unmarshal(bytes, &mv0); err != nil {
|
|
return m, errors.Wrap(err, "failed to unmarshal jsonnetfile")
|
|
}
|
|
|
|
for name, dep := range mv0.Dependencies {
|
|
var d depsv1.Dependency
|
|
if dep.Source.GitSource != nil {
|
|
d = *depsv1.Parse("", dep.Source.GitSource.Remote)
|
|
d.Source.GitSource.Subdir = dep.Source.GitSource.Subdir
|
|
}
|
|
if dep.Source.LocalSource != nil {
|
|
d = *depsv1.Parse(dep.Source.LocalSource.Directory, dep.Source.GitSource.Remote)
|
|
}
|
|
|
|
d.Sum = dep.Sum
|
|
d.Version = dep.Version
|
|
|
|
m.Dependencies[name] = d
|
|
}
|
|
|
|
return m, nil
|
|
}
|
|
}
|
|
|
|
// Exists returns whether the file at the given path exists
|
|
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
|
|
}
|