forked from coaidev/coai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.go
291 lines (239 loc) · 7.36 KB
/
system.go
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
package channel
import (
"chat/globals"
"chat/utils"
"fmt"
"github.com/spf13/viper"
"strings"
)
type ApiInfo struct {
Title string `json:"title"`
Logo string `json:"logo"`
File string `json:"file"`
Docs string `json:"docs"`
Announcement string `json:"announcement"`
BuyLink string `json:"buy_link"`
Contact string `json:"contact"`
Footer string `json:"footer"`
AuthFooter bool `json:"auth_footer"`
Mail bool `json:"mail"`
Article []string `json:"article"`
Generation []string `json:"generation"`
RelayPlan bool `json:"relay_plan"`
}
type generalState struct {
Title string `json:"title" mapstructure:"title"`
Logo string `json:"logo" mapstructure:"logo"`
Backend string `json:"backend" mapstructure:"backend"`
File string `json:"file" mapstructure:"file"`
Docs string `json:"docs" mapstructure:"docs"`
PWAManifest string `json:"pwa_manifest" mapstructure:"pwamanifest"`
}
type siteState struct {
CloseRegister bool `json:"close_register" mapstructure:"closeregister"`
RelayPlan bool `json:"relay_plan" mapstructure:"relayplan"`
Quota float64 `json:"quota" mapstructure:"quota"`
BuyLink string `json:"buy_link" mapstructure:"buylink"`
Announcement string `json:"announcement" mapstructure:"announcement"`
Contact string `json:"contact" mapstructure:"contact"`
Footer string `json:"footer" mapstructure:"footer"`
AuthFooter bool `json:"auth_footer" mapstructure:"authfooter"`
}
type whiteList struct {
Enabled bool `json:"enabled" mapstructure:"enabled"`
Custom string `json:"custom" mapstructure:"custom"`
WhiteList []string `json:"white_list" mapstructure:"whitelist"`
}
type mailState struct {
Host string `json:"host" mapstructure:"host"`
Port int `json:"port" mapstructure:"port"`
Username string `json:"username" mapstructure:"username"`
Password string `json:"password" mapstructure:"password"`
From string `json:"from" mapstructure:"from"`
WhiteList whiteList `json:"white_list" mapstructure:"whitelist"`
}
type searchState struct {
Endpoint string `json:"endpoint" mapstructure:"endpoint"`
Query int `json:"query" mapstructure:"query"`
}
type commonState struct {
Article []string `json:"article" mapstructure:"article"`
Generation []string `json:"generation" mapstructure:"generation"`
Cache []string `json:"cache" mapstructure:"cache"`
Expire int64 `json:"expire" mapstructure:"expire"`
Size int64 `json:"size" mapstructure:"size"`
ImageStore bool `json:"image_store" mapstructure:"imagestore"`
}
type SystemConfig struct {
General generalState `json:"general" mapstructure:"general"`
Site siteState `json:"site" mapstructure:"site"`
Mail mailState `json:"mail" mapstructure:"mail"`
Search searchState `json:"search" mapstructure:"search"`
Common commonState `json:"common" mapstructure:"common"`
}
func NewSystemConfig() *SystemConfig {
conf := &SystemConfig{}
if err := viper.UnmarshalKey("system", conf); err != nil {
panic(err)
}
conf.Load()
return conf
}
func (c *SystemConfig) Load() {
globals.NotifyUrl = c.GetBackend()
globals.ArticlePermissionGroup = c.Common.Article
globals.GenerationPermissionGroup = c.Common.Generation
globals.CacheAcceptedModels = c.Common.Cache
globals.CacheAcceptedExpire = c.GetCacheAcceptedExpire()
globals.CacheAcceptedSize = c.GetCacheAcceptedSize()
globals.AcceptImageStore = c.AcceptImageStore()
if c.General.PWAManifest == "" {
c.General.PWAManifest = utils.ReadPWAManifest()
}
}
func (c *SystemConfig) SaveConfig() error {
viper.Set("system", c)
c.Load()
return viper.WriteConfig()
}
func (c *SystemConfig) AsInfo() ApiInfo {
return ApiInfo{
Title: c.General.Title,
Logo: c.General.Logo,
File: c.General.File,
Docs: c.General.Docs,
Announcement: c.Site.Announcement,
Contact: c.Site.Contact,
Footer: c.Site.Footer,
AuthFooter: c.Site.AuthFooter,
BuyLink: c.Site.BuyLink,
Mail: c.IsMailValid(),
Article: c.Common.Article,
Generation: c.Common.Generation,
RelayPlan: c.Site.RelayPlan,
}
}
func (c *SystemConfig) UpdateConfig(data *SystemConfig) error {
c.General = data.General
c.Site = data.Site
c.Mail = data.Mail
c.Search = data.Search
c.Common = data.Common
utils.ApplySeo(c.General.Title, c.General.Logo)
utils.ApplyPWAManifest(c.General.PWAManifest)
return c.SaveConfig()
}
func (c *SystemConfig) GetInitialQuota() float64 {
return c.Site.Quota
}
func (c *SystemConfig) GetBackend() string {
return strings.TrimSuffix(c.General.Backend, "/")
}
func (c *SystemConfig) GetMail() *utils.SmtpPoster {
return utils.NewSmtpPoster(
c.Mail.Host,
c.Mail.Port,
c.Mail.Username,
c.Mail.Password,
c.Mail.From,
)
}
func (c *SystemConfig) IsMailValid() bool {
return c.GetMail().Valid()
}
func (c *SystemConfig) GetMailSuffix() []string {
if c.Mail.WhiteList.Enabled {
return c.Mail.WhiteList.WhiteList
}
return []string{}
}
func (c *SystemConfig) IsValidMailSuffix(suffix string) bool {
if c.Mail.WhiteList.Enabled {
return utils.Contains(suffix, c.Mail.WhiteList.WhiteList)
}
return true
}
func (c *SystemConfig) IsValidMail(email string) error {
segment := strings.Split(email, "@")
if len(segment) != 2 {
return fmt.Errorf("invalid email format")
}
if suffix := segment[1]; !c.IsValidMailSuffix(suffix) {
return fmt.Errorf("email suffix @%s is not allowed to register", suffix)
}
return nil
}
func (c *SystemConfig) SendVerifyMail(email string, code string) error {
type Temp struct {
Title string `json:"title"`
Logo string `json:"logo"`
Code string `json:"code"`
}
return c.GetMail().RenderMail(
"code.html",
Temp{Title: c.GetAppName(), Logo: c.GetAppLogo(), Code: code},
email,
fmt.Sprintf("%s | OTP Verification", c.GetAppName()),
)
}
func (c *SystemConfig) GetSearchEndpoint() string {
if len(c.Search.Endpoint) == 0 {
return "https://duckduckgo-api.vercel.app"
}
endpoint := c.Search.Endpoint
if strings.HasSuffix(endpoint, "/search") {
return endpoint[:len(endpoint)-7]
} else if strings.HasSuffix(endpoint, "/") {
return endpoint[:len(endpoint)-1]
}
return endpoint
}
func (c *SystemConfig) GetSearchQuery() int {
if c.Search.Query <= 0 {
return 5
}
return c.Search.Query
}
func (c *SystemConfig) GetAppName() string {
title := strings.TrimSpace(c.General.Title)
if len(title) == 0 {
return "Chat Nio"
}
return title
}
func (c *SystemConfig) GetAppLogo() string {
logo := strings.TrimSpace(c.General.Logo)
if len(logo) == 0 {
return "https://chatnio.net/favicon.ico"
}
return logo
}
func (c *SystemConfig) GetCacheAcceptedModels() []string {
return c.Common.Cache
}
func (c *SystemConfig) GetCacheAcceptedExpire() int64 {
if c.Common.Expire <= 0 {
// default 1 hour
return 3600
}
return c.Common.Expire
}
func (c *SystemConfig) GetCacheAcceptedSize() int64 {
if c.Common.Size < 1 {
return 1
}
return c.Common.Size
}
func (c *SystemConfig) AcceptImageStore() bool {
// if notify url is empty, then image store is not allowed
if len(strings.TrimSpace(globals.NotifyUrl)) == 0 {
return false
}
return c.Common.ImageStore
}
func (c *SystemConfig) IsCloseRegister() bool {
return c.Site.CloseRegister
}
func (c *SystemConfig) SupportRelayPlan() bool {
return c.Site.RelayPlan
}