2016-04-13 16:37:52 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_vcard_sql.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-13 16:37:52 +02:00
|
|
|
%%% Created : 13 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2016-12-27 10:44:07 +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.
|
|
|
|
%%%
|
|
|
|
%%% 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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
2016-04-13 16:37:52 +02:00
|
|
|
-module(mod_vcard_sql).
|
|
|
|
|
|
|
|
-compile([{parse_transform, ejabberd_sql_pt}]).
|
|
|
|
|
|
|
|
-behaviour(mod_vcard).
|
|
|
|
|
|
|
|
%% API
|
2016-07-29 16:39:13 +02:00
|
|
|
-export([init/2, stop/1, get_vcard/2, set_vcard/4, search/4, remove_user/2,
|
2016-11-22 14:48:01 +01:00
|
|
|
search_fields/1, search_reported/1, import/3, export/1]).
|
|
|
|
-export([is_search_supported/1]).
|
2016-04-13 16:37:52 +02:00
|
|
|
|
2016-07-26 10:29:17 +02:00
|
|
|
-include("xmpp.hrl").
|
2016-04-13 16:37:52 +02:00
|
|
|
-include("mod_vcard.hrl").
|
|
|
|
-include("logger.hrl").
|
|
|
|
-include("ejabberd_sql_pt.hrl").
|
2017-09-24 11:42:35 +02:00
|
|
|
-include("translate.hrl").
|
2016-04-13 16:37:52 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init(_Host, _Opts) ->
|
|
|
|
ok.
|
|
|
|
|
2016-07-29 16:39:13 +02:00
|
|
|
stop(_Host) ->
|
|
|
|
ok.
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
is_search_supported(_LServer) ->
|
|
|
|
true.
|
|
|
|
|
2016-04-13 16:37:52 +02:00
|
|
|
get_vcard(LUser, LServer) ->
|
2017-05-23 11:25:13 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(vcard)s from vcard where username=%(LUser)s")) of
|
2016-04-13 16:37:52 +02:00
|
|
|
{selected, [{SVCARD}]} ->
|
|
|
|
case fxml_stream:parse_element(SVCARD) of
|
|
|
|
{error, _Reason} -> error;
|
2017-05-17 16:13:34 +02:00
|
|
|
VCARD -> {ok, [VCARD]}
|
2016-04-13 16:37:52 +02:00
|
|
|
end;
|
2017-05-17 16:13:34 +02:00
|
|
|
{selected, []} -> {ok, []};
|
2016-04-13 16:37:52 +02:00
|
|
|
_ -> error
|
|
|
|
end.
|
|
|
|
|
|
|
|
set_vcard(LUser, LServer, VCARD,
|
|
|
|
#vcard_search{user = {User, _},
|
|
|
|
fn = FN,
|
|
|
|
lfn = LFN,
|
|
|
|
family = Family,
|
|
|
|
lfamily = LFamily,
|
|
|
|
given = Given,
|
|
|
|
lgiven = LGiven,
|
|
|
|
middle = Middle,
|
|
|
|
lmiddle = LMiddle,
|
|
|
|
nickname = Nickname,
|
|
|
|
lnickname = LNickname,
|
|
|
|
bday = BDay,
|
|
|
|
lbday = LBDay,
|
|
|
|
ctry = CTRY,
|
|
|
|
lctry = LCTRY,
|
|
|
|
locality = Locality,
|
|
|
|
llocality = LLocality,
|
|
|
|
email = EMail,
|
|
|
|
lemail = LEMail,
|
|
|
|
orgname = OrgName,
|
|
|
|
lorgname = LOrgName,
|
|
|
|
orgunit = OrgUnit,
|
|
|
|
lorgunit = LOrgUnit}) ->
|
|
|
|
SVCARD = fxml:element_to_binary(VCARD),
|
2017-05-23 11:25:13 +02:00
|
|
|
ejabberd_sql:sql_transaction(
|
|
|
|
LServer,
|
|
|
|
fun() ->
|
|
|
|
?SQL_UPSERT(LServer, "vcard",
|
|
|
|
["!username=%(LUser)s",
|
|
|
|
"vcard=%(SVCARD)s"]),
|
|
|
|
?SQL_UPSERT(LServer, "vcard_search",
|
|
|
|
["username=%(User)s",
|
|
|
|
"!lusername=%(LUser)s",
|
|
|
|
"fn=%(FN)s",
|
|
|
|
"lfn=%(LFN)s",
|
|
|
|
"family=%(Family)s",
|
|
|
|
"lfamily=%(LFamily)s",
|
|
|
|
"given=%(Given)s",
|
|
|
|
"lgiven=%(LGiven)s",
|
|
|
|
"middle=%(Middle)s",
|
|
|
|
"lmiddle=%(LMiddle)s",
|
|
|
|
"nickname=%(Nickname)s",
|
|
|
|
"lnickname=%(LNickname)s",
|
|
|
|
"bday=%(BDay)s",
|
|
|
|
"lbday=%(LBDay)s",
|
|
|
|
"ctry=%(CTRY)s",
|
|
|
|
"lctry=%(LCTRY)s",
|
|
|
|
"locality=%(Locality)s",
|
|
|
|
"llocality=%(LLocality)s",
|
|
|
|
"email=%(EMail)s",
|
|
|
|
"lemail=%(LEMail)s",
|
|
|
|
"orgname=%(OrgName)s",
|
|
|
|
"lorgname=%(LOrgName)s",
|
|
|
|
"orgunit=%(OrgUnit)s",
|
|
|
|
"lorgunit=%(LOrgUnit)s"])
|
|
|
|
end).
|
2016-04-13 16:37:52 +02:00
|
|
|
|
|
|
|
search(LServer, Data, AllowReturnAll, MaxMatch) ->
|
|
|
|
MatchSpec = make_matchspec(LServer, Data),
|
|
|
|
if (MatchSpec == <<"">>) and not AllowReturnAll -> [];
|
|
|
|
true ->
|
|
|
|
Limit = case MaxMatch of
|
|
|
|
infinity ->
|
|
|
|
<<"">>;
|
|
|
|
Val ->
|
2016-09-24 22:34:28 +02:00
|
|
|
[<<" LIMIT ">>, integer_to_binary(Val)]
|
2016-04-13 16:37:52 +02:00
|
|
|
end,
|
2016-04-20 11:27:32 +02:00
|
|
|
case catch ejabberd_sql:sql_query(
|
2016-04-13 16:37:52 +02:00
|
|
|
LServer,
|
|
|
|
[<<"select username, fn, family, given, "
|
|
|
|
"middle, nickname, bday, ctry, "
|
|
|
|
"locality, email, orgname, orgunit "
|
|
|
|
"from vcard_search ">>,
|
|
|
|
MatchSpec, Limit, <<";">>]) of
|
|
|
|
{selected,
|
|
|
|
[<<"username">>, <<"fn">>, <<"family">>, <<"given">>,
|
|
|
|
<<"middle">>, <<"nickname">>, <<"bday">>, <<"ctry">>,
|
|
|
|
<<"locality">>, <<"email">>, <<"orgname">>,
|
|
|
|
<<"orgunit">>], Rs} when is_list(Rs) ->
|
2016-07-29 16:39:13 +02:00
|
|
|
[row_to_item(LServer, R) || R <- Rs];
|
2016-04-13 16:37:52 +02:00
|
|
|
Error ->
|
|
|
|
?ERROR_MSG("~p", [Error]), []
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2016-07-29 16:39:13 +02:00
|
|
|
search_fields(_LServer) ->
|
2017-09-24 11:42:35 +02:00
|
|
|
[{?T("User"), <<"user">>},
|
|
|
|
{?T("Full Name"), <<"fn">>},
|
|
|
|
{?T("Name"), <<"first">>},
|
|
|
|
{?T("Middle Name"), <<"middle">>},
|
|
|
|
{?T("Family Name"), <<"last">>},
|
|
|
|
{?T("Nickname"), <<"nick">>},
|
|
|
|
{?T("Birthday"), <<"bday">>},
|
|
|
|
{?T("Country"), <<"ctry">>},
|
|
|
|
{?T("City"), <<"locality">>},
|
|
|
|
{?T("Email"), <<"email">>},
|
|
|
|
{?T("Organization Name"), <<"orgname">>},
|
|
|
|
{?T("Organization Unit"), <<"orgunit">>}].
|
2016-07-29 16:39:13 +02:00
|
|
|
|
|
|
|
search_reported(_LServer) ->
|
2017-09-24 11:42:35 +02:00
|
|
|
[{?T("Jabber ID"), <<"jid">>},
|
|
|
|
{?T("Full Name"), <<"fn">>},
|
|
|
|
{?T("Name"), <<"first">>},
|
|
|
|
{?T("Middle Name"), <<"middle">>},
|
|
|
|
{?T("Family Name"), <<"last">>},
|
|
|
|
{?T("Nickname"), <<"nick">>},
|
|
|
|
{?T("Birthday"), <<"bday">>},
|
|
|
|
{?T("Country"), <<"ctry">>},
|
|
|
|
{?T("City"), <<"locality">>},
|
|
|
|
{?T("Email"), <<"email">>},
|
|
|
|
{?T("Organization Name"), <<"orgname">>},
|
|
|
|
{?T("Organization Unit"), <<"orgunit">>}].
|
2016-07-29 16:39:13 +02:00
|
|
|
|
2016-04-13 16:37:52 +02:00
|
|
|
remove_user(LUser, LServer) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
ejabberd_sql:sql_transaction(
|
2016-04-13 16:37:52 +02:00
|
|
|
LServer,
|
|
|
|
fun() ->
|
2016-04-20 11:27:32 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
2016-04-13 16:37:52 +02:00
|
|
|
?SQL("delete from vcard where username=%(LUser)s")),
|
2016-04-20 11:27:32 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
2016-04-13 16:37:52 +02:00
|
|
|
?SQL("delete from vcard_search where lusername=%(LUser)s"))
|
|
|
|
end).
|
|
|
|
|
|
|
|
export(_Server) ->
|
|
|
|
[{vcard,
|
|
|
|
fun(Host, #vcard{us = {LUser, LServer}, vcard = VCARD})
|
|
|
|
when LServer == Host ->
|
2016-05-04 20:01:05 +02:00
|
|
|
SVCARD = fxml:element_to_binary(VCARD),
|
|
|
|
[?SQL("delete from vcard where username=%(LUser)s;"),
|
|
|
|
?SQL("insert into vcard(username, vcard) values ("
|
|
|
|
"%(LUser)s, %(SVCARD)s);")];
|
2016-04-13 16:37:52 +02:00
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end},
|
|
|
|
{vcard_search,
|
|
|
|
fun(Host, #vcard_search{user = {User, LServer}, luser = LUser,
|
|
|
|
fn = FN, lfn = LFN, family = Family,
|
|
|
|
lfamily = LFamily, given = Given,
|
|
|
|
lgiven = LGiven, middle = Middle,
|
|
|
|
lmiddle = LMiddle, nickname = Nickname,
|
|
|
|
lnickname = LNickname, bday = BDay,
|
|
|
|
lbday = LBDay, ctry = CTRY, lctry = LCTRY,
|
|
|
|
locality = Locality, llocality = LLocality,
|
|
|
|
email = EMail, lemail = LEMail,
|
|
|
|
orgname = OrgName, lorgname = LOrgName,
|
|
|
|
orgunit = OrgUnit, lorgunit = LOrgUnit})
|
|
|
|
when LServer == Host ->
|
2016-05-04 20:01:05 +02:00
|
|
|
[?SQL("delete from vcard_search where lusername=%(LUser)s;"),
|
|
|
|
?SQL("insert into vcard_search(username,"
|
|
|
|
" lusername, fn, lfn, family, lfamily,"
|
|
|
|
" given, lgiven, middle, lmiddle,"
|
|
|
|
" nickname, lnickname, bday, lbday,"
|
|
|
|
" ctry, lctry, locality, llocality,"
|
|
|
|
" email, lemail, orgname, lorgname,"
|
|
|
|
" orgunit, lorgunit) values ("
|
|
|
|
" %(LUser)s, %(User)s,"
|
|
|
|
" %(FN)s, %(LFN)s,"
|
|
|
|
" %(Family)s, %(LFamily)s,"
|
|
|
|
" %(Given)s, %(LGiven)s,"
|
|
|
|
" %(Middle)s, %(LMiddle)s,"
|
|
|
|
" %(Nickname)s, %(LNickname)s,"
|
|
|
|
" %(BDay)s, %(LBDay)s,"
|
|
|
|
" %(CTRY)s, %(LCTRY)s,"
|
|
|
|
" %(Locality)s, %(LLocality)s,"
|
|
|
|
" %(EMail)s, %(LEMail)s,"
|
|
|
|
" %(OrgName)s, %(LOrgName)s,"
|
|
|
|
" %(OrgUnit)s, %(LOrgUnit)s);")];
|
2016-04-13 16:37:52 +02:00
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(_, _, _) ->
|
|
|
|
ok.
|
2016-04-13 16:37:52 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|
|
|
|
make_matchspec(LServer, Data) ->
|
|
|
|
filter_fields(Data, <<"">>, LServer).
|
|
|
|
|
|
|
|
filter_fields([], Match, _LServer) ->
|
|
|
|
case Match of
|
|
|
|
<<"">> -> <<"">>;
|
|
|
|
_ -> [<<" where ">>, Match]
|
|
|
|
end;
|
|
|
|
filter_fields([{SVar, [Val]} | Ds], Match, LServer)
|
|
|
|
when is_binary(Val) and (Val /= <<"">>) ->
|
|
|
|
LVal = mod_vcard:string2lower(Val),
|
|
|
|
NewMatch = case SVar of
|
|
|
|
<<"user">> -> make_val(Match, <<"lusername">>, LVal);
|
|
|
|
<<"fn">> -> make_val(Match, <<"lfn">>, LVal);
|
|
|
|
<<"last">> -> make_val(Match, <<"lfamily">>, LVal);
|
|
|
|
<<"first">> -> make_val(Match, <<"lgiven">>, LVal);
|
|
|
|
<<"middle">> -> make_val(Match, <<"lmiddle">>, LVal);
|
|
|
|
<<"nick">> -> make_val(Match, <<"lnickname">>, LVal);
|
|
|
|
<<"bday">> -> make_val(Match, <<"lbday">>, LVal);
|
|
|
|
<<"ctry">> -> make_val(Match, <<"lctry">>, LVal);
|
|
|
|
<<"locality">> ->
|
|
|
|
make_val(Match, <<"llocality">>, LVal);
|
|
|
|
<<"email">> -> make_val(Match, <<"lemail">>, LVal);
|
|
|
|
<<"orgname">> -> make_val(Match, <<"lorgname">>, LVal);
|
|
|
|
<<"orgunit">> -> make_val(Match, <<"lorgunit">>, LVal);
|
|
|
|
_ -> Match
|
|
|
|
end,
|
|
|
|
filter_fields(Ds, NewMatch, LServer);
|
|
|
|
filter_fields([_ | Ds], Match, LServer) ->
|
|
|
|
filter_fields(Ds, Match, LServer).
|
|
|
|
|
|
|
|
make_val(Match, Field, Val) ->
|
|
|
|
Condition = case str:suffix(<<"*">>, Val) of
|
|
|
|
true ->
|
|
|
|
Val1 = str:substr(Val, 1, byte_size(Val) - 1),
|
2016-05-12 17:32:13 +02:00
|
|
|
SVal = <<(ejabberd_sql:escape(
|
|
|
|
ejabberd_sql:escape_like_arg_circumflex(
|
|
|
|
Val1)))/binary,
|
2016-04-13 16:37:52 +02:00
|
|
|
"%">>,
|
2016-05-12 17:32:13 +02:00
|
|
|
[Field, <<" LIKE '">>, SVal, <<"' ESCAPE '^'">>];
|
2016-04-13 16:37:52 +02:00
|
|
|
_ ->
|
2016-04-20 11:27:32 +02:00
|
|
|
SVal = ejabberd_sql:escape(Val),
|
2016-04-13 16:37:52 +02:00
|
|
|
[Field, <<" = '">>, SVal, <<"'">>]
|
|
|
|
end,
|
|
|
|
case Match of
|
|
|
|
<<"">> -> Condition;
|
|
|
|
_ -> [Match, <<" and ">>, Condition]
|
|
|
|
end.
|
2016-07-29 16:39:13 +02:00
|
|
|
|
|
|
|
row_to_item(LServer, [Username, FN, Family, Given, Middle, Nickname, BDay,
|
|
|
|
CTRY, Locality, EMail, OrgName, OrgUnit]) ->
|
|
|
|
[{<<"jid">>, <<Username/binary, $@, LServer/binary>>},
|
|
|
|
{<<"fn">>, FN},
|
|
|
|
{<<"last">>, Family},
|
|
|
|
{<<"first">>, Given},
|
|
|
|
{<<"middle">>, Middle},
|
|
|
|
{<<"nick">>, Nickname},
|
|
|
|
{<<"bday">>, BDay},
|
|
|
|
{<<"ctry">>, CTRY},
|
|
|
|
{<<"locality">>, Locality},
|
|
|
|
{<<"email">>, EMail},
|
|
|
|
{<<"orgname">>, OrgName},
|
|
|
|
{<<"orgunit">>, OrgUnit}].
|