plugins/mod_console.lua

Wed, 03 Dec 2008 14:39:07 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 03 Dec 2008 14:39:07 +0000
changeset 519
cccd610a0ef9
parent 461
8e66201f566a
child 563
099d8a102deb
permissions
-rw-r--r--

Insert copyright/license headers

519
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
1 -- Prosody IM v0.1
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
2 -- Copyright (C) 2008 Matthew Wild
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
3 -- Copyright (C) 2008 Waqas Hussain
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
4 --
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
5 -- This program is free software; you can redistribute it and/or
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
6 -- modify it under the terms of the GNU General Public License
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
7 -- as published by the Free Software Foundation; either version 2
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
8 -- of the License, or (at your option) any later version.
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
9 --
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
10 -- This program is distributed in the hope that it will be useful,
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
11 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
12 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
13 -- GNU General Public License for more details.
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
14 --
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
15 -- You should have received a copy of the GNU General Public License
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
16 -- along with this program; if not, write to the Free Software
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
17 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
18 --
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
19
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 461
diff changeset
20
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 local connlisteners_register = require "net.connlisteners".register;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 local console_listener = { default_port = 5582; default_mode = "*l"; };
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26 local commands = {};
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
27 local def_env = {};
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
28 local default_env_mt = { __index = def_env };
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
29
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30 console = {};
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
31
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
32 function console:new_session(conn)
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
33 local w = conn.write;
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
34 local session = { conn = conn;
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35 send = function (t) w(tostring(t)); end;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
36 print = function (t) w("| "..tostring(t).."\n"); end;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37 disconnect = function () conn.close(); end;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
38 };
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
39 session.env = setmetatable({}, default_env_mt);
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
40
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
41 -- Load up environment with helper objects
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
42 for name, t in pairs(def_env) do
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
43 if type(t) == "table" then
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
44 session.env[name] = setmetatable({ session = session }, { __index = t });
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
45 end
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
46 end
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
47
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
48 return session;
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 local sessions = {};
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
53 function console_listener.listener(conn, data)
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
54 local session = sessions[conn];
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
55
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 if not session then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57 -- Handle new connection
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 session = console:new_session(conn);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 sessions[conn] = session;
440
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
60 printbanner(session);
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 if data then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63 -- Handle data
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65 if data:match("[!.]$") then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 local command = data:lower();
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67 command = data:match("^%w+") or data:match("%p");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 if commands[command] then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69 commands[command](session, data);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70 return;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
72 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
73
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
74 session.env._ = data;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
75
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
76 local chunk, err = loadstring("return "..data);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
77 if not chunk then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 chunk, err = loadstring(data);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79 if not chunk then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
80 err = err:gsub("^%[string .-%]:%d+: ", "");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
81 err = err:gsub("^:%d+: ", "");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
82 err = err:gsub("'<eof>'", "the end of the line");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
83 session.print("Sorry, I couldn't understand that... "..err);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
84 return;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
85 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
86 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
87
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
88 setfenv(chunk, session.env);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
89 local ranok, taskok, message = pcall(chunk);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
90
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
91 if not ranok then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
92 session.print("Fatal error while running command, it did not complete");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 session.print("Error: "..taskok);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
94 return;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
95 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97 if not message then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
98 session.print("Result: "..tostring(taskok));
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 return;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100 elseif (not taskok) and message then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101 session.print("Command completed with a problem");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 session.print("Message: "..tostring(message));
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
103 return;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
104 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106 session.print("OK: "..tostring(message));
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110 function console_listener.disconnect(conn, err)
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
113
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
114 connlisteners_register('console', console_listener);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
115
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
116 -- Console commands --
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 -- These are simple commands, not valid standalone in Lua
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
118
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
119 function commands.bye(session)
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
120 session.print("See you! :)");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 session.disconnect();
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
122 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
123
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124 commands["!"] = function (session, data)
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
125 if data:match("^!!") then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
126 session.print("!> "..session.env._);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
127 return console_listener.listener(session.conn, session.env._);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
128 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
129 local old, new = data:match("^!(.-[^\\])!(.-)!$");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
130 if old and new then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
131 local ok, res = pcall(string.gsub, session.env._, old, new);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
132 if not ok then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
133 session.print(res)
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
134 return;
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
135 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
136 session.print("!> "..res);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
137 return console_listener.listener(session.conn, res);
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
138 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
139 session.print("Sorry, not sure what you want");
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
140 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
141
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
142 -- Session environment --
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
143 -- Anything in def_env will be accessible within the session as a global variable
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
144
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
145 def_env.server = {};
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
146 function def_env.server:reload()
461
8e66201f566a Load prosody instead of main.lia in mod_console
Waqas Hussain <waqas20@gmail.com>
parents: 444
diff changeset
147 dofile "prosody"
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
148 return true, "Server reloaded";
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
149 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
150
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
151 def_env.module = {};
444
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
152 function def_env.module:load(name, host, config)
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
153 local mm = require "modulemanager";
444
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
154 local ok, err = mm.load(host or self.env.host, name, config);
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
155 if not ok then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
156 return false, err or "Unknown error loading module";
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
157 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
158 return true, "Module loaded";
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
159 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
160
444
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
161 function def_env.module:unload(name, host)
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
162 local mm = require "modulemanager";
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
163 local ok, err = mm.unload(host or self.env.host, name);
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
164 if not ok then
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
165 return false, err or "Unknown error unloading module";
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
166 end
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
167 return true, "Module unloaded";
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
168 end
77485b9b840c Add module:unload() to mod_console, and allow module:load() to take config param
Matthew Wild <mwild1@gmail.com>
parents: 440
diff changeset
169
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
170 def_env.config = {};
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
171 function def_env.config:load(filename, format)
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
172 local config_load = require "core.configmanager".load;
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
173 local ok, err = config_load(filename, format);
382
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
174 if not ok then
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
175 return false, err or "Unknown error loading config";
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
176 end
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
177 return true, "Config loaded";
9daf1e3d278e Add initial mod_console
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
178 end
411
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
179
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
180 function def_env.config:get(host, section, key)
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
181 local config_get = require "core.configmanager".get
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
182 return true, tostring(config_get(host, section, key));
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
183 end
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
184
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
185 def_env.hosts = {};
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
186 function def_env.hosts:list()
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
187 for host, host_session in pairs(hosts) do
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
188 self.session.print(host);
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
189 end
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
190 return true, "Done";
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
191 end
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
192
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
193 function def_env.hosts:add(name)
64982773cc15 Some mod_console changes
Matthew Wild <mwild1@gmail.com>
parents: 382
diff changeset
194 end
440
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
195
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
196 -------------
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
197
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
198 function printbanner(session)
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
199 session.print [[
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
200 ____ \ / _
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
201 | _ \ _ __ ___ ___ _-_ __| |_ _
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
202 | |_) | '__/ _ \/ __|/ _ \ / _` | | | |
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
203 | __/| | | (_) \__ \ |_| | (_| | |_| |
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
204 |_| |_| \___/|___/\___/ \__,_|\__, |
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
205 A study in simplicity |___/
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
206
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
207 ]]
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
208 session.print("Welcome to the Prosody administration console. For a list of commands, type: help");
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
209 session.print("You may find more help on using this console in our online documentation at ");
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
210 session.print("http://prosody.im/doc/console\n");
dee02bf4656a Some mod_console updates
Matthew Wild <mwild1@gmail.com>
parents: 411
diff changeset
211 end

mercurial