summaryrefslogtreecommitdiff
path: root/src/mod_carboncopy_redis.erl
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-03-30 11:45:09 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-03-30 11:45:09 +0300
commit085b61eea53644c4803259ce2a1ec86bf46d51c0 (patch)
tree83765c20f424a40e1a69009ae7ddfdcbff5efab2 /src/mod_carboncopy_redis.erl
parentAdd SQL as mod_carboncopy RAM backend (diff)
Add Redis as mod_carboncopy RAM backend
Diffstat (limited to 'src/mod_carboncopy_redis.erl')
-rw-r--r--src/mod_carboncopy_redis.erl112
1 files changed, 112 insertions, 0 deletions
diff --git a/src/mod_carboncopy_redis.erl b/src/mod_carboncopy_redis.erl
new file mode 100644
index 00000000..4485e389
--- /dev/null
+++ b/src/mod_carboncopy_redis.erl
@@ -0,0 +1,112 @@
+%%%-------------------------------------------------------------------
+%%% @author Evgeny Khramtsov <ekhramtsov@process-one.net>
+%%% Created : 30 Mar 2017 by Evgeny Khramtsov <ekhramtsov@process-one.net>
+%%%
+%%%
+%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
+%%%
+%%% 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.
+%%%
+%%%-------------------------------------------------------------------
+-module(mod_carboncopy_redis).
+-behaviour(mod_carboncopy).
+
+%% API
+-export([init/2, enable/4, disable/3, list/2]).
+
+-include("ejabberd.hrl").
+-include("logger.hrl").
+
+%%%===================================================================
+%%% API
+%%%===================================================================
+init(_Host, _Opts) ->
+ clean_table().
+
+enable(LUser, LServer, LResource, NS) ->
+ USKey = us_key(LUser, LServer),
+ NodeKey = node_key(),
+ JID = jid:encode({LUser, LServer, LResource}),
+ case ejabberd_redis:qp([["HSET", USKey, LResource, NS],
+ ["SADD", NodeKey, JID]]) of
+ [{ok, _}, {ok, _}] ->
+ ok;
+ Err ->
+ ?ERROR_MSG("failed to write in redis: ~p", [Err]),
+ Err
+ end.
+
+disable(LUser, LServer, LResource) ->
+ USKey = us_key(LUser, LServer),
+ NodeKey = node_key(),
+ JID = jid:encode({LUser, LServer, LResource}),
+ case ejabberd_redis:qp([["HDEL", USKey, LResource],
+ ["SREM", NodeKey, JID]]) of
+ [{ok, _}, {ok, _}] ->
+ ok;
+ Err ->
+ ?ERROR_MSG("failed to delete from redis: ~p", [Err]),
+ Err
+ end.
+
+list(LUser, LServer) ->
+ USKey = us_key(LUser, LServer),
+ case ejabberd_redis:q(["HGETALL", USKey]) of
+ {ok, Vals} ->
+ decode_vals(Vals);
+ Err ->
+ ?ERROR_MSG("failed to read from redis: ~p", [Err]),
+ []
+ end.
+
+%%%===================================================================
+%%% Internal functions
+%%%===================================================================
+clean_table() ->
+ ?INFO_MSG("Cleaning Redis 'carboncopy' table...", []),
+ NodeKey = node_key(),
+ case ejabberd_redis:q(["SMEMBERS", NodeKey]) of
+ {ok, JIDs} ->
+ lists:foreach(
+ fun(JID) ->
+ {U, S, R} = jid:split(jid:decode(JID)),
+ USKey = us_key(U, S),
+ case ejabberd_redis:q(["HDEL", USKey, R]) of
+ {ok, _} ->
+ ok;
+ Err ->
+ ?ERROR_MSG("failed to delete from redis: ~p",
+ [Err])
+ end
+ end, JIDs);
+ Err ->
+ ?ERROR_MSG("failed to read from redis: ~p", [Err])
+ end,
+ case ejabberd_redis:q(["DEL", NodeKey]) of
+ {ok, _} -> ok;
+ Error -> ?ERROR_MSG("failed to delete from redis: ~p", [Error])
+ end.
+
+us_key(LUser, LServer) ->
+ <<"ejabberd:carboncopy:users:", LUser/binary, $@, LServer/binary>>.
+
+node_key() ->
+ Node = erlang:atom_to_binary(node(), latin1),
+ <<"ejabberd:carboncopy:nodes:", Node/binary>>.
+
+decode_vals([Resource, NS|Vals]) ->
+ [{Resource, NS}|decode_vals(Vals)];
+decode_vals([]) ->
+ [].