-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathSettings.lua
343 lines (296 loc) · 10.1 KB
/
Settings.lua
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
--[[-----------------------------------------------------------------------
The MIT License (MIT)
Copyright (c) 2010-2020 Mark Rogaski
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
--]] -----------------------------------------------------------------------
--[[-----------------------------------------------------------------------
Imported Libraries
--]] -----------------------------------------------------------------------
--[[-----------------------------------------------------------------------
Class Variables
--]] -----------------------------------------------------------------------
GwSettings = {}
GwSettings.__index = GwSettings
--- GwSettings constructor function.
-- @return An initialized GwSettings instance.
function GwSettings:new()
-- Object instantiation
local self = {}
setmetatable(self, GwSettings)
-- Default Settings
self._default = {
mode = {
value = GW_MODE_ACCOUNT,
compat = GW_MODE_CHARACTER,
desc = 'settings mode: account or character',
meta = true,
opts = { GW_MODE_ACCOUNT, GW_MODE_CHARACTER }
},
tag = {
value = true,
desc = "co-guild tagging"
},
roster = {
value = true,
desc = "co-guild roster announcements"
},
debug = {
value = GW_LOG_NONE,
min = 0,
max = 5,
desc = "debugging level"
},
verbose = {
value = false,
desc = "verbose debugging"
},
log = {
value = false,
desc = "event logging"
},
logsize = {
value = 2048,
min = 0,
max = 8192,
desc = "maximum log buffer size"
},
ochat = {
value = false,
desc = "officer chat bridging"
},
redact = {
value = true,
desc = "obfuscate sensitive data"
},
joindelay = {
value = 30,
min = 0,
max = 120,
step = 1,
desc = "channel join delay"
}
}
for k, v in pairs(self._default) do
self._default[k].type = type(v.value)
end
-- Initialize saved settings
local compat = false
if type(GreenWall) == 'table' then
compat = true
end
GreenWallMeta = self:initialize(GreenWallMeta, true, compat)
GreenWall = self:initialize(GreenWall, false)
GreenWallAccount = self:initialize(GreenWallAccount, false)
self._meta = GreenWallMeta
self._data = {
[GW_MODE_CHARACTER] = GreenWall,
[GW_MODE_ACCOUNT] = GreenWallAccount
}
-- Initialize user log
if GreenWallLog == nil then
GreenWallLog = {}
end
self._log = GreenWallLog
gw.Debug(GW_LOG_INFO, 'settings initialized')
return self
end
--- Set the default values and attributes.
-- @param svtable Settings table reference (may be nil).
-- @param meta True if the table is metadata for settings, false otherwise.
-- @param compat True is compatibility with a previous installation is needed, false otherwsie.
-- @return An initialized settings table reference.
function GwSettings:initialize(svtable, meta, compat)
local store
local init = false
gw.Debug(GW_LOG_INFO, 'initializing settings (meta=%s)', tostring(meta))
-- Create the store if necessary
if svtable == nil then
local ts = date('%Y-%m-%d %H:%M:%S')
store = {
created = ts,
updated = ts
}
init = true
else
store = svtable
end
-- Groom the valid variables
for k, v in pairs(self._default) do
if not meta == not v.meta then -- Negate both to coerce any to false
if store[k] == nil or self:validate(k, store[k]) then
if compat then
store[k] = v.compat
else
store[k] = v.value
end
gw.Debug(GW_LOG_DEBUG, 'initialized %s to "%s"', k, tostring(store[k]))
end
end
end
-- Update the metadata
store.version = gw.version
return store
end
--- Reset options to default values.
-- @param svtable Settings table reference
-- @param meta True if meta options should be reset, false otherwise.
function GwSettings:reset(svtable, meta)
for k, v in pairs(self._default) do
if not v.meta or meta then
if svtable[k] == nil or self:validate(k, svtable[k]) then
svtable[k] = v.value
end
end
end
end
--- Check if a setting exists.
-- @param name The name of the setting.
-- @return True if the setting exists, false otherwise.
function GwSettings:exists(name)
return self._default[name] ~= nil
end
--- Get a user setting attribute.
-- @param name The name of the setting.
-- @param attr The setting attribute.
-- @return The setting attribute value.
function GwSettings:getattr(name, attr)
if self._default[name] == nil then
return
else
return self._default[name][attr]
end
end
--- Check if a setting is a meta variable.
-- @param name The name of the setting.
-- @return True if the setting is a meta variable, false otherwise.
function GwSettings:is_meta(name)
if self:exists(name) then
if self:getattr(name, 'meta') then
return true
else
return false
end
else
return false
end
end
--- Return settings mode.
-- @return GW_MODE_CHARACTER or GW_MODE_ACCOUNT.
function GwSettings:mode()
return self._meta.mode
end
--- Get a user setting value.
-- @param name The name of the setting.
-- @param mode An optional mode to specify which settings to retrieve, GW_MODE_CHARACTER or GW_MODE_ACCOUNT.
-- @return The setting value.
function GwSettings:get(name, mode)
if self:exists(name) then
local value
if self:is_meta(name) then
value = self._meta[name]
else
if mode then
value = self._data[mode][name]
else
value = self._data[self:mode()][name]
end
end
return value
else
return
end
end
--- Set a user setting value.
-- @param name The name of the setting.
-- @param value The value of the setting.
-- @return A string containing an error message on failure, nil on success.
function GwSettings:validate(name, value)
local function contains(list, item)
for _, value in ipairs(list) do
if value == item then
return true
end
end
return false
end
if not self:exists(name) then
return string.format('%s is not a valid setting', name)
else
local opt_type = self:getattr(name, 'type')
if type(value) ~= opt_type then
return string.format('%s must be a %s value', name, opt_type)
end
if opt_type == 'number' then
if self:getattr(name, 'min') and self:getattr(name, 'min') > value then
return string.format('%s must be greater than or equal to %d',
name, self:getattr(name, 'min'))
end
if self:getattr(name, 'max') and self:getattr(name, 'max') < value then
return string.format('%s must be less than or equal to %d',
name, self:getattr(name, 'max'))
end
elseif opt_type == 'string' then
if self:getattr(name, 'opts') and not contains(self:getattr(name, 'opts'), value) then
return string.format('invalid option for %s: %s', name, value)
end
end
end
return
end
--- Set a user setting value.
-- @param name The name of the setting.
-- @param value The value of the setting.
-- @param mode An optional mode to specify which settings to update, GW_MODE_CHARACTER or GW_MODE_ACCOUNT.
-- @return True on success, false on failure.
function GwSettings:set(name, value, mode)
-- Validate the new value
local err = self:validate(name, value)
if err then
gw.Error(err)
return false
end
-- Apply the new setting
local curr = self:get(name, mode)
if self:is_meta(name) then
self._meta[name] = value
self._meta.updated = date('%Y-%m-%d %H:%M:%S')
else
if not mode then
mode = self:mode()
end
self._data[mode][name] = value
self._data[mode].updated = date('%Y-%m-%d %H:%M:%S')
end
-- Special handling for value changes
if curr ~= value then
gw.Debug(GW_LOG_INFO, 'changed %s from "%s" to "%s" (%s)',
name, tostring(curr), tostring(value), tostring(self:mode()))
if name == 'logsize' then
gw.Debug(GW_LOG_INFO, 'trimming user log')
while #self._log > value do
tremove(self._log, 1)
end
elseif name == 'joindelay' then
gw.Debug(GW_LOG_INFO, 'updating channel timers')
gw.config.timer.channel:set(value)
elseif name == 'ochat' then
gw.Debug(GW_LOG_INFO, 'reloading officer chat channel')
gw.config:reload()
end
end
return true
end