2015-07-08 19:54:32 -04:00
|
|
|
/*
|
2015-07-24 20:51:40 -04:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-07-08 19:54:32 -04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-10-04 19:31:07 -04:00
|
|
|
package main
|
2015-07-08 19:54:32 -04:00
|
|
|
|
|
|
|
import (
|
2015-09-18 05:59:57 -04:00
|
|
|
"os"
|
2015-07-08 19:54:32 -04:00
|
|
|
"os/user"
|
|
|
|
"path/filepath"
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
"github.com/minio/minio-xl/pkg/probe"
|
|
|
|
"github.com/minio/minio-xl/pkg/quick"
|
2015-07-08 19:54:32 -04:00
|
|
|
)
|
|
|
|
|
2015-10-04 19:31:07 -04:00
|
|
|
// AuthConfig auth keys
|
|
|
|
type AuthConfig struct {
|
2015-10-16 14:26:01 -04:00
|
|
|
Version string `json:"version"`
|
|
|
|
AccessKeyID string `json:"accessKeyId"`
|
|
|
|
SecretAccessKey string `json:"secretAccessKey"`
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
|
|
|
|
2015-09-18 05:59:57 -04:00
|
|
|
// getAuthConfigPath get users config path
|
2015-08-03 19:17:21 -04:00
|
|
|
func getAuthConfigPath() (string, *probe.Error) {
|
2015-07-14 14:55:28 -04:00
|
|
|
if customConfigPath != "" {
|
|
|
|
return customConfigPath, nil
|
|
|
|
}
|
2015-07-08 19:54:32 -04:00
|
|
|
u, err := user.Current()
|
|
|
|
if err != nil {
|
2015-08-08 02:47:22 -04:00
|
|
|
return "", probe.NewError(err)
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
2015-09-18 05:59:57 -04:00
|
|
|
authConfigPath := filepath.Join(u.HomeDir, ".minio")
|
2015-07-08 19:54:32 -04:00
|
|
|
return authConfigPath, nil
|
|
|
|
}
|
|
|
|
|
2015-09-18 05:59:57 -04:00
|
|
|
// createAuthConfigPath create users config path
|
|
|
|
func createAuthConfigPath() *probe.Error {
|
|
|
|
authConfigPath, err := getAuthConfigPath()
|
|
|
|
if err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
if err := os.MkdirAll(authConfigPath, 0700); err != nil {
|
|
|
|
return probe.NewError(err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// isAuthConfigFileExists is auth config file exists?
|
|
|
|
func isAuthConfigFileExists() bool {
|
|
|
|
if _, err := os.Stat(mustGetAuthConfigFile()); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// mustGetAuthConfigFile always get users config file, if not panic
|
|
|
|
func mustGetAuthConfigFile() string {
|
|
|
|
authConfigFile, err := getAuthConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return authConfigFile
|
|
|
|
}
|
|
|
|
|
|
|
|
// getAuthConfigFile get users config file
|
|
|
|
func getAuthConfigFile() (string, *probe.Error) {
|
|
|
|
authConfigPath, err := getAuthConfigPath()
|
|
|
|
if err != nil {
|
|
|
|
return "", err.Trace()
|
|
|
|
}
|
2015-10-16 14:26:01 -04:00
|
|
|
return filepath.Join(authConfigPath, "fsUsers.json"), nil
|
2015-09-18 05:59:57 -04:00
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
// customConfigPath for custom config path only for testing purposes
|
2015-07-14 14:55:28 -04:00
|
|
|
var customConfigPath string
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
// saveAuthConfig save auth config
|
|
|
|
func saveAuthConfig(a *AuthConfig) *probe.Error {
|
2015-09-18 05:59:57 -04:00
|
|
|
authConfigFile, err := getAuthConfigFile()
|
2015-07-14 14:55:28 -04:00
|
|
|
if err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return err.Trace()
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
|
|
|
qc, err := quick.New(a)
|
|
|
|
if err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return err.Trace()
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
2015-09-18 05:59:57 -04:00
|
|
|
if err := qc.Save(authConfigFile); err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return err.Trace()
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
// loadAuthConfig load auth config
|
|
|
|
func loadAuthConfig() (*AuthConfig, *probe.Error) {
|
2015-09-18 05:59:57 -04:00
|
|
|
authConfigFile, err := getAuthConfigFile()
|
2015-07-14 14:55:28 -04:00
|
|
|
if err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return nil, err.Trace()
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
2015-09-18 05:59:57 -04:00
|
|
|
if _, err := os.Stat(authConfigFile); err != nil {
|
|
|
|
return nil, probe.NewError(err)
|
|
|
|
}
|
2015-10-04 19:31:07 -04:00
|
|
|
a := &AuthConfig{}
|
2015-10-16 14:26:01 -04:00
|
|
|
a.Version = "1"
|
2015-07-08 19:54:32 -04:00
|
|
|
qc, err := quick.New(a)
|
|
|
|
if err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return nil, err.Trace()
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
2015-09-18 05:59:57 -04:00
|
|
|
if err := qc.Load(authConfigFile); err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return nil, err.Trace()
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|
2015-10-04 19:31:07 -04:00
|
|
|
return qc.Data().(*AuthConfig), nil
|
2015-07-08 19:54:32 -04:00
|
|
|
}
|