mirror of
https://github.com/lune-org/docs.git
synced 2025-04-04 18:40:59 +01:00
feat(module): fix C-yield in metamethod due to stdio async
This commit is contained in:
parent
a22d9d2dc5
commit
45289f43e1
1 changed files with 28 additions and 42 deletions
|
@ -1,11 +1,13 @@
|
||||||
|
local datetime = require("@lune/datetime")
|
||||||
local fs = require("@lune/fs")
|
local fs = require("@lune/fs")
|
||||||
local luau = require("@lune/luau")
|
local luau = require("@lune/luau")
|
||||||
|
local net = require("@lune/net")
|
||||||
local process = require("@lune/process")
|
local process = require("@lune/process")
|
||||||
|
local regex = require("@lune/regex")
|
||||||
|
local roblox = require("@lune/roblox")
|
||||||
local serde = require("@lune/serde")
|
local serde = require("@lune/serde")
|
||||||
local stdio = require("@lune/stdio")
|
local stdio = require("@lune/stdio")
|
||||||
local task = require("@lune/task")
|
local task = require("@lune/task")
|
||||||
local regex = require("@lune/regex")
|
|
||||||
local datetime = require("@lune/datetime")
|
|
||||||
|
|
||||||
local processArgs = table.clone(process.args)
|
local processArgs = table.clone(process.args)
|
||||||
local filePath: string = table.remove(processArgs, 1)
|
local filePath: string = table.remove(processArgs, 1)
|
||||||
|
@ -26,25 +28,6 @@ local SANDBOXED_ENV = {
|
||||||
local PROMPT_MSG_TMPL = `allow {SANDBOXED_ENV.debugName} to access %s?`
|
local PROMPT_MSG_TMPL = `allow {SANDBOXED_ENV.debugName} to access %s?`
|
||||||
local DENIED_ERR_TMPL = `{SANDBOXED_ENV.debugName} tried to access disallowed library %s!`
|
local DENIED_ERR_TMPL = `{SANDBOXED_ENV.debugName} tried to access disallowed library %s!`
|
||||||
|
|
||||||
local function constructSandboxMt(requirePath: string)
|
|
||||||
return function(self, key)
|
|
||||||
local module = require(requirePath)
|
|
||||||
return module[key]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function constructProtectedLibMt(libName: string)
|
|
||||||
return function(self, key)
|
|
||||||
local allow: boolean = stdio.prompt("confirm", string.format(PROMPT_MSG_TMPL, libName))
|
|
||||||
|
|
||||||
if allow then
|
|
||||||
return constructSandboxMt(`@lune/{libName}`)(self, key)
|
|
||||||
end
|
|
||||||
|
|
||||||
error(string.format(DENIED_ERR_TMPL, "fs"))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function discoverAndReadScript(filePath: string): string
|
local function discoverAndReadScript(filePath: string): string
|
||||||
local scriptContents: string
|
local scriptContents: string
|
||||||
|
|
||||||
|
@ -93,29 +76,28 @@ end
|
||||||
|
|
||||||
local function sandboxPrint(...: any)
|
local function sandboxPrint(...: any)
|
||||||
DEFAULT_PRINT(`---- Output from {SANDBOXED_ENV.debugName} ----`)
|
DEFAULT_PRINT(`---- Output from {SANDBOXED_ENV.debugName} ----`)
|
||||||
DEFAULT_PRINT(...)
|
DEFAULT_PRINT(tostring(...))
|
||||||
DEFAULT_PRINT(`---------------------------------------`)
|
DEFAULT_PRINT(`---------------------------------------`)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function constructProtectedMt<T>(library: T)
|
||||||
|
return {
|
||||||
|
__index = library,
|
||||||
|
__tostring = function()
|
||||||
|
return stdio.format(library)
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
local SANDBOXED_LUNE_STD_LIB = {
|
local SANDBOXED_LUNE_STD_LIB = {
|
||||||
["@lune/fs"] = setmetatable({}, {
|
["@lune/fs"] = setmetatable({}, constructProtectedMt(fs)),
|
||||||
__index = constructProtectedLibMt("fs"),
|
["@lune/luau"] = setmetatable({}, constructProtectedMt(luau)),
|
||||||
}),
|
["@lune/process"] = setmetatable({}, constructProtectedMt(process)),
|
||||||
["@lune/luau"] = setmetatable({}, {
|
|
||||||
__index = constructProtectedLibMt("luau")
|
|
||||||
}),
|
|
||||||
["@lune/process"] = setmetatable({}, {
|
|
||||||
__index = constructProtectedLibMt("process"),
|
|
||||||
}),
|
|
||||||
["@lune/stdio"] = setmetatable({
|
["@lune/stdio"] = setmetatable({
|
||||||
write = sandboxPrint,
|
write = sandboxPrint,
|
||||||
ewrite = sandboxPrint,
|
ewrite = sandboxPrint,
|
||||||
}, {
|
}, constructProtectedMt(stdio)),
|
||||||
__index = constructSandboxMt("@lune/stdio"),
|
["@lune/net"] = setmetatable({}, constructProtectedMt(net)),
|
||||||
}),
|
|
||||||
["@lune/net"] = setmetatable({}, {
|
|
||||||
__index = constructProtectedLibMt("net"),
|
|
||||||
}),
|
|
||||||
["@lune/roblox"] = setmetatable({
|
["@lune/roblox"] = setmetatable({
|
||||||
getAuthCookie = function(...)
|
getAuthCookie = function(...)
|
||||||
local allowAuthCookie: boolean = stdio.prompt(
|
local allowAuthCookie: boolean = stdio.prompt(
|
||||||
|
@ -124,7 +106,7 @@ local SANDBOXED_LUNE_STD_LIB = {
|
||||||
)
|
)
|
||||||
|
|
||||||
if allowAuthCookie then
|
if allowAuthCookie then
|
||||||
local getAuthCookie = constructSandboxMt("@lune/roblox")({}, "getAuthCookie")
|
local getAuthCookie = require("@lune/roblox").getAuthCookie
|
||||||
return getAuthCookie(...)
|
return getAuthCookie(...)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -132,9 +114,7 @@ local SANDBOXED_LUNE_STD_LIB = {
|
||||||
`{SANDBOXED_ENV.debugName} attempted to access .ROBLOSECURITY token even when denied`
|
`{SANDBOXED_ENV.debugName} attempted to access .ROBLOSECURITY token even when denied`
|
||||||
)
|
)
|
||||||
end,
|
end,
|
||||||
}, {
|
}, constructProtectedMt(roblox)),
|
||||||
__index = constructSandboxMt("@lune/roblox"),
|
|
||||||
}),
|
|
||||||
["@lune/serde"] = serde,
|
["@lune/serde"] = serde,
|
||||||
["@lune/task"] = task,
|
["@lune/task"] = task,
|
||||||
["@lune/regex"] = regex,
|
["@lune/regex"] = regex,
|
||||||
|
@ -145,7 +125,13 @@ local function sandboxedRequire(path: string)
|
||||||
local module = SANDBOXED_LUNE_STD_LIB[path]
|
local module = SANDBOXED_LUNE_STD_LIB[path]
|
||||||
|
|
||||||
if module then
|
if module then
|
||||||
return module
|
local allowed: boolean = stdio.prompt("confirm", string.format(PROMPT_MSG_TMPL, path))
|
||||||
|
|
||||||
|
if allowed then
|
||||||
|
return module
|
||||||
|
end
|
||||||
|
|
||||||
|
error(string.format(DENIED_ERR_TMPL, path))
|
||||||
else
|
else
|
||||||
local contents = discoverAndReadScript(path)
|
local contents = discoverAndReadScript(path)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue