1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package proxy
import (
"strings"
"github.com/jumpserver/koko/pkg/config"
"github.com/jumpserver/koko/pkg/model"
storage "github.com/jumpserver/koko/pkg/proxy/recorderstorage"
)
type ReplayStorage interface {
Upload(gZipFile, target string) error
}
type CommandStorage interface {
BulkSave(commands []*model.Command) error
}
var defaultCommandStorage = storage.ServerCommandStorage{}
var defaultReplayStorage = storage.ServerReplayStorage{StorageType: "server"}
func NewReplayStorage() ReplayStorage {
cf := config.GetConf().ReplayStorage
tp, ok := cf["TYPE"]
if !ok {
tp = "server"
}
switch tp {
case "azure":
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: accountName,
AccountKey: accountKey,
ContainerName: containerName,
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: endpoint,
Bucket: bucket,
AccessKey: accessKey,
SecretKey: secretKey,
}
case "s3":
var region string
var 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"
}
return storage.S3ReplayStorage{
Bucket: bucket,
Region: region,
AccessKey: accessKey,
SecretKey: secretKey,
Endpoint: endpoint,
}
default:
return defaultReplayStorage
}
}
func NewCommandStorage() CommandStorage {
cf := config.GetConf().CommandStorage
tp, ok := cf["TYPE"]
if !ok {
tp = "server"
}
switch tp {
case "es", "elasticsearch":
var hosts = make([]string, len(cf["HOSTS"].([]interface{})))
for i, item := range cf["HOSTS"].([]interface{}) {
hosts[i] = item.(string)
}
index := cf["INDEX"].(string)
docType := cf["DOC_TYPE"].(string)
if index == "" {
index = "jumpserver"
}
if docType == "" {
docType = "command_store"
}
return storage.ESCommandStorage{Hosts: hosts, Index: index, DocType: docType}
default:
return defaultCommandStorage
}
}