2003-02-02 20:49:19 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : jd2ejd.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2009-01-12 19:41:46 +01:00
|
|
|
%%% Purpose : Import of jabberd14 user spool file
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 2 Feb 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2012-02-23 16:52:34 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2012 ProcessOne
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
2009-01-12 15:44:42 +01:00
|
|
|
%%%
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License
|
|
|
|
%%% along with this program; if not, write to the Free Software
|
|
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
2003-02-02 20:49:19 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(jd2ejd).
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
%% External exports
|
2005-04-17 20:08:34 +02:00
|
|
|
-export([import_file/1,
|
2003-02-04 21:45:23 +01:00
|
|
|
import_dir/1]).
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2003-03-09 21:46:47 +01:00
|
|
|
-include("jlib.hrl").
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% API
|
|
|
|
%%%----------------------------------------------------------------------
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
import_file(File) ->
|
2003-02-02 20:49:19 +01:00
|
|
|
User = filename:rootname(filename:basename(File)),
|
2005-04-17 20:08:34 +02:00
|
|
|
Server = filename:basename(filename:dirname(File)),
|
|
|
|
case (jlib:nodeprep(User) /= error) andalso
|
|
|
|
(jlib:nameprep(Server) /= error) of
|
|
|
|
true ->
|
|
|
|
case file:read_file(File) of
|
|
|
|
{ok, Text} ->
|
|
|
|
case xml_stream:parse_element(Text) of
|
|
|
|
El when element(1, El) == xmlelement ->
|
|
|
|
case catch process_xdb(User, Server, El) of
|
|
|
|
{'EXIT', Reason} ->
|
|
|
|
?ERROR_MSG(
|
|
|
|
"Error while processing file \"~s\": ~p~n",
|
2005-05-23 21:47:57 +02:00
|
|
|
[File, Reason]),
|
2007-12-07 00:15:04 +01:00
|
|
|
{error, Reason};
|
2005-04-17 20:08:34 +02:00
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end;
|
|
|
|
{error, Reason} ->
|
|
|
|
?ERROR_MSG("Can't parse file \"~s\": ~p~n",
|
2005-05-23 21:47:57 +02:00
|
|
|
[File, Reason]),
|
|
|
|
{error, Reason}
|
2005-04-17 20:08:34 +02:00
|
|
|
end;
|
|
|
|
{error, Reason} ->
|
2005-05-23 21:47:57 +02:00
|
|
|
?ERROR_MSG("Can't read file \"~s\": ~p~n", [File, Reason]),
|
|
|
|
{error, Reason}
|
2005-04-17 20:08:34 +02:00
|
|
|
end;
|
|
|
|
false ->
|
2005-05-23 21:47:57 +02:00
|
|
|
?ERROR_MSG("Illegal user/server name in file \"~s\"~n", [File]),
|
|
|
|
{error, "illegal user/server"}
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
2003-02-02 20:49:19 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
import_dir(Dir) ->
|
|
|
|
{ok, Files} = file:list_dir(Dir),
|
|
|
|
MsgFiles = lists:filter(
|
|
|
|
fun(FN) ->
|
|
|
|
case string:len(FN) > 4 of
|
|
|
|
true ->
|
|
|
|
string:substr(FN,
|
|
|
|
string:len(FN) - 3) == ".xml";
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end, Files),
|
2005-05-23 21:47:57 +02:00
|
|
|
lists:foldl(
|
|
|
|
fun(FN, A) ->
|
|
|
|
Res = import_file(filename:join([Dir, FN])),
|
|
|
|
case {A, Res} of
|
|
|
|
{ok, ok} -> ok;
|
|
|
|
{ok, _} -> {error, "see ejabberd log for details"};
|
|
|
|
_ -> A
|
|
|
|
end
|
|
|
|
end, ok, MsgFiles).
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
%%%----------------------------------------------------------------------
|
2005-04-17 20:08:34 +02:00
|
|
|
%%% Internal functions
|
2003-02-02 20:49:19 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
process_xdb(User, Server, {xmlelement, Name, _Attrs, Els}) ->
|
2003-02-02 20:49:19 +01:00
|
|
|
case Name of
|
|
|
|
"xdb" ->
|
2005-04-17 20:08:34 +02:00
|
|
|
lists:foreach(
|
|
|
|
fun(El) ->
|
|
|
|
xdb_data(User, Server, El)
|
|
|
|
end, Els);
|
2003-02-02 20:49:19 +01:00
|
|
|
_ ->
|
2005-04-17 20:08:34 +02:00
|
|
|
ok
|
|
|
|
end.
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
|
2007-12-07 00:15:04 +01:00
|
|
|
xdb_data(_User, _Server, {xmlcdata, _CData}) ->
|
2005-04-21 16:06:15 +02:00
|
|
|
ok;
|
|
|
|
xdb_data(User, Server, {xmlelement, _Name, Attrs, _Els} = El) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
From = jlib:make_jid(User, Server, ""),
|
|
|
|
case xml:get_attr_s("xmlns", Attrs) of
|
|
|
|
?NS_AUTH ->
|
|
|
|
Password = xml:get_tag_cdata(El),
|
|
|
|
ejabberd_auth:set_password(User, Server, Password),
|
|
|
|
ok;
|
|
|
|
?NS_ROSTER ->
|
2012-04-27 11:52:05 +02:00
|
|
|
catch mod_roster:set_items(User, Server, El),
|
2005-04-17 20:08:34 +02:00
|
|
|
ok;
|
2005-05-23 21:47:57 +02:00
|
|
|
?NS_LAST ->
|
|
|
|
TimeStamp = xml:get_attr_s("last", Attrs),
|
|
|
|
Status = xml:get_tag_cdata(El),
|
2012-04-27 11:52:05 +02:00
|
|
|
catch mod_last:store_last_info(
|
|
|
|
User,
|
|
|
|
Server,
|
|
|
|
list_to_integer(TimeStamp),
|
|
|
|
Status),
|
2005-05-23 21:47:57 +02:00
|
|
|
ok;
|
2005-04-17 20:08:34 +02:00
|
|
|
?NS_VCARD ->
|
2012-04-27 11:52:05 +02:00
|
|
|
catch mod_vcard:process_sm_iq(
|
|
|
|
From,
|
|
|
|
jlib:make_jid("", Server, ""),
|
|
|
|
#iq{type = set, xmlns = ?NS_VCARD, sub_el = El}),
|
2005-04-17 20:08:34 +02:00
|
|
|
ok;
|
|
|
|
"jabber:x:offline" ->
|
2005-07-26 05:04:26 +02:00
|
|
|
process_offline(Server, From, El),
|
2005-04-17 20:08:34 +02:00
|
|
|
ok;
|
|
|
|
XMLNS ->
|
|
|
|
case xml:get_attr_s("j_private_flag", Attrs) of
|
|
|
|
"1" ->
|
2005-05-16 01:03:25 +02:00
|
|
|
catch mod_private:process_sm_iq(
|
2005-04-17 20:08:34 +02:00
|
|
|
From,
|
2005-07-26 05:04:26 +02:00
|
|
|
jlib:make_jid("", Server, ""),
|
2005-04-17 20:08:34 +02:00
|
|
|
#iq{type = set, xmlns = ?NS_PRIVATE,
|
|
|
|
sub_el = {xmlelement, "query", [],
|
|
|
|
[jlib:remove_attr(
|
|
|
|
"j_private_flag",
|
|
|
|
jlib:remove_attr("xdbns", El))]}});
|
|
|
|
_ ->
|
|
|
|
?DEBUG("jd2ejd: Unknown namespace \"~s\"~n", [XMLNS])
|
|
|
|
end,
|
|
|
|
ok
|
|
|
|
end.
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
|
2005-07-26 05:04:26 +02:00
|
|
|
process_offline(Server, To, {xmlelement, _, _, Els}) ->
|
|
|
|
LServer = jlib:nameprep(Server),
|
2003-02-04 21:45:23 +01:00
|
|
|
lists:foreach(fun({xmlelement, _, Attrs, _} = El) ->
|
|
|
|
FromS = xml:get_attr_s("from", Attrs),
|
|
|
|
From = case FromS of
|
|
|
|
"" ->
|
2005-07-26 05:04:26 +02:00
|
|
|
jlib:make_jid("", Server, "");
|
2003-02-04 21:45:23 +01:00
|
|
|
_ ->
|
|
|
|
jlib:string_to_jid(FromS)
|
|
|
|
end,
|
|
|
|
case From of
|
|
|
|
error ->
|
|
|
|
ok;
|
|
|
|
_ ->
|
2005-07-26 05:04:26 +02:00
|
|
|
ejabberd_hooks:run(offline_message_hook,
|
|
|
|
LServer,
|
|
|
|
[From, To, El])
|
2003-02-04 21:45:23 +01:00
|
|
|
end
|
|
|
|
end, Els).
|
|
|
|
|