Files
athens/cmd/proxy/actions/auth.go
Nicholas Wiersma d932d50232 chore: lint code with golangci-lint (#1828)
* feat: add golangci-lint linting

* chore: fix linter issues

* feat: add linting into the workflow

* docs: update lint docs

* fix: cr suggestions

* fix: remove old formatting and vetting scripts

* fix: add docker make target

* fix: action go caching

* fix: depreciated actions checkout version

* fix: cr suggestion

* fix: cr suggestions

---------

Co-authored-by: Manu Gupta <manugupt1@gmail.com>
2023-02-24 20:39:17 -08:00

66 lines
1.6 KiB
Go

package actions
import (
"fmt"
"log"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/mitchellh/go-homedir"
)
// initializeAuthFile checks if provided auth file is at a pre-configured path
// and moves to home directory -- note that this will override whatever
// .netrc/.hgrc file you have in your home directory.
func initializeAuthFile(path string) {
if path == "" {
return
}
fileBts, err := os.ReadFile(filepath.Clean(path))
if err != nil {
log.Fatalf("could not read %s: %v", path, err)
}
hdir, err := homedir.Dir()
if err != nil {
log.Fatalf("could not get homedir: %v", err)
}
fileName := transformAuthFileName(filepath.Base(path))
rcp := filepath.Join(hdir, fileName)
if err := os.WriteFile(rcp, fileBts, 0o600); err != nil {
log.Fatalf("could not write to file: %v", err)
}
}
// netrcFromToken takes a github token and creates a .netrc
// file for you, overriding whatever might be already there.
func netrcFromToken(tok string) {
fileContent := fmt.Sprintf("machine github.com login %s\n", tok)
hdir, err := homedir.Dir()
if err != nil {
log.Fatalf("netrcFromToken: could not get homedir: %v", err)
}
rcp := filepath.Join(hdir, getNETRCFilename())
if err := os.WriteFile(rcp, []byte(fileContent), 0o600); err != nil {
log.Fatalf("netrcFromToken: could not write to file: %v", err)
}
}
func transformAuthFileName(authFileName string) string {
if root := strings.TrimLeft(authFileName, "._"); root == "netrc" {
return getNETRCFilename()
}
return authFileName
}
func getNETRCFilename() string {
if runtime.GOOS == "windows" {
return "_netrc"
}
return ".netrc"
}