plugins/version.lua

Sun, 24 Jul 2011 19:16:40 +0700

author
mva <mva@mva.name>
date
Sun, 24 Jul 2011 19:16:40 +0700
changeset 76
cecdfba8e625
parent 37
85b3f2a96edb
child 105
4234c8789cc6
permissions
-rw-r--r--

plugins/version improvements

0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 local st = require "util.stanza";
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 local xmlns_version = "jabber:iq:version";
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 function riddim.plugins.version(bot)
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 bot.stream:add_plugin("version");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 bot.stream.version:set{
76
cecdfba8e625 plugins/version improvements
mva <mva@mva.name>
parents: 37
diff changeset
8 name = bot.config.bot_name or "Riddim";
cecdfba8e625 plugins/version improvements
mva <mva@mva.name>
parents: 37
diff changeset
9 version = bot.config.bot_version or "alpha";
cecdfba8e625 plugins/version improvements
mva <mva@mva.name>
parents: 37
diff changeset
10 platform = bot.config.bot_platform or _VERSION;
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 };
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 bot:hook("commands/version", function (command)
37
85b3f2a96edb plugins.version: Report own version in first person, and don't crash if it's not in a room
Kim Alvefur <zash@zash.se>
parents: 33
diff changeset
14 local who, param = bot.stream.jid, command.param;
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 if param then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 if command.room and command.room.occupants[param] then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 who = command.room.occupants[param].jid;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 elseif command.room and command.room.occupants[param:gsub("%s$", "")] then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 who = command.room.occupants[param:gsub("%s$", "")].jid;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 else
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 who = param;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
25 bot.stream:query_version(who, function (reply)
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
26 if not reply.error then
37
85b3f2a96edb plugins.version: Report own version in first person, and don't crash if it's not in a room
Kim Alvefur <zash@zash.se>
parents: 33
diff changeset
27 local saywho = (who == command.sender.jid and "You are") or (param and param.." is" or "I am");
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
28 command:reply(saywho.." running "..(reply.name or "something")
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
29 .." version "..(reply.version or "unknown")
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
30 .." on "..(reply.platform or "an unknown platform"));
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
31 else
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
32 local type, condition, text = reply.type, reply.condition, reply.text;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
33 local r = "There was an error requesting "..param.."'s version";
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
34 if condition == "service-unavailable" then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
35 r = param.." doesn't reply to version requests";
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
36 elseif condition == "feature-not-implemented" then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
37 r = param.." doesn't support feature requests";
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
38 elseif condition == "remote-server-not-found" then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
39 r = param.." can't be reached via XMPP";
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
40 elseif condition and not text then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
41 r = r..": "..condition;
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
42 end
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
43 if text then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
44 r = r .. " ("..text..")";
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
45 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
46 command:reply(r);
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
47 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 7
diff changeset
48 end);
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49 return true;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50 end);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 end

mercurial