// 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 pkg import ( "context" "fmt" "os" "path" "path/filepath" "github.com/fatih/color" "github.com/pkg/errors" "github.com/jsonnet-bundler/jsonnet-bundler/pkg/jsonnetfile" "github.com/jsonnet-bundler/jsonnet-bundler/spec" ) var ( VersionMismatch = errors.New("multiple colliding versions specified") ) func Install(ctx context.Context, isLock bool, dependencySourceIdentifier string, m spec.JsonnetFile, dir string) (*spec.JsonnetFile, error) { lockfile := &spec.JsonnetFile{} for _, dep := range m.Dependencies { tmp := filepath.Join(dir, ".tmp") err := os.MkdirAll(tmp, os.ModePerm) if err != nil { return nil, errors.Wrap(err, "failed to create general tmp dir") } var p Interface if dep.Source.GitSource != nil { p = NewGitPackage(dep.Source.GitSource) } if dep.Source.LocalSource != nil { p = NewLocalPackage(dep.Source.LocalSource) } lockVersion, err := p.Install(ctx, dep.Name, dir, dep.Version) if err != nil { return nil, errors.Wrap(err, "failed to install package") } color.Green(">>> Installed %s version %s\n", dep.Name, dep.Version) destPath := path.Join(dir, dep.Name) lockfile.Dependencies, err = insertDependency(lockfile.Dependencies, spec.Dependency{ Name: dep.Name, Source: dep.Source, Version: lockVersion, DepSource: dependencySourceIdentifier, }) if err != nil { return nil, errors.Wrap(err, "failed to insert dependency to lock dependencies") } // If dependencies are being installed from a lock file, the transitive // dependencies are not questioned, the locked dependencies are just // installed. if isLock { continue } filepath, isLock, err := jsonnetfile.Choose(destPath) if err != nil { return nil, err } depsDeps, err := jsonnetfile.Load(filepath) // It is ok for dependencies not to have a JsonnetFile, it just means // they do not have transitive dependencies of their own. if err != nil && !os.IsNotExist(err) { return nil, err } depsInstalledByDependency, err := Install(ctx, isLock, filepath, depsDeps, dir) if err != nil { return nil, err } for _, d := range depsInstalledByDependency.Dependencies { lockfile.Dependencies, err = insertDependency(lockfile.Dependencies, d) if err != nil { return nil, errors.Wrap(err, "failed to insert dependency to lock dependencies") } } } return lockfile, nil } func insertDependency(deps []spec.Dependency, newDep spec.Dependency) ([]spec.Dependency, error) { if len(deps) == 0 { return []spec.Dependency{newDep}, nil } res := []spec.Dependency{} newDepPreviouslyPresent := false for _, d := range deps { if d.Name == newDep.Name { if d.Version != newDep.Version { return nil, fmt.Errorf("multiple colliding versions specified for %s: %s (from %s) and %s (from %s)", d.Name, d.Version, d.DepSource, newDep.Version, newDep.DepSource) } res = append(res, d) newDepPreviouslyPresent = true } else { res = append(res, d) } } if !newDepPreviouslyPresent { res = append(res, newDep) } return res, nil }