mirror of
https://github.com/Infisical/infisical.git
synced 2026-05-02 03:02:03 -04:00
232 lines
6.4 KiB
Go
232 lines
6.4 KiB
Go
package util
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/Infisical/infisical-merge/packages/config"
|
|
"github.com/Infisical/infisical-merge/packages/models"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func WriteInitalConfig(userCredentials *models.UserCredentials) error {
|
|
fullConfigFilePath, fullConfigFileDirPath, err := GetFullConfigFilePath()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// create directory
|
|
if _, err := os.Stat(fullConfigFileDirPath); errors.Is(err, os.ErrNotExist) {
|
|
err := os.Mkdir(fullConfigFileDirPath, os.ModePerm)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
// get existing config
|
|
existingConfigFile, err := GetConfigFile()
|
|
if err != nil {
|
|
return fmt.Errorf("writeInitalConfig: unable to write config file because [err=%s]", err)
|
|
}
|
|
|
|
//if profiles exists
|
|
loggedInUser := models.LoggedInUser{
|
|
Email: userCredentials.Email,
|
|
Domain: config.INFISICAL_URL,
|
|
}
|
|
//if empty or if email not in loggedinUsers
|
|
if len(existingConfigFile.LoggedInUsers) == 0 || !ConfigContainsEmail(existingConfigFile.LoggedInUsers, userCredentials.Email) {
|
|
existingConfigFile.LoggedInUsers = append(existingConfigFile.LoggedInUsers, loggedInUser)
|
|
} else {
|
|
//if exists update domain of loggedin users
|
|
for idx, user := range existingConfigFile.LoggedInUsers {
|
|
if user.Email == userCredentials.Email {
|
|
existingConfigFile.LoggedInUsers[idx] = loggedInUser
|
|
}
|
|
}
|
|
}
|
|
|
|
configFile := models.ConfigFile{
|
|
LoggedInUserEmail: userCredentials.Email,
|
|
LoggedInUserDomain: config.INFISICAL_URL,
|
|
LoggedInUsers: existingConfigFile.LoggedInUsers,
|
|
VaultBackendType: existingConfigFile.VaultBackendType,
|
|
}
|
|
|
|
configFileMarshalled, err := json.Marshal(configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Create file in directory
|
|
err = WriteToFile(fullConfigFilePath, configFileMarshalled, 0600)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func ConfigFileExists() bool {
|
|
fullConfigFileURI, _, err := GetFullConfigFilePath()
|
|
if err != nil {
|
|
log.Debug().Err(err).Msgf("There was an error when creating the full path to config file")
|
|
return false
|
|
}
|
|
|
|
if _, err := os.Stat(fullConfigFileURI); err == nil {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
|
|
func WorkspaceConfigFileExistsInCurrentPath() bool {
|
|
if _, err := os.Stat(INFISICAL_WORKSPACE_CONFIG_FILE_NAME); err == nil {
|
|
return true
|
|
} else {
|
|
log.Debug().Err(err)
|
|
return false
|
|
}
|
|
}
|
|
|
|
func GetWorkSpaceFromFile() (models.WorkspaceConfigFile, error) {
|
|
cfgFile, err := FindWorkspaceConfigFile()
|
|
if err != nil {
|
|
return models.WorkspaceConfigFile{}, err
|
|
}
|
|
|
|
configFileAsBytes, err := os.ReadFile(cfgFile)
|
|
if err != nil {
|
|
return models.WorkspaceConfigFile{}, err
|
|
}
|
|
|
|
var workspaceConfigFile models.WorkspaceConfigFile
|
|
err = json.Unmarshal(configFileAsBytes, &workspaceConfigFile)
|
|
if err != nil {
|
|
return models.WorkspaceConfigFile{}, err
|
|
}
|
|
|
|
return workspaceConfigFile, nil
|
|
}
|
|
|
|
// FindWorkspaceConfigFile searches for a .infisical.json file in the current directory and all parent directories.
|
|
func FindWorkspaceConfigFile() (string, error) {
|
|
dir, err := os.Getwd()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
for {
|
|
path := filepath.Join(dir, INFISICAL_WORKSPACE_CONFIG_FILE_NAME)
|
|
_, err := os.Stat(path)
|
|
if err == nil {
|
|
// file found
|
|
log.Debug().Msgf("FindWorkspaceConfigFile: workspace file found at [path=%s]", path)
|
|
|
|
return path, nil
|
|
}
|
|
|
|
// check if we have reached the root directory
|
|
if dir == filepath.Dir(dir) {
|
|
break
|
|
}
|
|
|
|
// move up one directory
|
|
dir = filepath.Dir(dir)
|
|
}
|
|
|
|
// file not found
|
|
return "", fmt.Errorf("file not found: %s", INFISICAL_WORKSPACE_CONFIG_FILE_NAME)
|
|
|
|
}
|
|
|
|
func GetFullConfigFilePath() (fullPathToFile string, fullPathToDirectory string, err error) {
|
|
homeDir, err := GetHomeDir()
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
|
|
fullPath := fmt.Sprintf("%s/%s/%s", homeDir, CONFIG_FOLDER_NAME, CONFIG_FILE_NAME)
|
|
fullDirPath := fmt.Sprintf("%s/%s", homeDir, CONFIG_FOLDER_NAME)
|
|
return fullPath, fullDirPath, err
|
|
}
|
|
|
|
// Given a path to a workspace config, unmarshal workspace config
|
|
func GetWorkspaceConfigByPath(path string) (workspaceConfig models.WorkspaceConfigFile, err error) {
|
|
workspaceConfigFileAsBytes, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return models.WorkspaceConfigFile{}, fmt.Errorf("GetWorkspaceConfigByPath: Unable to read workspace config file because [%s]", err)
|
|
}
|
|
|
|
var workspaceConfigFile models.WorkspaceConfigFile
|
|
err = json.Unmarshal(workspaceConfigFileAsBytes, &workspaceConfigFile)
|
|
if err != nil {
|
|
return models.WorkspaceConfigFile{}, fmt.Errorf("GetWorkspaceConfigByPath: Unable to unmarshal workspace config file because [%s]", err)
|
|
}
|
|
|
|
return workspaceConfigFile, nil
|
|
}
|
|
|
|
// Get the infisical config file and if it doesn't exist, return empty config model, otherwise raise error
|
|
func GetConfigFile() (models.ConfigFile, error) {
|
|
fullConfigFilePath, _, err := GetFullConfigFilePath()
|
|
if err != nil {
|
|
return models.ConfigFile{}, err
|
|
}
|
|
|
|
configFileAsBytes, err := os.ReadFile(fullConfigFilePath)
|
|
if err != nil {
|
|
if err, ok := err.(*os.PathError); ok {
|
|
return models.ConfigFile{}, nil
|
|
} else {
|
|
return models.ConfigFile{}, err
|
|
}
|
|
}
|
|
|
|
var configFile models.ConfigFile
|
|
err = json.Unmarshal(configFileAsBytes, &configFile)
|
|
if err != nil {
|
|
return models.ConfigFile{}, err
|
|
}
|
|
|
|
return configFile, nil
|
|
}
|
|
|
|
// Write a ConfigFile to disk. Raise error if unable to save the model to disk
|
|
func WriteConfigFile(configFile *models.ConfigFile) error {
|
|
fullConfigFilePath, fullConfigFileDirPath, err := GetFullConfigFilePath()
|
|
if err != nil {
|
|
return fmt.Errorf("writeConfigFile: unable to write config file because an error occurred when getting config file path [err=%s]", err)
|
|
}
|
|
|
|
configFileMarshalled, err := json.Marshal(configFile)
|
|
if err != nil {
|
|
return fmt.Errorf("writeConfigFile: unable to write config file because an error occurred when marshalling the config file [err=%s]", err)
|
|
}
|
|
|
|
// check if config folder exists and if not create it
|
|
if _, err := os.Stat(fullConfigFileDirPath); errors.Is(err, os.ErrNotExist) {
|
|
err := os.Mkdir(fullConfigFileDirPath, os.ModePerm)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
// Create file in directory
|
|
err = os.WriteFile(fullConfigFilePath, configFileMarshalled, 0600)
|
|
if err != nil {
|
|
return fmt.Errorf("writeConfigFile: Unable to write to file [err=%s]", err)
|
|
}
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("writeConfigFile: unable to write config file because an error occurred when write the config to file [err=%s]", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|