mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +00:00
Do not depend on config package.
Config package will panic if it cannot create the step path folder.
This commit is contained in:
parent
01b6aebbf7
commit
cc1c6f2cb4
23
ca/client.go
23
ca/client.go
@ -17,6 +17,8 @@ import (
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
"os/user"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
"strings"
|
||||
@ -24,7 +26,6 @@ import (
|
||||
"github.com/pkg/errors"
|
||||
"github.com/smallstep/certificates/api"
|
||||
"github.com/smallstep/certificates/authority"
|
||||
"github.com/smallstep/cli/config"
|
||||
"github.com/smallstep/cli/crypto/x509util"
|
||||
"gopkg.in/square/go-jose.v2/jwt"
|
||||
)
|
||||
@ -585,7 +586,7 @@ func getInsecureClient() *http.Client {
|
||||
// getRootCAPath returns the path where the root CA is stored based on the
|
||||
// STEPPATH environment variable.
|
||||
func getRootCAPath() string {
|
||||
return filepath.Join(config.StepPath(), "certs", "root_ca.crt")
|
||||
return filepath.Join(stepPath(), "certs", "root_ca.crt")
|
||||
}
|
||||
|
||||
func readJSON(r io.ReadCloser, v interface{}) error {
|
||||
@ -601,3 +602,21 @@ func readError(r io.ReadCloser) error {
|
||||
}
|
||||
return apiErr
|
||||
}
|
||||
|
||||
// stepPath returns the step path. config.StepPath is not used because it will
|
||||
// fail if it cannot create the folder.
|
||||
func stepPath() string {
|
||||
stepPath := os.Getenv("STEPPATH")
|
||||
if stepPath == "" {
|
||||
usr, err := user.Current()
|
||||
if err == nil && usr.HomeDir != "" {
|
||||
stepPath = path.Join(usr.HomeDir, ".step")
|
||||
} else if home := os.Getenv("HOME"); home != "" {
|
||||
stepPath = path.Join(home, ".step")
|
||||
} else {
|
||||
stepPath = "."
|
||||
}
|
||||
}
|
||||
// cleanup
|
||||
return path.Clean(stepPath)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user