This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/set.lua

52 lines
1.3 KiB
Lua
Raw Permalink Normal View History

2015-11-12 17:42:03 +01:00
local function save_value(msg, name, value)
if (not name or not value) then
return "Benutzung: #set Variable Wert"
2015-11-12 17:42:03 +01:00
end
2015-11-12 17:42:03 +01:00
local hash = get_redis_hash(msg, 'variables')
if hash then
print('Saving variable to redis hash '..hash)
redis:hset(hash, name, value)
return "Gespeichert: "..name.." = "..value
end
end
2015-11-12 17:42:03 +01:00
local function delete_value(msg, name, value)
if msg.to.type == 'chat' then
hash = 'chat:'..msg.to.id..':variables'
end
if msg.to.type == 'user' then
hash = 'user:'..msg.from.id..':variables'
end
if redis:hexists(hash, name) == true then
print('Deleting variable from redis hash '..hash)
redis:hdel(hash, name, value)
return 'Variable "'..name..'" erfolgreich gelöscht!'
else
return 'Du kannst keine Variable löschen, die nicht existiert .-.'
end
end
local function run(msg, matches)
2015-11-12 17:42:03 +01:00
local name = string.sub(matches[1], 1, 50)
local value = string.sub(matches[2], 1, 1000)
if value == "nil" then
text = delete_value(msg, name, value)
else
text = save_value(msg, name, value)
end
return text
end
return {
description = "Setzt Variablen, nutze #get zum Abrufen.",
2015-11-12 17:42:03 +01:00
usage = {
"#set [Variable] [Wert]: Speichert eine Variable mit einem Wert.",
"#set (Variable) nil: Löscht Variable"
2015-11-12 17:42:03 +01:00
},
patterns = {
"^#set ([^%s]+) (.+)$"
2015-11-12 17:42:03 +01:00
},
run = run
2015-05-10 13:09:06 +02:00
}