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/help.lua

66 lines
1.4 KiB
Lua
Raw Normal View History

2015-01-23 23:49:51 +01:00
-- Generate an HTML table for GitHub
function html_help()
local text = [[<table>
<thead>
<tr>
<td><strong>Name</strong></td>
<td><strong>Description</strong></td>
<td><strong>Usage</strong></td>
</tr>
</thead>
<tbody>]]
2014-11-04 16:09:08 +01:00
2015-01-23 23:49:51 +01:00
for k,v in pairs(plugins_names()) do
t = loadfile("plugins/"..v)()
text = text.."<tr>"
text = text.."<td>"..v.."</td>"
text = text.."<td>"..t.description.."</td>"
text = text.."<td>"
if (type(t.usage) == "table") then
for ku,vu in pairs(t.usage) do
text = text..vu.."<br>"
end
else
text = text..t.usage
end
text = text.."</td>"
text = text.."</tr>"
end
text = text.."</tbody></table>"
return text
end
function telegram_help( )
2014-11-04 16:09:08 +01:00
local ret = ""
for k, dict in pairs(plugins) do
2015-01-23 23:49:51 +01:00
if dict.usage ~= "" then
if (type(dict.usage) == "table") then
for ku,vu in pairs(dict.usage) do
ret = ret..vu.." "
end
else
ret = ret..dict.usage
end
ret = ret .. " -> " .. dict.description .. "\n"
end
2014-11-04 16:09:08 +01:00
end
return ret
end
2015-01-23 23:49:51 +01:00
function run(msg, matches)
if matches[1] == "!help md" then
return html_help()
else
return telegram_help()
end
end
2014-11-04 16:09:08 +01:00
return {
description = "Lists all available commands",
2015-01-23 23:49:51 +01:00
usage = {"!help", "!help md"},
patterns = {
"^!help$",
"^!help md$"
},
2014-11-04 16:09:08 +01:00
run = run
2014-11-22 15:05:54 +01:00
}