Skip to content

Commit

Permalink
Merge pull request #105 from warrensbox/master
Browse files Browse the repository at this point in the history
Bu fixes
  • Loading branch information
warrensbox committed Nov 29, 2021
2 parents 7e5c21e + 809a6e3 commit 765aba9
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 33 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- As a result, user cannot immediately download the version of terragrunt they want. They had to wait.

### Added
- `tgswitch` will now get th list of releases from [terragrunt list page maintined by warrensbox](https://warrensbox.github.io/terragunt-versions-list/)
- `tgswitch` will now get th list of releases from [terragrunt list page maintained by warrensbox](https://warrensbox.github.io/terragunt-versions-list/)
- `tgswitch` will directly download from the [terragrunt release page](https://github.com/gruntwork-io/terragrunt/releases)

### Removed
- removed all functions that would make API github calls

## [0.5.0] - 2021-11-28
### Bug Fixes
- Fixed issue where symlink points to terraform
65 changes: 34 additions & 31 deletions lib/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ var (
// initialize : removes existing symlink to terragrunt binary
func initialize() {

/* initilize default binary path for terraform */
/* assumes that terraform is installed here */
/* we will find the terraform path instalation later and replace this variable with the correct installed bin path */
/* initilize default binary path for terragrunt */
/* assumes that terragrunt is installed here */
/* we will find the terragrunt path instalation later and replace this variable with the correct installed bin path */
installedBinPath := "/usr/local/bin/terragrunt"

/* find terragrunt binary location if terragrunt is already installed*/
Expand All @@ -49,7 +49,7 @@ func initialize() {
}
}

// GetInstallLocation : get location where the terraform binary will be installed,
// GetInstallLocation : get location where the terragrunt binary will be installed,
// will create a directory in the home location if it does not exist
func GetInstallLocation() string {
/* get current user */
Expand Down Expand Up @@ -130,7 +130,7 @@ func GetRecentVersions() ([]string, error) {
return nil, errRead
}

/* output can be confusing since it displays the 3 most recent used terraform version
/* output can be confusing since it displays the 3 most recent used terragrunt version
append the string *recent to the output to make it more user friendly
*/
outputRecent = append(outputRecent, fmt.Sprintf("%s *recent", line))
Expand Down Expand Up @@ -171,20 +171,15 @@ func ValidVersionFormat(version string) bool {
//Install : Install the provided version in the argument
func Install(tgversion string, usrBinPath string, mirrorURL string) string {

if !ValidVersionFormat(tgversion) {
fmt.Printf("The provided terraform version format does not exist - %s. Try `tfswitch -l` to see all available versions.\n", tgversion)
os.Exit(1)
}

/* Check to see if user has permission to the default bin location which is "/usr/local/bin/terraform"
/* Check to see if user has permission to the default bin location which is "/usr/local/bin/terragrunt"
* If user does not have permission to default bin location, proceed to create $HOME/bin and install the tfswitch there
* Inform user that they dont have permission to default location, therefore tfswitch was installed in $HOME/bin
* Tell users to add $HOME/bin to their path
*/
binPath := InstallableBinLocation(usrBinPath)

initialize() //initialize path
installLocation = GetInstallLocation() //get installation location - this is where we will put our terraform binary file
installLocation = GetInstallLocation() //get installation location - this is where we will put our terragrunt binary file

goarch := runtime.GOARCH
goos := runtime.GOOS
Expand Down Expand Up @@ -216,7 +211,7 @@ func Install(tgversion string, usrBinPath string, mirrorURL string) string {
os.Exit(1)
}

/* rename unzipped file to terraform version name - terraform_x.x.x */
/* rename unzipped file to terragrunt version name - terraform_x.x.x */
RenameFile(downloadedFile, installFileVersionPath)

err := os.Chmod(installFileVersionPath, 0755)
Expand All @@ -238,38 +233,46 @@ func Install(tgversion string, usrBinPath string, mirrorURL string) string {
return ""
}

//InstallableBinLocation : Checks if terraform is installable in the location provided by the user.
//InstallableBinLocation : Checks if terragrunt is installable in the location provided by the user.
//If not, create $HOME/bin. Ask users to add $HOME/bin to $PATH
//Return $HOME/bin as install location
func InstallableBinLocation(binLocation string) string {
func InstallableBinLocation(userBinPath string) string {

usr, errCurr := user.Current()
if errCurr != nil {
log.Fatal(errCurr)
}
pathDir := Path(binLocation) //get path directory from binary path
existDefaultBin := CheckDirExist(pathDir) //the default is /usr/local/bin but users can provide custom bin locations
if existDefaultBin { //if exist - now see if we can write to to it

writableToDefault := false
binDir := Path(userBinPath) //get path directory from binary path
binPathExist := CheckDirExist(binDir) //the default is /usr/local/bin but users can provide custom bin locations

if binPathExist == true { //if bin path exist - check if we can write to to it

binPathWritable := false //assume bin path is not writable
if runtime.GOOS != "windows" {
writableToDefault = CheckDirWritable(pathDir) //check if is writable on ( only works on LINUX)
binPathWritable = CheckDirWritable(binDir) //check if is writable on ( only works on LINUX)
}

if !writableToDefault {
exisHomeBin := CheckDirExist(filepath.Join(usr.HomeDir, "bin"))
if exisHomeBin {
fmt.Printf("Installing terraform at %s\n", filepath.Join(usr.HomeDir, "bin"))
return filepath.Join(usr.HomeDir, "bin", "terraform")
// IF: "/usr/local/bin" or `custom bin path` provided by user is non-writable, (binPathWritable == false), we will attempt to install terragrunt at the ~/bin location. See ELSE
if binPathWritable == false {

homeBinExist := CheckDirExist(filepath.Join(usr.HomeDir, "bin")) //check to see if ~/bin exist
if homeBinExist { //if ~/bin exist, install at ~/bin/terragrunt
fmt.Printf("Installing terragrunt at %s\n", filepath.Join(usr.HomeDir, "bin"))
return filepath.Join(usr.HomeDir, "bin", "terragrunt")
} else { //if ~/bin directory does not exist, create ~/bin for terragrunt installation
fmt.Printf("Unable to write to: %s\n", userBinPath)
fmt.Printf("Creating bin directory at: %s\n", filepath.Join(usr.HomeDir, "bin"))
CreateDirIfNotExist(filepath.Join(usr.HomeDir, "bin")) //create ~/bin
fmt.Printf("RUN `export PATH=$PATH:%s` to append bin to $PATH\n", filepath.Join(usr.HomeDir, "bin"))
return filepath.Join(usr.HomeDir, "bin", "terragrunt")
}
PrintCreateDirStmt(pathDir, filepath.Join(usr.HomeDir, "bin"))
CreateDirIfNotExist(filepath.Join(usr.HomeDir, "bin"))
return filepath.Join(usr.HomeDir, "bin", "terraform")
} else { // ELSE: the "/usr/local/bin" or custom path provided by user is writable, we will return installable location
return filepath.Join(userBinPath)
}
return binLocation
}
fmt.Printf("[Error] : Binary path does not exist: %s\n", binLocation)
fmt.Printf("[Error] : Manually create bin directory at: %s and try again.\n", binLocation)
fmt.Printf("[Error] : Binary path does not exist: %s\n", userBinPath)
fmt.Printf("[Error] : Manually create bin directory at: %s and try again.\n", binDir)
os.Exit(1)
return ""
}
Expand Down
2 changes: 1 addition & 1 deletion lib/symlink.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func CheckSymlink(symlinkPath string) bool {
// ChangeSymlink : move symlink to existing binary
func ChangeSymlink(installedBinPath string, appversion string) string {

installLocation = GetInstallLocation() //get installation location - this is where we will put our terraform binary file
installLocation = GetInstallLocation() //get installation location - this is where we will put our terragrunt binary file

/* remove current symlink if exist*/
symlinkExist := CheckSymlink(installedBinPath)
Expand Down

0 comments on commit 765aba9

Please sign in to comment.