78 lines
1.4 KiB
Go
78 lines
1.4 KiB
Go
package runner
|
|
|
|
import (
|
|
"time"
|
|
|
|
luajit "git.sharkk.net/Sky/LuaJIT-to-Go"
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
// extractCookie grabs cookies from the Lua state
|
|
func extractCookie(state *luajit.State) *fasthttp.Cookie {
|
|
cookie := fasthttp.AcquireCookie()
|
|
|
|
// Get name
|
|
state.GetField(-1, "name")
|
|
if !state.IsString(-1) {
|
|
state.Pop(1)
|
|
fasthttp.ReleaseCookie(cookie)
|
|
return nil // Name is required
|
|
}
|
|
cookie.SetKey(state.ToString(-1))
|
|
state.Pop(1)
|
|
|
|
// Get value
|
|
state.GetField(-1, "value")
|
|
if state.IsString(-1) {
|
|
cookie.SetValue(state.ToString(-1))
|
|
}
|
|
state.Pop(1)
|
|
|
|
// Get path
|
|
state.GetField(-1, "path")
|
|
if state.IsString(-1) {
|
|
cookie.SetPath(state.ToString(-1))
|
|
} else {
|
|
cookie.SetPath("/") // Default path
|
|
}
|
|
state.Pop(1)
|
|
|
|
// Get domain
|
|
state.GetField(-1, "domain")
|
|
if state.IsString(-1) {
|
|
cookie.SetDomain(state.ToString(-1))
|
|
}
|
|
state.Pop(1)
|
|
|
|
// Get expires
|
|
state.GetField(-1, "expires")
|
|
if state.IsNumber(-1) {
|
|
expiry := int64(state.ToNumber(-1))
|
|
cookie.SetExpire(time.Unix(expiry, 0))
|
|
}
|
|
state.Pop(1)
|
|
|
|
// Get max age
|
|
state.GetField(-1, "max_age")
|
|
if state.IsNumber(-1) {
|
|
cookie.SetMaxAge(int(state.ToNumber(-1)))
|
|
}
|
|
state.Pop(1)
|
|
|
|
// Get secure
|
|
state.GetField(-1, "secure")
|
|
if state.IsBoolean(-1) {
|
|
cookie.SetSecure(state.ToBoolean(-1))
|
|
}
|
|
state.Pop(1)
|
|
|
|
// Get http only
|
|
state.GetField(-1, "http_only")
|
|
if state.IsBoolean(-1) {
|
|
cookie.SetHTTPOnly(state.ToBoolean(-1))
|
|
}
|
|
state.Pop(1)
|
|
|
|
return cookie
|
|
}
|