init.lua

Thu, 20 May 2010 14:33:41 +0100

author
Chris <jugg@hotmail.com>
date
Thu, 20 May 2010 14:33:41 +0100
changeset 16
ae69cea97598
parent 15
22e6c003a83a
child 17
9fe723988f3c
permissions
-rw-r--r--

Formatting, indentation and cleanup

0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 local verse = require "verse";
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 local st = require "util.stanza";
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 module("riddim", package.seeall);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 plugins = {};
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 local riddim_mt = {};
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 riddim_mt.__index = riddim_mt;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 function new(stream, config)
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 if not stream then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 error("riddim.new(): Verse stream required as first parameter", 2);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 end
3
d1a9fb6495c6 Don't allow loading the same plugin more than once
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
14 return setmetatable({ stream = stream, config = config or {}, plugins = {} }, riddim_mt);
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 -- self.conn is ready for stanzas
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 function riddim_mt:start()
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 self:event("started");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 self.stream:hook("stanza", function (stanza)
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
21 local body = stanza:get_child("body");
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
22 local event = {
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
23 sender = { jid = stanza.attr.from };
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
24 body = (body and body:get_text()) or nil;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
25 stanza = stanza;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
26 };
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
27 if stanza.name == "message" then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
28 local replied;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
29 local bot = self;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
30 function event:reply(reply)
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
31 if replied then return false; end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
32 replied = true;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
33 return bot:send_message(stanza.attr.from, stanza.attr.type, reply);
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 end
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
35 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
36 local ret;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
37 if stanza.name == "iq" and (stanza.attr.type == "get" or stanza.attr.type == "set") then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
38 local xmlns = stanza.tags[1] and stanza.tags[1].attr.xmlns;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
39 if xmlns then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
40 event.xmlns = xmlns;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
41 ret = self:event("iq/"..xmlns, event);
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: 15
diff changeset
43 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
44 if not ret then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
45 ret = self:event(stanza.name, event);
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
46 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
47 if ret and type(ret) == "table" and ret.name then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
48 self:send(ret);
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
49 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
50 return ret;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
51 end, 1);
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
53
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
54 function riddim_mt:send(s)
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
55 return self.stream:send(tostring(s));
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 function riddim_mt:event(name, ...)
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 return self.stream:event("bot/"..name, ...);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 function riddim_mt:hook(name, ...)
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63 return self.stream:hook("bot/"..name, ...);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65
15
22e6c003a83a Reply to messages with the same (the incoming) message type
Chris <jugg@hotmail.com>
parents: 14
diff changeset
66 function riddim_mt:send_message(to, type, text)
22e6c003a83a Reply to messages with the same (the incoming) message type
Chris <jugg@hotmail.com>
parents: 14
diff changeset
67 self:send(st.message({ to = to, type = type }):tag("body"):text(text));
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70 function riddim_mt:add_plugin(name)
3
d1a9fb6495c6 Don't allow loading the same plugin more than once
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
71 if not self.plugins[name] then
d1a9fb6495c6 Don't allow loading the same plugin more than once
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
72 self.plugins[name] = require("riddim.plugins."..name);
d1a9fb6495c6 Don't allow loading the same plugin more than once
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
73 return riddim.plugins[name](self);
d1a9fb6495c6 Don't allow loading the same plugin more than once
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
74 end
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
75 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
76
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
77 -- Built-in bot starter
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 if not (... and package.loaded[...] ~= nil) then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79 require "verse.client";
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
80
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
81 -- Config loading
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
82 local chunk, err = loadfile("config.lua");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
83 if not chunk then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
84 print("File or syntax error:", err);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
85 return 1;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
86 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
87
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
88 local config = {};
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
89 setfenv(chunk, setmetatable(config, {__index = _G}));
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
90 local ok, err = pcall(chunk);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
91 if not ok then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
92 print("Error while processing config:", err);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 return 1;
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
94 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
95 setmetatable(config, nil);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97 if not config.jid then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
98 io.write("Enter the bot's JID: ");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 config.jid = io.read("*l");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 if not config.password then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
103 io.write("Enter the password for "..config.jid..": ");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
104 config.password = io.read("*l");
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107 -- Create the stream object and bot object
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 local c = verse.new();
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 local b = riddim.new(c, config);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111 if config.debug then
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 c:hook("incoming-raw", print);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
113 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
114
14
3df63aaba9e3 Decouple plugins from base implementation (in particular no plugins are now loaded by default)
Chris <jugg@hotmail.com>
parents: 11
diff changeset
115 for _, plugin in ipairs(config.plugins or {}) do
2
6b31cc678fd7 Add configured plugins to the bot instead of the stream
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
116 b:add_plugin(plugin);
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
118
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
119 b:hook("started", function ()
6
b0fec41e695b initial implementation of disco responses (XEP-0030) and entity caps sending (XEP-0115)
Hubert Chathi <hubert@uhoreg.ca>
parents: 5
diff changeset
120 local presence = verse.presence()
b0fec41e695b initial implementation of disco responses (XEP-0030) and entity caps sending (XEP-0115)
Hubert Chathi <hubert@uhoreg.ca>
parents: 5
diff changeset
121 if b.caps then
b0fec41e695b initial implementation of disco responses (XEP-0030) and entity caps sending (XEP-0115)
Hubert Chathi <hubert@uhoreg.ca>
parents: 5
diff changeset
122 presence:add_child(b:caps())
b0fec41e695b initial implementation of disco responses (XEP-0030) and entity caps sending (XEP-0115)
Hubert Chathi <hubert@uhoreg.ca>
parents: 5
diff changeset
123 end
11
7bb53dcf93d4 Fix to send initial presence again
Hubert Chathi <hubert@uhoreg.ca>
parents: 8
diff changeset
124 b:send(presence);
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
125 end);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
126
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
127 c:hook("binding-success", function () b:start(); end);
5
d9ed6e7d9936 allow specifying connect host and port in config file
Hubert Chathi <hubert@uhoreg.ca>
parents: 3
diff changeset
128
16
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
129 if config.connect_host then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
130 c.connect_host = config.connect_host;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
131 end
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
132 if config.connect_port then
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
133 c.connect_port = config.connect_port;
ae69cea97598 Formatting, indentation and cleanup
Chris <jugg@hotmail.com>
parents: 15
diff changeset
134 end
0
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
135
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
136 c:connect_client(config.jid, config.password);
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
137
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
138 verse.loop();
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
139 end
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
140
7d84f4403d67 Initial commit, hello world!
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
141 return _M;

mercurial