-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3846 from hashicorp/phinze/pathorcontents
ssh: accept private key contents instead of path
- Loading branch information
Showing
6 changed files
with
281 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Helpers for dealing with file paths and their contents | ||
package pathorcontents | ||
|
||
import ( | ||
"io/ioutil" | ||
"os" | ||
|
||
"github.com/mitchellh/go-homedir" | ||
) | ||
|
||
// If the argument is a path, Read loads it and returns the contents, | ||
// otherwise the argument is assumed to be the desired contents and is simply | ||
// returned. | ||
// | ||
// The boolean second return value can be called `wasPath` - it indicates if a | ||
// path was detected and a file loaded. | ||
func Read(poc string) (string, bool, error) { | ||
if len(poc) == 0 { | ||
return poc, false, nil | ||
} | ||
|
||
path := poc | ||
if path[0] == '~' { | ||
var err error | ||
path, err = homedir.Expand(path) | ||
if err != nil { | ||
return path, true, err | ||
} | ||
} | ||
|
||
if _, err := os.Stat(path); err == nil { | ||
contents, err := ioutil.ReadFile(path) | ||
if err != nil { | ||
return string(contents), true, err | ||
} | ||
return string(contents), true, nil | ||
} | ||
|
||
return poc, false, nil | ||
} |
Oops, something went wrong.