renamed lex to pre_process
This commit is contained in:
parent
1e18d97034
commit
883f31e73a
@ -62,19 +62,21 @@ end
|
|||||||
|
|
||||||
function lex(msg)
|
function lex(msg)
|
||||||
|
|
||||||
local text = msg.text
|
if msg.text then
|
||||||
local chat_id = tostring(msg.to.id)
|
local text = msg.text
|
||||||
local s, e = text:find("%$%a+")
|
local chat_id = tostring(msg.to.id)
|
||||||
|
local s, e = text:find("%$%a+")
|
||||||
|
|
||||||
if s then
|
if s then
|
||||||
local var = text:sub(s + 1, e)
|
local var = text:sub(s + 1, e)
|
||||||
local value = fetch_value(chat_id, var)
|
local value = fetch_value(chat_id, var)
|
||||||
|
|
||||||
if (value == nil) then
|
if (value == nil) then
|
||||||
value = "(unknown value " .. var .. ")"
|
value = "(unknown value " .. var .. ")"
|
||||||
|
end
|
||||||
|
|
||||||
|
msg.text = text:sub(0, s - 1) .. value .. text:sub(e + 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
msg.text = text:sub(0, s - 1) .. value .. text:sub(e + 1)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return msg
|
return msg
|
||||||
@ -87,6 +89,6 @@ return {
|
|||||||
"^!get (%a+)$",
|
"^!get (%a+)$",
|
||||||
"^!get$"},
|
"^!get$"},
|
||||||
run = run,
|
run = run,
|
||||||
lex = lex
|
pre_process = lex
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user