2016-04-13 10:41:04 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_caps_sql.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-13 10:41:04 +02:00
|
|
|
%%% Created : 13 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2020-01-28 13:34:02 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2020 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:41:04 +02:00
|
|
|
-module(mod_caps_sql).
|
2016-12-27 10:44:07 +01:00
|
|
|
|
2016-04-13 10:41:04 +02:00
|
|
|
-behaviour(mod_caps).
|
|
|
|
|
2016-05-04 20:01:05 +02:00
|
|
|
|
2016-04-13 10:41:04 +02:00
|
|
|
%% API
|
2016-11-22 14:48:01 +01:00
|
|
|
-export([init/2, caps_read/2, caps_write/3, export/1, import/3]).
|
2016-04-13 10:41:04 +02:00
|
|
|
|
|
|
|
-include("mod_caps.hrl").
|
2016-05-04 20:01:05 +02:00
|
|
|
-include("ejabberd_sql_pt.hrl").
|
2017-04-20 17:18:26 +02:00
|
|
|
-include("logger.hrl").
|
2016-04-13 10:41:04 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init(_Host, _Opts) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
caps_read(LServer, {Node, SubNode}) ->
|
2016-04-20 11:27:32 +02:00
|
|
|
case ejabberd_sql:sql_query(
|
2016-05-04 20:01:05 +02:00
|
|
|
LServer,
|
|
|
|
?SQL("select @(feature)s from caps_features where"
|
|
|
|
" node=%(Node)s and subnode=%(SubNode)s")) of
|
|
|
|
{selected, [{H}|_] = Fs} ->
|
2016-09-24 22:34:28 +02:00
|
|
|
case catch binary_to_integer(H) of
|
2016-05-04 20:01:05 +02:00
|
|
|
Int when is_integer(Int), Int>=0 ->
|
|
|
|
{ok, Int};
|
|
|
|
_ ->
|
|
|
|
{ok, [F || {F} <- Fs]}
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
error
|
2016-04-13 10:41:04 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
caps_write(LServer, NodePair, Features) ->
|
2017-04-20 17:18:26 +02:00
|
|
|
case ejabberd_sql:sql_transaction(
|
|
|
|
LServer,
|
|
|
|
sql_write_features_t(NodePair, Features)) of
|
|
|
|
{atomic, _} ->
|
|
|
|
ok;
|
2017-12-17 17:46:55 +01:00
|
|
|
{aborted, _Reason} ->
|
2017-04-20 17:18:26 +02:00
|
|
|
{error, db_failure}
|
|
|
|
end.
|
2016-04-13 10:41:04 +02:00
|
|
|
|
|
|
|
export(_Server) ->
|
|
|
|
[{caps_features,
|
|
|
|
fun(_Host, #caps_features{node_pair = NodePair,
|
|
|
|
features = Features}) ->
|
|
|
|
sql_write_features_t(NodePair, Features);
|
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(_, _, _) ->
|
|
|
|
ok.
|
|
|
|
|
2016-04-13 10:41:04 +02:00
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|
|
|
|
sql_write_features_t({Node, SubNode}, Features) ->
|
|
|
|
NewFeatures = if is_integer(Features) ->
|
2016-09-24 22:34:28 +02:00
|
|
|
[integer_to_binary(Features)];
|
2016-04-13 10:41:04 +02:00
|
|
|
true ->
|
|
|
|
Features
|
|
|
|
end,
|
2016-05-04 20:01:05 +02:00
|
|
|
[?SQL("delete from caps_features where node=%(Node)s"
|
|
|
|
" and subnode=%(SubNode)s;") |
|
|
|
|
[?SQL("insert into caps_features(node, subnode, feature)"
|
|
|
|
" values (%(Node)s, %(SubNode)s, %(F)s);") || F <- NewFeatures]].
|
2016-04-13 10:41:04 +02:00
|
|
|
|