Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
cadb91a3
Unverified
Commit
cadb91a3
authored
Dec 05, 2019
by
Eric_Lee
Committed by
GitHub
Dec 05, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #167 from jumpserver/dev_bugfix
[Bugfix] fix s3 config panic error
parents
1f0b2c54
37d328eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
21 deletions
+70
-21
s3.go
pkg/proxy/recorderstorage/s3.go
+4
-3
util.go
pkg/proxy/util.go
+66
-18
No files found.
pkg/proxy/recorderstorage/s3.go
View file @
cadb91a3
...
...
@@ -28,9 +28,10 @@ func (s S3ReplayStorage) Upload(gZipFilePath, target string) (err error) {
}
defer
file
.
Close
()
s3Config
:=
&
aws
.
Config
{
Credentials
:
credentials
.
NewStaticCredentials
(
s
.
AccessKey
,
s
.
SecretKey
,
""
),
Endpoint
:
aws
.
String
(
s
.
Endpoint
),
Region
:
aws
.
String
(
s
.
Region
),
Credentials
:
credentials
.
NewStaticCredentials
(
s
.
AccessKey
,
s
.
SecretKey
,
""
),
Endpoint
:
aws
.
String
(
s
.
Endpoint
),
Region
:
aws
.
String
(
s
.
Region
),
S3ForcePathStyle
:
aws
.
Bool
(
true
),
}
sess
:=
session
.
Must
(
session
.
NewSession
(
s3Config
))
...
...
pkg/proxy/util.go
View file @
cadb91a3
...
...
@@ -27,42 +27,90 @@ func NewReplayStorage() ReplayStorage {
}
switch
tp
{
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
==
""
{
endpointSuffix
=
"core.chinacloudapi.cn"
}
return
storage
.
AzureReplayStorage
{
AccountName
:
cf
[
"ACCOUNT_NAME"
]
.
(
string
)
,
AccountKey
:
cf
[
"ACCOUNT_KEY"
]
.
(
string
)
,
ContainerName
:
c
f
[
"CONTAINER_NAME"
]
.
(
string
)
,
AccountName
:
accountName
,
AccountKey
:
accountKey
,
ContainerName
:
c
ontainerName
,
EndpointSuffix
:
endpointSuffix
,
}
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
{
Endpoint
:
cf
[
"ENDPOINT"
]
.
(
string
)
,
Bucket
:
cf
[
"BUCKET"
]
.
(
string
)
,
AccessKey
:
cf
[
"ACCESS_KEY"
]
.
(
string
)
,
SecretKey
:
cf
[
"SECRET_KEY"
]
.
(
string
)
,
Endpoint
:
endpoint
,
Bucket
:
bucket
,
AccessKey
:
accessKey
,
SecretKey
:
secretKey
,
}
case
"s3"
:
var
region
string
var
endpoint
string
bucket
:=
cf
[
"BUCKET"
]
.
(
string
)
endpoint
=
cf
[
"ENDPOINT"
]
.
(
string
)
var
bucket
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
==
""
{
bucket
=
"jumpserver"
}
if
cf
[
"REGION"
]
!=
nil
{
region
=
cf
[
"REGION"
]
.
(
string
)
}
else
{
region
=
strings
.
Split
(
endpoint
,
"."
)[
1
]
}
return
storage
.
S3ReplayStorage
{
Bucket
:
bucket
,
Region
:
region
,
AccessKey
:
cf
[
"ACCESS_KEY"
]
.
(
string
)
,
SecretKey
:
cf
[
"SECRET_KEY"
]
.
(
string
)
,
AccessKey
:
accessKey
,
SecretKey
:
secretKey
,
Endpoint
:
endpoint
,
}
default
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment