2016-04-13 08:59:39 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2016-12-27 10:44:07 +01:00
|
|
|
%%% File : mod_last_mnesia.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-04-13 08:59:39 +02:00
|
|
|
%%% Created : 13 Apr 2016 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2024-01-22 16:40:01 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2024 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 08:59:39 +02:00
|
|
|
-module(mod_last_mnesia).
|
2016-12-27 10:44:07 +01:00
|
|
|
|
2016-04-13 08:59:39 +02:00
|
|
|
-behaviour(mod_last).
|
|
|
|
|
|
|
|
%% API
|
2017-05-18 12:21:17 +02:00
|
|
|
-export([init/2, import/2, get_last/2, store_last_info/4,
|
|
|
|
remove_user/2, use_cache/1]).
|
2017-04-23 15:37:58 +02:00
|
|
|
-export([need_transform/1, transform/1]).
|
2016-04-13 08:59:39 +02:00
|
|
|
|
|
|
|
-include("mod_last.hrl").
|
|
|
|
-include("logger.hrl").
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
init(_Host, _Opts) ->
|
2016-11-30 11:09:17 +01:00
|
|
|
ejabberd_mnesia:create(?MODULE, last_activity,
|
2017-05-18 12:21:17 +02:00
|
|
|
[{disc_only_copies, [node()]},
|
2017-04-23 15:37:58 +02:00
|
|
|
{attributes, record_info(fields, last_activity)}]).
|
2016-04-13 08:59:39 +02:00
|
|
|
|
2017-05-18 12:21:17 +02:00
|
|
|
use_cache(Host) ->
|
|
|
|
case mnesia:table_info(last_activity, storage_type) of
|
|
|
|
disc_only_copies ->
|
2019-06-14 11:33:26 +02:00
|
|
|
mod_last_opt:use_cache(Host);
|
2017-05-18 12:21:17 +02:00
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end.
|
|
|
|
|
2016-04-13 08:59:39 +02:00
|
|
|
get_last(LUser, LServer) ->
|
|
|
|
case mnesia:dirty_read(last_activity, {LUser, LServer}) of
|
|
|
|
[] ->
|
2017-05-18 12:21:17 +02:00
|
|
|
error;
|
2016-04-13 08:59:39 +02:00
|
|
|
[#last_activity{timestamp = TimeStamp,
|
|
|
|
status = Status}] ->
|
2017-05-18 12:21:17 +02:00
|
|
|
{ok, {TimeStamp, Status}}
|
2016-04-13 08:59:39 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
store_last_info(LUser, LServer, TimeStamp, Status) ->
|
2017-05-18 12:21:17 +02:00
|
|
|
mnesia:dirty_write(#last_activity{us = {LUser, LServer},
|
|
|
|
timestamp = TimeStamp,
|
|
|
|
status = Status}).
|
2016-04-13 08:59:39 +02:00
|
|
|
|
|
|
|
remove_user(LUser, LServer) ->
|
|
|
|
US = {LUser, LServer},
|
2017-05-18 12:21:17 +02:00
|
|
|
mnesia:dirty_delete({last_activity, US}).
|
2016-04-13 08:59:39 +02:00
|
|
|
|
|
|
|
import(_LServer, #last_activity{} = LA) ->
|
|
|
|
mnesia:dirty_write(LA).
|
|
|
|
|
2019-06-14 11:33:26 +02:00
|
|
|
need_transform({last_activity, {U, S}, _, Status})
|
2017-04-23 15:37:58 +02:00
|
|
|
when is_list(U) orelse is_list(S) orelse is_list(Status) ->
|
|
|
|
?INFO_MSG("Mnesia table 'last_activity' will be converted to binary", []),
|
|
|
|
true;
|
|
|
|
need_transform(_) ->
|
|
|
|
false.
|
|
|
|
|
|
|
|
transform(#last_activity{us = {U, S}, status = Status} = R) ->
|
|
|
|
R#last_activity{us = {iolist_to_binary(U), iolist_to_binary(S)},
|
|
|
|
status = iolist_to_binary(Status)}.
|
|
|
|
|
2016-04-13 08:59:39 +02:00
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|