2016-04-13 10:06:59 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_vcard_xupdate_sql.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-13 10:06:59 +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 10:06:59 +02:00
|
|
|
-module(mod_vcard_xupdate_sql).
|
|
|
|
|
2016-05-04 20:01:05 +02:00
|
|
|
-compile([{parse_transform, ejabberd_sql_pt}]).
|
|
|
|
|
2016-05-01 10:03:20 +02:00
|
|
|
-behaviour(mod_vcard_xupdate).
|
|
|
|
|
2016-04-13 10:06:59 +02:00
|
|
|
%% API
|
2016-11-22 14:48:01 +01:00
|
|
|
-export([init/2, import/3, add_xupdate/3, get_xupdate/2, remove_xupdate/2,
|
|
|
|
export/1]).
|
2016-04-13 10:06:59 +02:00
|
|
|
|
|
|
|
-include("mod_vcard_xupdate.hrl").
|
2016-05-04 20:01:05 +02:00
|
|
|
-include("ejabberd_sql_pt.hrl").
|
2016-04-13 10:06:59 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init(_Host, _Opts) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
add_xupdate(LUser, LServer, Hash) ->
|
|
|
|
F = fun () ->
|
2016-05-04 20:01:05 +02:00
|
|
|
?SQL_UPSERT_T(
|
|
|
|
"vcard_xupdate",
|
|
|
|
["!username=%(LUser)s",
|
|
|
|
"hash=%(Hash)s"])
|
2016-04-13 10:06:59 +02:00
|
|
|
end,
|
2016-04-20 11:27:32 +02:00
|
|
|
ejabberd_sql:sql_transaction(LServer, F).
|
2016-04-13 10:06:59 +02:00
|
|
|
|
|
|
|
get_xupdate(LUser, LServer) ->
|
2016-05-04 20:01:05 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
|
|
|
LServer,
|
|
|
|
?SQL("select @(hash)s from vcard_xupdate where"
|
|
|
|
" username=%(LUser)s"))
|
2016-04-13 10:06:59 +02:00
|
|
|
of
|
2016-05-04 20:01:05 +02:00
|
|
|
{selected, [{Hash}]} -> Hash;
|
|
|
|
_ -> undefined
|
2016-04-13 10:06:59 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
remove_xupdate(LUser, LServer) ->
|
|
|
|
F = fun () ->
|
2016-05-04 20:01:05 +02:00
|
|
|
ejabberd_sql:sql_query_t(
|
|
|
|
?SQL("delete from vcard_xupdate where username=%(LUser)s"))
|
2016-04-13 10:06:59 +02:00
|
|
|
end,
|
2016-04-20 11:27:32 +02:00
|
|
|
ejabberd_sql:sql_transaction(LServer, F).
|
2016-04-13 10:06:59 +02:00
|
|
|
|
|
|
|
export(_Server) ->
|
|
|
|
[{vcard_xupdate,
|
|
|
|
fun(Host, #vcard_xupdate{us = {LUser, LServer}, hash = Hash})
|
2016-05-04 20:01:05 +02:00
|
|
|
when LServer == Host ->
|
|
|
|
[?SQL("delete from vcard_xupdate where username=%(LUser)s;"),
|
|
|
|
?SQL("insert into vcard_xupdate(username, hash) values ("
|
|
|
|
"%(LUser)s, %(Hash)s);")];
|
2016-04-13 10:06:59 +02:00
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(_, _, _) ->
|
|
|
|
ok.
|
2016-04-13 10:06:59 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|