-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathlua.go
407 lines (327 loc) · 11.5 KB
/
lua.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
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package engine
import (
"html/template"
"net/http"
"path/filepath"
"strconv"
"github.com/sirupsen/logrus"
"github.com/xyproto/algernon/cachemode"
"github.com/xyproto/algernon/lua/codelib"
"github.com/xyproto/algernon/lua/convert"
"github.com/xyproto/algernon/lua/datastruct"
"github.com/xyproto/algernon/lua/httpclient"
"github.com/xyproto/algernon/lua/jnode"
"github.com/xyproto/algernon/lua/mssql"
"github.com/xyproto/algernon/lua/ollama"
"github.com/xyproto/algernon/lua/onthefly"
"github.com/xyproto/algernon/lua/pquery"
"github.com/xyproto/algernon/lua/pure"
"github.com/xyproto/algernon/lua/upload"
"github.com/xyproto/algernon/lua/users"
"github.com/xyproto/algernon/utils"
"github.com/xyproto/gluamapper"
lua "github.com/xyproto/gopher-lua"
)
// LoadCommonFunctions adds most of the available Lua functions in algernon to
// the given Lua state struct
func (ac *Config) LoadCommonFunctions(w http.ResponseWriter, req *http.Request, filename string, L *lua.LState, flushFunc func(), httpStatus *FutureStatus) {
// Make basic functions, like print, available to the Lua script.
// Only exports functions that can relate to HTTP responses or requests.
ac.LoadBasicWeb(w, req, L, filename, flushFunc, httpStatus)
// Make other basic functions available
ac.LoadBasicSystemFunctions(L)
// Functions for rendering markdown or amber
ac.LoadRenderFunctions(w, req, L)
// If there is a database backend
if ac.perm != nil {
// Retrieve the userstate
userstate := ac.perm.UserState()
// Set the cookie secret, if set
if ac.cookieSecret != "" {
userstate.SetCookieSecret(ac.cookieSecret)
}
// Functions for serving files in the same directory as a script
ac.LoadServeFile(w, req, L, filename)
// Functions mainly for adding admin prefixes and configuring permissions
ac.LoadServerConfigFunctions(L, filename)
// Make the functions related to userstate available to the Lua script
users.Load(w, req, L, userstate)
creator := userstate.Creator()
// Simpleredis data structures
datastruct.LoadList(L, creator)
datastruct.LoadSet(L, creator)
datastruct.LoadHash(L, creator)
datastruct.LoadKeyValue(L, creator)
// For saving and loading Lua functions
codelib.Load(L, creator)
// For executing PostgreSQL queries
pquery.Load(L)
// For executing MSSQL queries
mssql.Load(L)
}
// For handling JSON data
jnode.LoadJSONFunctions(L)
ac.LoadJFile(L, filepath.Dir(filename))
jnode.Load(L)
// Extras
pure.Load(L)
// pprint
// exportREPL(L)
// Plugins
ac.LoadPluginFunctions(L, nil)
// Cache
ac.LoadCacheFunctions(L)
// Pages and Tags
onthefly.Load(L)
// Ollama / LLM support
ollama.Load(L)
// File uploads
upload.Load(L, w, req, filepath.Dir(filename))
// HTTP Client
httpclient.Load(L, ac.serverHeaderName)
}
// RunLua uses a Lua file as the HTTP handler. Also has access to the userstate
// and permissions. Returns an error if there was a problem with running the lua
// script, otherwise nil.
func (ac *Config) RunLua(w http.ResponseWriter, req *http.Request, filename string, flushFunc func(), fust *FutureStatus) error {
// Retrieve a Lua state
L := ac.luapool.Get()
defer ac.luapool.Put(L)
// Warn if the connection is closed before the script has finished.
if ac.verboseMode {
done := make(chan bool)
// Stop the background goroutine when this function returns
// There must be a receiver for the done channel,
// or else this will hang everything!
defer func() {
done <- true
}()
// Set up a background notifier
go func() {
ctx := req.Context()
for {
select {
case <-ctx.Done():
// Client is done
logrus.Warn("Connection to client closed")
case <-done:
// We are done
return
}
}
}() // Call the goroutine
}
// Export functions to the Lua state
// Flush can be an uninitialized channel, it is handled in the function.
ac.LoadCommonFunctions(w, req, filename, L, flushFunc, fust)
// Run the script and return the error value.
// Logging and/or HTTP response is handled elsewhere.
if filepath.Ext(filename) == ".tl" {
return L.DoString(`
local fname = [[` + filename + `]]
local do_cache = ` + strconv.FormatBool(ac.cacheMode == cachemode.Production) + `
if do_cache and tl.cache[fname] then
tl.cache[fname]()
return
end
local result, err = tl.process(fname)
if err ~= nil then
throw('Teal failed to process file: '..err)
end
if #result.syntax_errors > 0 then
local err = result.syntax_errors[1]
throw(err.filename..':'..err.y..': Teal processing error: '..err.msg, 0)
end
local code, gen_error = tl.pretty_print_ast(result.ast, "5.1")
if gen_error ~= nil then
throw('Teal failed to generate Lua: '..err)
end
local chunk = load(code)
if do_cache then
tl.cache[fname] = chunk
end
chunk()
`)
}
return L.DoFile(filename)
}
// RunConfiguration runs a Lua file as a configuration script. Also has access
// to the userstate and permissions. Returns an error if there was a problem
// with running the lua script, otherwise nil. perm can be nil, but then several
// Lua functions will not be exposed.
//
// The idea is not to change the Lua struct or the luapool, but to set the
// configuration variables with the given Lua configuration script.
//
// luaHandler is a flag that lets Lua functions like "handle" and "servedir" be available or not.
func (ac *Config) RunConfiguration(filename string, mux *http.ServeMux, withHandlerFunctions bool) error {
// Retrieve a Lua state
L := ac.luapool.Get()
// Basic system functions, like log()
ac.LoadBasicSystemFunctions(L)
// If there is a database backend
if ac.perm != nil {
// Retrieve the userstate
userstate := ac.perm.UserState()
// Server configuration functions
ac.LoadServerConfigFunctions(L, filename)
creator := userstate.Creator()
// Simpleredis data structures (could be used for storing server stats)
datastruct.LoadList(L, creator)
datastruct.LoadSet(L, creator)
datastruct.LoadHash(L, creator)
datastruct.LoadKeyValue(L, creator)
// For saving and loading Lua functions
codelib.Load(L, creator)
// For executing PostgreSQL queries
pquery.Load(L)
// For executing MSSQL queries
mssql.Load(L)
}
// For handling JSON data
jnode.LoadJSONFunctions(L)
ac.LoadJFile(L, filepath.Dir(filename))
jnode.Load(L)
// Extras
pure.Load(L)
// Plugins
ac.LoadPluginFunctions(L, nil)
// Cache
ac.LoadCacheFunctions(L)
// Pages and Tags
onthefly.Load(L)
// Ollama / LLM support
ollama.Load(L)
// HTTP Client
httpclient.Load(L, ac.serverHeaderName)
if withHandlerFunctions {
// Lua HTTP handlers
ac.LoadLuaHandlerFunctions(L, filename, mux, false, nil, ac.defaultTheme)
}
// Run the script
if err := L.DoFile(filename); err != nil {
// Close the Lua state
L.Close()
// Logging and/or HTTP response is handled elsewhere
return err
}
// Only put the Lua state back if there were no errors
ac.luapool.Put(L)
return nil
}
// LuaFunctionMap returns the functions available in the given Lua code as
// functions in a map that can be used by templates.
//
// Note that the lua functions must only accept and return strings
// and that only the first returned value will be accessible.
// The Lua functions may take an optional number of arguments.
func (ac *Config) LuaFunctionMap(w http.ResponseWriter, req *http.Request, luadata []byte, filename string) (template.FuncMap, error) {
ac.pongomutex.Lock()
defer ac.pongomutex.Unlock()
// Retrieve a Lua state
L := ac.luapool.Get()
defer ac.luapool.Put(L)
// Prepare an empty map of functions (and variables)
funcs := make(template.FuncMap)
// Give no filename (an empty string will be handled correctly by the function).
ac.LoadCommonFunctions(w, req, filename, L, nil, nil)
// Run the script
if err := L.DoString(string(luadata)); err != nil {
// Close the Lua state
L.Close()
// Logging and/or HTTP response is handled elsewhere
return funcs, err
}
// Extract the available functions from the Lua state
globalTable := L.G.Global
globalTable.ForEach(func(key, value lua.LValue) {
// Check if the current value is a string variable
if luaString, ok := value.(lua.LString); ok {
// Store the variable in the same map as the functions (string -> interface)
// for ease of use together with templates.
funcs[key.String()] = luaString.String()
} else if luaTable, ok := value.(*lua.LTable); ok {
// Convert the table to a map and save it.
// Ignore values of a different type.
mapinterface, _ := convert.Table2map(luaTable, false)
switch m := mapinterface.(type) {
case map[string]string:
funcs[key.String()] = map[string]string(m)
case map[string]int:
funcs[key.String()] = map[string]int(m)
case map[int]string:
funcs[key.String()] = map[int]string(m)
case map[int]int:
funcs[key.String()] = map[int]int(m)
}
// Check if the current value is a function
} else if luaFunc, ok := value.(*lua.LFunction); ok {
// Only export the functions defined in the given Lua code,
// not all the global functions. IsG is true if the function is global.
if !luaFunc.IsG {
functionName := key.String()
// Register the function, with a variable number of string arguments
// Functions returning (string, error) are supported by html.template
funcs[functionName] = func(args ...string) (any, error) {
// Create a brand new Lua state
L2 := ac.luapool.New()
defer L2.Close()
// Set up a new Lua state with the current http.ResponseWriter and *http.Request
ac.LoadCommonFunctions(w, req, filename, L2, nil, nil)
// Push the Lua function to run
L2.Push(luaFunc)
// Push the given arguments
for _, arg := range args {
L2.Push(lua.LString(arg))
}
// Run the Lua function
err := L2.PCall(len(args), lua.MultRet, nil)
if err != nil {
// If calling the function did not work out, return the infostring and error
return utils.Infostring(functionName, args), err
}
// Empty return value if no values were returned
var retval any
// Return the first of the returned arguments, as a string
if L2.GetTop() >= 1 {
lv := L2.Get(-1)
tbl, isTable := lv.(*lua.LTable)
switch {
case isTable:
// lv was a Lua Table
retval = gluamapper.ToGoValue(tbl, gluamapper.Option{
NameFunc: func(s string) string {
return s
},
})
if ac.debugMode && ac.verboseMode {
logrus.Infof("%s -> (map)", utils.Infostring(functionName, args))
}
case lv.Type() == lua.LTString:
// lv is a Lua String
retstr := L2.ToString(1)
retval = retstr
if ac.debugMode && ac.verboseMode {
logrus.Infof("%s -> %q", utils.Infostring(functionName, args), retstr)
}
case lv.Type() == lua.LTNumber:
// lv is a Lua Number
retnum := L2.ToNumber(1)
retval = retnum
if ac.debugMode && ac.verboseMode {
logrus.Infof("%s -> %v", utils.Infostring(functionName, args), retnum)
}
default:
retval = "!! not a table, string or number !!"
logrus.Warnf("The returned value from %s has an unrecognized type: %v", utils.Infostring(functionName, args), lv.Type())
}
}
// No return value, return an empty string and nil
return retval, nil
}
}
}
})
// Return the map of functions
return funcs, nil
}