Make ejabberd2prosody.lua a little more cross-platform :)

This commit is contained in:
Matthew Wild 2008-11-29 19:52:20 +00:00
parent 354c65daa0
commit f5830f6ada

View file

@ -1,175 +1,178 @@
#!/usr/bin/env lua #!/usr/bin/env lua
require "erlparse"; require "erlparse";
require "serialize"; require "serialize";
package.path = package.path ..";../?.lua"; package.path = package.path ..";../?.lua";
local st = require "util.stanza"; local st = require "util.stanza";
package.loaded["util.logger"] = {init = function() return function() end; end} package.loaded["util.logger"] = {init = function() return function() end; end}
local dm = require "util.datamanager" local dm = require "util.datamanager"
local data_path = "data"; local data_path = "data";
dm.set_data_path(data_path); dm.set_data_path(data_path);
local _mkdir = {} local _mkdir = {}
function mkdir(path) function mkdir(path)
path = path:gsub("/", "\\"); if os.getenv("WINDIR") then
--print("mkdir",path); -- I'm afraid it's true :(
local x = io.popen("mkdir "..path.." 2>&1"):read("*a"); path = path:gsub("/", "\\");
end end
function encode(s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end --print("mkdir",path);
function getpath(username, host, datastore, ext) local x = io.popen("mkdir "..path.." 2>&1"):read("*a");
ext = ext or "dat"; end
if username then function encode(s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
return format("%s/%s/%s/%s.%s", data_path, encode(host), datastore, encode(username), ext); function getpath(username, host, datastore, ext)
elseif host then ext = ext or "dat";
return format("%s/%s/%s.%s", data_path, encode(host), datastore, ext); if username then
else return format("%s/%s/%s/%s.%s", data_path, encode(host), datastore, encode(username), ext);
return format("%s/%s.%s", data_path, datastore, ext); elseif host then
end return format("%s/%s/%s.%s", data_path, encode(host), datastore, ext);
end else
function mkdirs(host) return format("%s/%s.%s", data_path, datastore, ext);
if not _mkdir[host] then end
local host_dir = string.format("%s/%s", data_path, encode(host)); end
mkdir(host_dir); function mkdirs(host)
mkdir(host_dir.."/accounts"); if not _mkdir[host] then
mkdir(host_dir.."/vcard"); local host_dir = string.format("%s/%s", data_path, encode(host));
mkdir(host_dir.."/roster"); mkdir(host_dir);
mkdir(host_dir.."/private"); mkdir(host_dir.."/accounts");
mkdir(host_dir.."/offline"); mkdir(host_dir.."/vcard");
_mkdir[host] = true; mkdir(host_dir.."/roster");
end mkdir(host_dir.."/private");
end mkdir(host_dir.."/offline");
mkdir(data_path); _mkdir[host] = true;
end
function build_stanza(tuple, stanza) end
if tuple[1] == "xmlelement" then mkdir(data_path);
local name = tuple[2];
local attr = {}; function build_stanza(tuple, stanza)
for _, a in ipairs(tuple[3]) do attr[a[1]] = a[2]; end if tuple[1] == "xmlelement" then
local up; local name = tuple[2];
if stanza then stanza:tag(name, attr); up = true; else stanza = st.stanza(name, attr); end local attr = {};
for _, a in ipairs(tuple[4]) do build_stanza(a, stanza); end for _, a in ipairs(tuple[3]) do attr[a[1]] = a[2]; end
if up then stanza:up(); else return stanza end local up;
elseif tuple[1] == "xmlcdata" then if stanza then stanza:tag(name, attr); up = true; else stanza = st.stanza(name, attr); end
stanza:text(tuple[2]); for _, a in ipairs(tuple[4]) do build_stanza(a, stanza); end
else if up then stanza:up(); else return stanza end
error("unknown element type: "..serialize.serialize(tuple)); elseif tuple[1] == "xmlcdata" then
end stanza:text(tuple[2]);
end else
function build_time(tuple) error("unknown element type: "..serialize.serialize(tuple));
local Megaseconds,Seconds,Microseconds = unpack(tuple); end
return Megaseconds * 1000000 + Seconds; end
end function build_time(tuple)
local Megaseconds,Seconds,Microseconds = unpack(tuple);
function vcard(node, host, stanza) return Megaseconds * 1000000 + Seconds;
mkdirs(host); end
local ret, err = dm.store(node, host, "vcard", st.preserialize(stanza));
print("["..(err or "success").."] vCard: "..node.."@"..host); function vcard(node, host, stanza)
end mkdirs(host);
function password(node, host, password) local ret, err = dm.store(node, host, "vcard", st.preserialize(stanza));
mkdirs(host); print("["..(err or "success").."] vCard: "..node.."@"..host);
local ret, err = dm.store(node, host, "accounts", {password = password}); end
print("["..(err or "success").."] accounts: "..node.."@"..host.." = "..password); function password(node, host, password)
end mkdirs(host);
function roster(node, host, jid, item) local ret, err = dm.store(node, host, "accounts", {password = password});
mkdirs(host); print("["..(err or "success").."] accounts: "..node.."@"..host.." = "..password);
local roster = dm.load(node, host, "roster") or {}; end
roster[jid] = item; function roster(node, host, jid, item)
local ret, err = dm.store(node, host, "roster", roster); mkdirs(host);
print("["..(err or "success").."] roster: " ..node.."@"..host.." - "..jid); local roster = dm.load(node, host, "roster") or {};
end roster[jid] = item;
function private_storage(node, host, xmlns, stanza) local ret, err = dm.store(node, host, "roster", roster);
mkdirs(host); print("["..(err or "success").."] roster: " ..node.."@"..host.." - "..jid);
local private = dm.load(node, host, "private") or {}; end
private[xmlns] = st.preserialize(stanza); function private_storage(node, host, xmlns, stanza)
local ret, err = dm.store(node, host, "private", private); mkdirs(host);
print("["..(err or "success").."] private: " ..node.."@"..host.." - "..xmlns); local private = dm.load(node, host, "private") or {};
end private[xmlns] = st.preserialize(stanza);
function offline_msg(node, host, t, stanza) local ret, err = dm.store(node, host, "private", private);
mkdirs(host); print("["..(err or "success").."] private: " ..node.."@"..host.." - "..xmlns);
stanza.attr.stamp = os.date("!%Y-%m-%dT%H:%M:%SZ", t); end
stanza.attr.stamp_legacy = os.date("!%Y%m%dT%H:%M:%S", t); function offline_msg(node, host, t, stanza)
local ret, err = dm.list_append(node, host, "offline", st.preserialize(stanza)); mkdirs(host);
print("["..(err or "success").."] offline: " ..node.."@"..host.." - "..os.date("!%Y-%m-%dT%H:%M:%SZ", t)); stanza.attr.stamp = os.date("!%Y-%m-%dT%H:%M:%SZ", t);
end stanza.attr.stamp_legacy = os.date("!%Y%m%dT%H:%M:%S", t);
local ret, err = dm.list_append(node, host, "offline", st.preserialize(stanza));
print("["..(err or "success").."] offline: " ..node.."@"..host.." - "..os.date("!%Y-%m-%dT%H:%M:%SZ", t));
local filters = { end
passwd = function(tuple)
password(tuple[2][1], tuple[2][2], tuple[3]);
end; local filters = {
vcard = function(tuple) passwd = function(tuple)
vcard(tuple[2][1], tuple[2][2], build_stanza(tuple[3])); password(tuple[2][1], tuple[2][2], tuple[3]);
end; end;
roster = function(tuple) vcard = function(tuple)
local node = tuple[3][1]; local host = tuple[3][2]; vcard(tuple[2][1], tuple[2][2], build_stanza(tuple[3]));
local contact = tuple[4][1].."@"..tuple[4][2]; end;
local name = tuple[5]; local subscription = tuple[6]; roster = function(tuple)
local ask = tuple[7]; local groups = tuple[8]; local node = tuple[3][1]; local host = tuple[3][2];
if type(name) ~= type("") then name = nil; end local contact = tuple[4][1].."@"..tuple[4][2];
if ask == "none" then ask = nil; elseif ask == "out" then ask = "subscribe" else error(ask) end local name = tuple[5]; local subscription = tuple[6];
if subscription ~= "both" and subscription ~= "from" and subscription ~= "to" and subscription ~= "none" then error(subscription) end local ask = tuple[7]; local groups = tuple[8];
local item = {name = name, ask = ask, subscription = subscription, groups = {}}; if type(name) ~= type("") then name = nil; end
for _, g in ipairs(groups) do item.groups[g] = true; end if ask == "none" then ask = nil; elseif ask == "out" then ask = "subscribe" else error(ask) end
roster(node, host, contact, item); if subscription ~= "both" and subscription ~= "from" and subscription ~= "to" and subscription ~= "none" then error(subscription) end
end; local item = {name = name, ask = ask, subscription = subscription, groups = {}};
private_storage = function(tuple) for _, g in ipairs(groups) do item.groups[g] = true; end
private_storage(tuple[2][1], tuple[2][2], tuple[2][3], build_stanza(tuple[3])); roster(node, host, contact, item);
end; end;
offline_msg = function(tuple) private_storage = function(tuple)
offline_msg(tuple[2][1], tuple[2][2], build_time(tuple[3]), build_stanza(tuple[7])); private_storage(tuple[2][1], tuple[2][2], tuple[2][3], build_stanza(tuple[3]));
end; end;
config = function(tuple) offline_msg = function(tuple)
if tuple[2] == "hosts" then offline_msg(tuple[2][1], tuple[2][2], build_time(tuple[3]), build_stanza(tuple[7]));
local output = io.output(); io.output("prosody.cfg.lua"); end;
io.write("-- Configuration imported from ejabberd --\n"); config = function(tuple)
io.write([[Host "*" if tuple[2] == "hosts" then
modules_enabled = { local output = io.output(); io.output("prosody.cfg.lua");
"saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. io.write("-- Configuration imported from ejabberd --\n");
"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. io.write([[Host "*"
"roster"; -- Allow users to have a roster. Recommended ;) modules_enabled = {
"register"; -- Allow users to register on this server using a client "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
"tls"; -- Add support for secure TLS on c2s/s2s connections "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
"vcard"; -- Allow users to set vCards "roster"; -- Allow users to have a roster. Recommended ;)
"private"; -- Private XML storage (for room bookmarks, etc.) "register"; -- Allow users to register on this server using a client
"version"; -- Replies to server version requests "tls"; -- Add support for secure TLS on c2s/s2s connections
"dialback"; -- s2s dialback support "vcard"; -- Allow users to set vCards
"uptime"; "private"; -- Private XML storage (for room bookmarks, etc.)
"disco"; "version"; -- Replies to server version requests
"time"; "dialback"; -- s2s dialback support
"ping"; "uptime";
--"selftests"; "disco";
}; "time";
]]); "ping";
for _, h in ipairs(tuple[3]) do --"selftests";
io.write("Host \"" .. h .. "\"\n"); };
end ]]);
io.output(output); for _, h in ipairs(tuple[3]) do
print("prosody.cfg.lua created"); io.write("Host \"" .. h .. "\"\n");
end end
end; io.output(output);
}; print("prosody.cfg.lua created");
end
local arg = ...; end;
local help = "/? -? ? /h -h /help -help --help"; };
if not arg or help:find(arg, 1, true) then
print([[ejabberd db dump importer for Prosody local arg = ...;
local help = "/? -? ? /h -h /help -help --help";
Usage: ejabberd2prosody.lua filename.txt if not arg or help:find(arg, 1, true) then
print([[ejabberd db dump importer for Prosody
The file can be generated from ejabberd using:
sudo ./bin/ejabberdctl dump filename.txt Usage: ejabberd2prosody.lua filename.txt
Note: The path of ejabberdctl depends on your ejabberd installation, and ejabberd needs to be running for ejabberdctl to work.]]); The file can be generated from ejabberd using:
os.exit(1); sudo ./bin/ejabberdctl dump filename.txt
end
local count = 0; Note: The path of ejabberdctl depends on your ejabberd installation, and ejabberd needs to be running for ejabberdctl to work.]]);
local t = {}; os.exit(1);
for item in erlparse.parseFile(arg) do end
count = count + 1; local count = 0;
local name = item[1]; local t = {};
t[name] = (t[name] or 0) + 1; for item in erlparse.parseFile(arg) do
--print(count, serialize.serialize(item)); count = count + 1;
if filters[name] then filters[name](item); end local name = item[1];
end t[name] = (t[name] or 0) + 1;
--print(serialize.serialize(t)); --print(count, serialize.serialize(item));
if filters[name] then filters[name](item); end
end
--print(serialize.serialize(t));