-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstorage_backend.go
More file actions
150 lines (137 loc) · 3.12 KB
/
Copy pathstorage_backend.go
File metadata and controls
150 lines (137 loc) · 3.12 KB
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
146
147
148
149
150
package common
import (
"strings"
"github.com/jumpserver-dev/sdk-go/model"
"github.com/jumpserver-dev/sdk-go/service"
"github.com/jumpserver/wisp/pkg/storage"
)
type StorageType interface {
TypeName() string
}
type ReplayStorage interface {
Upload(gZipFile, target string) error
StorageType
}
type CommandStorage interface {
BulkSave(commands []*model.Command) error
StorageType
}
func NewCommandBackend(apiClient *service.JMService, cfg *model.CommandConfig) CommandStorage {
switch cfg.TypeName {
case "es", "elasticsearch":
var hosts = cfg.Hosts
var skipVerify bool
index := cfg.Index
docType := cfg.DocType
if cfg.Other != nil {
skipVerify = cfg.Other.IgnoreVerifyCerts
}
if index == "" {
index = "jumpserver"
}
if docType == "" {
docType = "_doc"
}
return storage.ESCommandStorage{
Hosts: hosts,
Index: index,
DocType: docType,
InsecureSkipVerify: skipVerify,
}
case "null":
return storage.NewNullStorage()
default:
return storage.ServerStorage{StorageType: "server", JmsService: apiClient}
}
}
func NewReplayBackend(apiClient *service.JMService, cfg *model.ReplayConfig) ReplayStorage {
switch cfg.TypeName {
case "azure":
var (
accountName string
accountKey string
containerName string
endpointSuffix string
)
endpointSuffix = cfg.EndpointSuffix
accountName = cfg.AccountName
accountKey = cfg.AccountKey
containerName = cfg.ContainerName
if endpointSuffix == "" {
endpointSuffix = "core.chinacloudapi.cn"
}
return storage.AzureReplayStorage{
AccountName: accountName,
AccountKey: accountKey,
ContainerName: containerName,
EndpointSuffix: endpointSuffix,
}
case "oss":
var (
endpoint string
bucket string
accessKey string
secretKey string
)
endpoint = cfg.Endpoint
bucket = cfg.Bucket
accessKey = cfg.AccessKey
secretKey = cfg.SecretKey
return storage.OSSReplayStorage{
Endpoint: endpoint,
Bucket: bucket,
AccessKey: accessKey,
SecretKey: secretKey,
}
case "s3", "swift", "cos":
var (
region string
endpoint string
bucket string
accessKey string
secretKey string
)
bucket = cfg.Bucket
endpoint = cfg.Endpoint
region = cfg.Region
accessKey = cfg.AccessKey
secretKey = cfg.SecretKey
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,
}
case "obs":
var (
endpoint string
bucket string
accessKey string
secretKey string
)
endpoint = cfg.Endpoint
bucket = cfg.Bucket
accessKey = cfg.AccessKey
secretKey = cfg.SecretKey
return storage.OBSReplayStorage{
Endpoint: endpoint,
Bucket: bucket,
AccessKey: accessKey,
SecretKey: secretKey,
}
case "null":
return storage.NewNullStorage()
default:
return storage.ServerStorage{StorageType: "server", JmsService: apiClient}
}
}