2017-02-07 21:33:23 +00:00
|
|
|
package lookup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2018-01-22 11:16:03 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2017-02-07 21:33:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// relativePath returns the proper relative path for the given file path. If
|
|
|
|
// the relativeTo string equals "-", then it means that it's from the stdin,
|
|
|
|
// and the returned path will be the current working directory. Otherwise, if
|
|
|
|
// file is really an absolute path, then it will be returned without any
|
|
|
|
// changes. Otherwise, the returned path will be a combination of relativeTo
|
|
|
|
// and file.
|
|
|
|
func relativePath(file, relativeTo string) string {
|
|
|
|
// stdin: return the current working directory if possible.
|
|
|
|
if relativeTo == "-" {
|
|
|
|
if cwd, err := os.Getwd(); err == nil {
|
2017-07-06 14:28:13 +00:00
|
|
|
return filepath.Join(cwd, file)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the given file is already an absolute path, just return it.
|
|
|
|
// Otherwise, the returned path will be relative to the given relativeTo
|
|
|
|
// path.
|
|
|
|
if filepath.IsAbs(file) {
|
|
|
|
return file
|
|
|
|
}
|
|
|
|
|
|
|
|
abs, err := filepath.Abs(filepath.Join(path.Dir(relativeTo), file))
|
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("Failed to get absolute directory: %s", err)
|
|
|
|
return file
|
|
|
|
}
|
|
|
|
return abs
|
|
|
|
}
|
|
|
|
|
2017-07-06 14:28:13 +00:00
|
|
|
// FileResourceLookup is a "bare" structure that implements the project.ResourceLookup interface
|
|
|
|
type FileResourceLookup struct {
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup returns the content and the actual filename of the file that is "built" using the
|
|
|
|
// specified file and relativeTo string. file and relativeTo are supposed to be file path.
|
|
|
|
// If file starts with a slash ('/'), it tries to load it, otherwise it will build a
|
|
|
|
// filename using the folder part of relativeTo joined with file.
|
2017-07-06 14:28:13 +00:00
|
|
|
func (f *FileResourceLookup) Lookup(file, relativeTo string) ([]byte, string, error) {
|
2017-02-07 21:33:23 +00:00
|
|
|
file = relativePath(file, relativeTo)
|
|
|
|
logrus.Debugf("Reading file %s", file)
|
|
|
|
bytes, err := ioutil.ReadFile(file)
|
|
|
|
return bytes, file, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResolvePath returns the path to be used for the given path volume. This
|
|
|
|
// function already takes care of relative paths.
|
2017-07-06 14:28:13 +00:00
|
|
|
func (f *FileResourceLookup) ResolvePath(path, relativeTo string) string {
|
2017-02-07 21:33:23 +00:00
|
|
|
vs := strings.SplitN(path, ":", 2)
|
|
|
|
if len(vs) != 2 || filepath.IsAbs(vs[0]) {
|
|
|
|
return path
|
|
|
|
}
|
2017-07-06 14:28:13 +00:00
|
|
|
vs[0] = relativePath(vs[0], relativeTo)
|
2017-02-07 21:33:23 +00:00
|
|
|
return strings.Join(vs, ":")
|
|
|
|
}
|