-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathluahandler.go
69 lines (58 loc) · 2.45 KB
/
luahandler.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
package engine
import (
"net/http"
"path/filepath"
"sync"
"github.com/didip/tollbooth"
"github.com/sirupsen/logrus"
"github.com/xyproto/algernon/themes"
lua "github.com/xyproto/gopher-lua"
)
// LoadLuaHandlerFunctions makes functions related to handling HTTP requests
// available to Lua scripts
func (ac *Config) LoadLuaHandlerFunctions(L *lua.LState, filename string, mux *http.ServeMux, addDomain bool, httpStatus *FutureStatus, theme string) {
luahandlermutex := &sync.RWMutex{}
L.SetGlobal("handle", L.NewFunction(func(L *lua.LState) int {
handlePath := L.ToString(1)
handleFunc := L.ToFunction(2)
// TODO: Set up a channel and function for retrieving a lua "handleFunc" and running it,
// using the common luapool as needed
wrappedHandleFunc := func(w http.ResponseWriter, req *http.Request) {
// Set up a new Lua state with the current http.ResponseWriter and *http.Request
luahandlermutex.Lock()
ac.LoadCommonFunctions(w, req, filename, L, nil, httpStatus)
luahandlermutex.Unlock()
// Then run the given Lua function
L.Push(handleFunc)
if err := L.PCall(0, lua.MultRet, nil); err != nil {
// Non-fatal error
logrus.Error("Handler for "+handlePath+" failed:", err)
}
// Then exit after the first request, if specified
if ac.quitAfterFirstRequest {
go ac.quitSoon("Quit after first request", defaultSoonDuration)
}
}
// Handle requests differently depending on if rate limiting is enabled or not
if ac.disableRateLimiting {
mux.HandleFunc(handlePath, wrappedHandleFunc)
} else {
limiter := tollbooth.NewLimiter(float64(ac.limitRequests), nil)
limiter.SetMessage(themes.MessagePage("Rate-limit exceeded", "<div style='color:red'>You have reached the maximum request limit.</div>", theme))
limiter.SetMessageContentType(htmlUTF8)
mux.Handle(handlePath, tollbooth.LimitFuncHandler(limiter, wrappedHandleFunc))
}
return 0 // number of results
}))
L.SetGlobal("servedir", L.NewFunction(func(L *lua.LState) int {
handlePath := L.ToString(1) // serve as (ie. "/")
rootdir := L.ToString(2) // filesystem directory (ie. "./public")
if handlePath == "" || rootdir == "" {
logrus.Errorf("servedir needs an URL path to serve, ie. %q and a directory releative to %q, ie. %q", "/", filepath.Dir(filename), "./public")
return 0
}
rootdir = filepath.Join(filepath.Dir(filename), rootdir)
ac.RegisterHandlers(mux, handlePath, rootdir, addDomain)
return 0 // number of results
}))
}