From a50153c1419dd7dd1a7e3e79a016fa84e42accbb Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 11 Feb 2020 17:02:25 +0000 Subject: Support utils.Resolve/2 Supporting a function that resolves a file name checking for the nearest occurrence of the file from the CWD until it traverses beyond the user's home directory, after which point it checks in backupPaths. --- gopkgs/utils/utils.go | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'gopkgs') diff --git a/gopkgs/utils/utils.go b/gopkgs/utils/utils.go index 24121ed44c75..53136878dea3 100644 --- a/gopkgs/utils/utils.go +++ b/gopkgs/utils/utils.go @@ -9,6 +9,7 @@ import ( "net/http/httputil" "os" "os/user" + "path/filepath" ) // Return the absolute path to the current uesr's home directory. @@ -29,6 +30,44 @@ func FileExists(path string) bool { } } +// Return the absolute file path of `file` using the following resolution +// strategy: +// - Traverse and search upwards until you reach the user's home directory +// - Return the first path in `backupPaths` that exists +// - Fail +func Resolve(fileName string, backupPaths []string) string { + // TODO(wpcarro): Drop hardcoding when whoami behaves as expected. + boundary := "/home" + cwd := "." + files, _ := ioutil.ReadDir(cwd) + + for { + fullCwd, _ := filepath.Abs(cwd) + if fullCwd == boundary { + break + } + for _, file := range files { + if file.Name() == fileName { + path, _ := filepath.Abs(cwd + "/" + file.Name()) + return path + } + } + cwd += "/.." + files, _ = ioutil.ReadDir(cwd) + } + + // TODO(wpcarro): Support expanding these paths to allow the consumer to + // pass in relative paths, and paths with "~" in them. + for _, backup := range backupPaths { + if FileExists(backup) { + return backup + } + } + log.Fatal("Cannot find a run.json to use.") + // This code should be unreachable. + return "" +} + // Call log.Fatal with `err` when it's not nil. func FailOn(err error) { if err != nil { -- cgit 1.4.1