mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Store user_host as binaries in vcard table. Fix migration from old ejabberd 2 tables schema
This commit is contained in:
parent
9cf43ffc9e
commit
5a876dfd33
@ -29,6 +29,12 @@
|
|||||||
%%% 2.1.x / mnesia / vcard
|
%%% 2.1.x / mnesia / vcard
|
||||||
%%% us = {Username::string(), Host::string()}
|
%%% us = {Username::string(), Host::string()}
|
||||||
%%% vcard = xmlelement()
|
%%% vcard = xmlelement()
|
||||||
|
%%% 2.1.x / mnesia / vcard_search
|
||||||
|
%%% us = {Username::string(), Host::string()}
|
||||||
|
%%% user = {Username::string(), Host::string()}
|
||||||
|
%%% luser = Username::string()
|
||||||
|
%%% fn = string()
|
||||||
|
%%% ... = string()
|
||||||
%%%
|
%%%
|
||||||
%%% 2.1.x / odbc / vcard
|
%%% 2.1.x / odbc / vcard
|
||||||
%%% username = varchar250
|
%%% username = varchar250
|
||||||
@ -42,8 +48,14 @@
|
|||||||
%%% Same as 2.1.x
|
%%% Same as 2.1.x
|
||||||
%%%
|
%%%
|
||||||
%%% 3.0.0-alpha / mnesia / vcard
|
%%% 3.0.0-alpha / mnesia / vcard
|
||||||
%%% user_host = {Username::string(), Host::string()}
|
%%% user_host = {Username::binary(), Host::binary()}
|
||||||
%%% vcard = xmlel()
|
%%% vcard = xmlel()
|
||||||
|
%%% 3.0.0-alpha / mnesia / vcard_search
|
||||||
|
%%% user_host = {Username::binary(), Host::binary()}
|
||||||
|
%%% username = string()
|
||||||
|
%%% lusername = string()
|
||||||
|
%%% fn = string()
|
||||||
|
%%% ... = string()
|
||||||
%%%
|
%%%
|
||||||
%%% 3.0.0-alpha / odbc / vcard
|
%%% 3.0.0-alpha / odbc / vcard
|
||||||
%%% user = varchar150
|
%%% user = varchar150
|
||||||
@ -231,12 +243,12 @@ process_sm_iq(_From, To, #iq{type = get} = IQ_Rec) ->
|
|||||||
exmpp_iq:result(IQ_Rec)
|
exmpp_iq:result(IQ_Rec)
|
||||||
end;
|
end;
|
||||||
process_sm_iq(From, _To, #iq{type = set, payload = Request} = IQ_Rec) ->
|
process_sm_iq(From, _To, #iq{type = set, payload = Request} = IQ_Rec) ->
|
||||||
User = exmpp_jid:node_as_list(From),
|
User = exmpp_jid:node(From),
|
||||||
LServer = exmpp_jid:prep_domain_as_list(From),
|
Server = exmpp_jid:prep_domain(From),
|
||||||
LServerB = exmpp_jid:prep_domain(From),
|
ServerS = exmpp_jid:prep_domain_as_list(From),
|
||||||
case ?IS_MY_HOST(LServer) of
|
case ?IS_MY_HOST(ServerS) of
|
||||||
true ->
|
true ->
|
||||||
set_vcard(User, LServer, LServerB, Request),
|
set_vcard(User, Server, Request),
|
||||||
exmpp_iq:result(IQ_Rec);
|
exmpp_iq:result(IQ_Rec);
|
||||||
false ->
|
false ->
|
||||||
exmpp_iq:error(IQ_Rec, 'not-allowed')
|
exmpp_iq:error(IQ_Rec, 'not-allowed')
|
||||||
@ -258,7 +270,7 @@ get_vcard(User, Host) ->
|
|||||||
end.
|
end.
|
||||||
|
|
||||||
|
|
||||||
set_vcard(User, LServer, LServerB, VCARD) ->
|
set_vcard(User, Server, VCARD) ->
|
||||||
FN = exmpp_xml:get_path(VCARD,
|
FN = exmpp_xml:get_path(VCARD,
|
||||||
[{element, 'FN'}, cdata_as_list]),
|
[{element, 'FN'}, cdata_as_list]),
|
||||||
Family = exmpp_xml:get_path(VCARD,
|
Family = exmpp_xml:get_path(VCARD,
|
||||||
@ -291,7 +303,8 @@ set_vcard(User, LServer, LServerB, VCARD) ->
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
try
|
try
|
||||||
LUser = exmpp_stringprep:nodeprep(User),
|
UserStr = binary_to_list(User),
|
||||||
|
LUser = binary_to_list(exmpp_stringprep:nodeprep(User)),
|
||||||
LFN = exmpp_stringprep:to_lower(FN),
|
LFN = exmpp_stringprep:to_lower(FN),
|
||||||
LFamily = exmpp_stringprep:to_lower(Family),
|
LFamily = exmpp_stringprep:to_lower(Family),
|
||||||
LGiven = exmpp_stringprep:to_lower(Given),
|
LGiven = exmpp_stringprep:to_lower(Given),
|
||||||
@ -304,18 +317,18 @@ set_vcard(User, LServer, LServerB, VCARD) ->
|
|||||||
LOrgName = exmpp_stringprep:to_lower(OrgName),
|
LOrgName = exmpp_stringprep:to_lower(OrgName),
|
||||||
LOrgUnit = exmpp_stringprep:to_lower(OrgUnit),
|
LOrgUnit = exmpp_stringprep:to_lower(OrgUnit),
|
||||||
|
|
||||||
US = {LUser, LServer},
|
US = {User, Server},
|
||||||
|
|
||||||
VcardToStore = case gen_storage:table_info(LServerB, vcard, backend) of
|
VcardToStore = case gen_storage:table_info(Server, vcard, backend) of
|
||||||
mnesia -> VCARD;
|
mnesia -> VCARD;
|
||||||
odbc -> lists:flatten(exmpp_xml:document_to_list(VCARD))
|
odbc -> lists:flatten(exmpp_xml:document_to_list(VCARD))
|
||||||
end,
|
end,
|
||||||
|
|
||||||
F = fun() ->
|
F = fun() ->
|
||||||
gen_storage:write(LServerB, #vcard{user_host = US, vcard = VcardToStore}),
|
gen_storage:write(Server, #vcard{user_host = US, vcard = VcardToStore}),
|
||||||
gen_storage:write(LServerB,
|
gen_storage:write(Server,
|
||||||
#vcard_search{user_host=US,
|
#vcard_search{user_host=US,
|
||||||
username = User, lusername = LUser,
|
username = UserStr, lusername = LUser,
|
||||||
fn = FN, lfn = LFN,
|
fn = FN, lfn = LFN,
|
||||||
family = Family, lfamily = LFamily,
|
family = Family, lfamily = LFamily,
|
||||||
given = Given, lgiven = LGiven,
|
given = Given, lgiven = LGiven,
|
||||||
@ -329,9 +342,8 @@ set_vcard(User, LServer, LServerB, VCARD) ->
|
|||||||
orgunit = OrgUnit, lorgunit = LOrgUnit
|
orgunit = OrgUnit, lorgunit = LOrgUnit
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
LServerB = list_to_binary(LServer),
|
gen_storage:transaction(Server, vcard, F),
|
||||||
gen_storage:transaction(LServerB, vcard, F),
|
ejabberd_hooks:run(vcard_set, Server, [LUser, Server, VCARD])
|
||||||
ejabberd_hooks:run(vcard_set, LServerB, [list_to_binary(LUser), LServerB, VCARD])
|
|
||||||
catch
|
catch
|
||||||
_ ->
|
_ ->
|
||||||
{error, badarg}
|
{error, badarg}
|
||||||
@ -536,7 +548,7 @@ record_to_item(R) ->
|
|||||||
{User, Server} = R#vcard_search.user_host,
|
{User, Server} = R#vcard_search.user_host,
|
||||||
#xmlel{ns = ?NS_DATA_FORMS, name = 'item', children =
|
#xmlel{ns = ?NS_DATA_FORMS, name = 'item', children =
|
||||||
[
|
[
|
||||||
?FIELD(<<"jid">>, list_to_binary(User ++ "@" ++ Server)),
|
?FIELD(<<"jid">>, exmpp_jid:to_binary(User, Server)),
|
||||||
?FIELD(<<"fn">>, list_to_binary(R#vcard_search.fn)),
|
?FIELD(<<"fn">>, list_to_binary(R#vcard_search.fn)),
|
||||||
?FIELD(<<"last">>, list_to_binary(R#vcard_search.family)),
|
?FIELD(<<"last">>, list_to_binary(R#vcard_search.family)),
|
||||||
?FIELD(<<"first">>, list_to_binary(R#vcard_search.given)),
|
?FIELD(<<"first">>, list_to_binary(R#vcard_search.given)),
|
||||||
@ -729,8 +741,8 @@ reindex_vcards() ->
|
|||||||
|
|
||||||
|
|
||||||
remove_user(User, Server) when is_binary(User), is_binary(Server) ->
|
remove_user(User, Server) when is_binary(User), is_binary(Server) ->
|
||||||
LUser = binary_to_list(exmpp_stringprep:nodeprep(User)),
|
LUser = exmpp_stringprep:nodeprep(User),
|
||||||
LServer = binary_to_list(exmpp_stringprep:nameprep(Server)),
|
LServer = exmpp_stringprep:nameprep(Server),
|
||||||
US = {LUser, LServer},
|
US = {LUser, LServer},
|
||||||
F = fun() ->
|
F = fun() ->
|
||||||
gen_storage:delete(Server, {vcard, US}),
|
gen_storage:delete(Server, {vcard, US}),
|
||||||
@ -747,14 +759,14 @@ update_tables(Host, mnesia) ->
|
|||||||
gen_storage_migration:migrate_mnesia(
|
gen_storage_migration:migrate_mnesia(
|
||||||
Host, vcard,
|
Host, vcard,
|
||||||
[{vcard, [us, vcard],
|
[{vcard, [us, vcard],
|
||||||
fun({vcard, US, Vcard}) ->
|
fun({vcard, {UserS, ServerS}, Vcard}) ->
|
||||||
#vcard{user_host = US,
|
#vcard{user_host = {list_to_binary(UserS), list_to_binary(ServerS)},
|
||||||
vcard = convert_vcard_element(Vcard)}
|
vcard = convert_vcard_element(Vcard)}
|
||||||
end}]),
|
end}]),
|
||||||
gen_storage_migration:migrate_mnesia(
|
gen_storage_migration:migrate_mnesia(
|
||||||
Host, vcard_search,
|
Host, vcard_search,
|
||||||
[{vcard_search, [us,
|
[{vcard_search, [us,
|
||||||
username, lusername,
|
user, luser,
|
||||||
fn, lfn,
|
fn, lfn,
|
||||||
family, lfamily,
|
family, lfamily,
|
||||||
given, lgiven,
|
given, lgiven,
|
||||||
@ -766,8 +778,9 @@ update_tables(Host, mnesia) ->
|
|||||||
email, lemail,
|
email, lemail,
|
||||||
orgname, lorgname,
|
orgname, lorgname,
|
||||||
orgunit, lorgunit],
|
orgunit, lorgunit],
|
||||||
fun(Record) ->
|
fun(#vcard_search{user_host = {UserS, ServerS}} = Record) ->
|
||||||
Record
|
UserHost = {list_to_binary(UserS), list_to_binary(ServerS)},
|
||||||
|
Record#vcard_search{user_host = UserHost, username = UserS}
|
||||||
end}]);
|
end}]);
|
||||||
|
|
||||||
update_tables(Host, odbc) ->
|
update_tables(Host, odbc) ->
|
||||||
@ -896,7 +909,6 @@ get_user_photo(User, Host) ->
|
|||||||
|
|
||||||
user_queue_parse_query(US, Query) ->
|
user_queue_parse_query(US, Query) ->
|
||||||
{User, Server} = US,
|
{User, Server} = US,
|
||||||
?INFO_MSG("Query vcard: ~p", [Query]), %+++
|
|
||||||
case lists:keysearch("removevcard", 1, Query) of
|
case lists:keysearch("removevcard", 1, Query) of
|
||||||
{value, _} ->
|
{value, _} ->
|
||||||
case remove_user(list_to_binary(User), list_to_binary(Server)) of
|
case remove_user(list_to_binary(User), list_to_binary(Server)) of
|
||||||
|
Loading…
Reference in New Issue
Block a user