Commit 37d328eb authored by Eric's avatar Eric

[Bugfix] fix s3 config panic error

parent 1f0b2c54
...@@ -28,9 +28,10 @@ func (s S3ReplayStorage) Upload(gZipFilePath, target string) (err error) { ...@@ -28,9 +28,10 @@ func (s S3ReplayStorage) Upload(gZipFilePath, target string) (err error) {
} }
defer file.Close() defer file.Close()
s3Config := &aws.Config{ s3Config := &aws.Config{
Credentials: credentials.NewStaticCredentials(s.AccessKey, s.SecretKey, ""), Credentials: credentials.NewStaticCredentials(s.AccessKey, s.SecretKey, ""),
Endpoint: aws.String(s.Endpoint), Endpoint: aws.String(s.Endpoint),
Region: aws.String(s.Region), Region: aws.String(s.Region),
S3ForcePathStyle: aws.Bool(true),
} }
sess := session.Must(session.NewSession(s3Config)) sess := session.Must(session.NewSession(s3Config))
......
...@@ -27,42 +27,90 @@ func NewReplayStorage() ReplayStorage { ...@@ -27,42 +27,90 @@ func NewReplayStorage() ReplayStorage {
} }
switch tp { switch tp {
case "azure": case "azure":
endpointSuffix := cf["ENDPOINT_SUFFIX"].(string) var accountName string
var accountKey string
var containerName string
var endpointSuffix string
if value, ok := cf["ENDPOINT_SUFFIX"].(string); ok {
endpointSuffix = value
}
if value, ok := cf["ACCOUNT_NAME"].(string); ok {
accountName = value
}
if value, ok := cf["ACCOUNT_KEY"].(string); ok {
accountKey = value
}
if value, ok := cf["CONTAINER_NAME"].(string); ok {
containerName = value
}
if endpointSuffix == "" { if endpointSuffix == "" {
endpointSuffix = "core.chinacloudapi.cn" endpointSuffix = "core.chinacloudapi.cn"
} }
return storage.AzureReplayStorage{ return storage.AzureReplayStorage{
AccountName: cf["ACCOUNT_NAME"].(string), AccountName: accountName,
AccountKey: cf["ACCOUNT_KEY"].(string), AccountKey: accountKey,
ContainerName: cf["CONTAINER_NAME"].(string), ContainerName: containerName,
EndpointSuffix: endpointSuffix, EndpointSuffix: endpointSuffix,
} }
case "oss": case "oss":
var endpoint string
var bucket string
var accessKey string
var secretKey string
if value, ok := cf["ENDPOINT"].(string); ok {
endpoint = value
}
if value, ok := cf["BUCKET"].(string); ok {
bucket = value
}
if value, ok := cf["ACCESS_KEY"].(string); ok {
accessKey = value
}
if value, ok := cf["SECRET_KEY"].(string); ok {
secretKey = value
}
return storage.OSSReplayStorage{ return storage.OSSReplayStorage{
Endpoint: cf["ENDPOINT"].(string), Endpoint: endpoint,
Bucket: cf["BUCKET"].(string), Bucket: bucket,
AccessKey: cf["ACCESS_KEY"].(string), AccessKey: accessKey,
SecretKey: cf["SECRET_KEY"].(string), SecretKey: secretKey,
} }
case "s3": case "s3":
var region string var region string
var endpoint string var endpoint string
bucket := cf["BUCKET"].(string) var bucket string
endpoint = cf["ENDPOINT"].(string) var accessKey string
var secretKey string
if value, ok := cf["BUCKET"].(string); ok {
bucket = value
}
if value, ok := cf["ENDPOINT"].(string); ok {
endpoint = value
}
if value, ok := cf["REGION"].(string); ok {
region = value
}
if value, ok := cf["ACCESS_KEY"].(string); ok {
accessKey = value
}
if value, ok := cf["SECRET_KEY"].(string); ok {
secretKey = value
}
if region == "" && endpoint != "" {
endpointArray := strings.Split(endpoint, ".")
if len(endpointArray) >= 2 {
region = endpointArray[1]
}
}
if bucket == "" { if bucket == "" {
bucket = "jumpserver" bucket = "jumpserver"
} }
if cf["REGION"] != nil {
region = cf["REGION"].(string)
} else {
region = strings.Split(endpoint, ".")[1]
}
return storage.S3ReplayStorage{ return storage.S3ReplayStorage{
Bucket: bucket, Bucket: bucket,
Region: region, Region: region,
AccessKey: cf["ACCESS_KEY"].(string), AccessKey: accessKey,
SecretKey: cf["SECRET_KEY"].(string), SecretKey: secretKey,
Endpoint: endpoint, Endpoint: endpoint,
} }
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment