egs/src/egs_user_model.erl

151 lines
4.3 KiB
Erlang

%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @doc User domain model.
%%
%% This file is part of EGS.
%%
%% EGS 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 3 of the License, or
%% (at your option) any later version.
%%
%% EGS 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 EGS. If not, see <http://www.gnu.org/licenses/>.
-module(egs_user_model).
-behavior(gen_server).
-export([start_link/0, stop/0, count/0, read/1, select/1, write/1, delete/1]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.
%% Use the module name for the server's name and for the table name.
-define(SERVER, ?MODULE).
-define(TABLE, ?MODULE).
-include("include/records.hrl").
-include_lib("stdlib/include/qlc.hrl").
%% @spec do(Q) -> Record
%% @doc Perform a mnesia transaction using a QLC query.
do(Q) ->
F = fun() -> qlc:e(Q) end,
{atomic, Val} = mnesia:transaction(F),
Val.
%% API
%% @spec start_link() -> {ok,Pid::pid()}
start_link() ->
gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
%% @spec stop() -> stopped
stop() ->
gen_server:call(?SERVER, stop).
%% @spec count() -> {ok, Count}
count() ->
gen_server:call(?SERVER, count).
%% @spec read({pid, Pid}) -> {ok, User} | {error, badarg}
%% @spec read(ID) -> {ok, User} | {error, badarg}
read(ID) ->
gen_server:call(?SERVER, {read, ID}).
%% @spec select(all) -> {ok, List}
%% @spec select({neighbors, User}) -> {ok, List}
select(Type) ->
gen_server:call(?SERVER, {select, Type}).
%% @spec write(User) -> ok
write(User) ->
gen_server:cast(?SERVER, {write, User}).
%% @spec delete(ID) -> ok
delete(ID) ->
gen_server:cast(?SERVER, {delete, ID}).
%% gen_server
init([]) ->
timer:apply_interval(30000, gen_server, cast, [?SERVER, cleanup]),
error_logger:info_report("egs_user_model started"),
{ok, undefined}.
handle_call(count, _From, State) ->
Count = mnesia:table_info(?TABLE, size),
{reply, {ok, Count}, State};
handle_call({read, {pid, Pid}}, _From, State) ->
List = do(qlc:q([X || X <- mnesia:table(?TABLE), X#?TABLE.pid =:= Pid])),
case List of
[] -> {reply, {error, badarg}, State};
[User] -> {reply, {ok, User}, State}
end;
handle_call({read, ID}, _From, State) ->
case mnesia:transaction(fun() -> mnesia:read({?TABLE, ID}) end) of
{atomic, []} -> {reply, {error, badarg}, State};
{atomic, [Val]} -> {reply, {ok, Val}, State}
end;
%% @todo state = undefined | {wait_for_authentication, Key} | authenticated | online
handle_call({select, all}, _From, State) ->
List = do(qlc:q([X || X <- mnesia:table(?TABLE),
X#?TABLE.pid /= undefined,
X#?TABLE.state =:= online
])),
{reply, {ok, List}, State};
handle_call({select, {neighbors, User}}, _From, State) ->
List = do(qlc:q([X || X <- mnesia:table(?TABLE),
X#?TABLE.id /= User#?TABLE.id,
X#?TABLE.pid /= undefined,
X#?TABLE.state =:= online,
X#?TABLE.instancepid =:= User#?TABLE.instancepid,
X#?TABLE.area =:= User#?TABLE.area
])),
{reply, {ok, List}, State};
handle_call(stop, _From, State) ->
{stop, normal, stopped, State};
handle_call(_Request, _From, State) ->
{reply, ignored, State}.
handle_cast({write, User}, State) ->
mnesia:transaction(fun() -> mnesia:write(User) end),
{noreply, State};
handle_cast({delete, ID}, State) ->
mnesia:transaction(fun() -> mnesia:delete({?TABLE, ID}) end),
{noreply, State};
%% @todo Cleanup more than the auth failures?
handle_cast(cleanup, State) ->
Timeout = calendar:datetime_to_gregorian_seconds(calendar:universal_time()) - 300,
List = do(qlc:q([X#?TABLE.id || X <- mnesia:table(?TABLE),
X#?TABLE.state /= authenticated,
X#?TABLE.state /= online,
X#?TABLE.time < Timeout
])),
mnesia:transaction(fun() ->
lists:foreach(fun(ID) -> delete(ID) end, List)
end),
{noreply, State};
handle_cast(_Msg, State) ->
{noreply, State}.
handle_info(_Info, State) ->
{noreply, State}.
terminate(_Reason, _State) ->
ok.
code_change(_OldVsn, State, _Extra) ->
{ok, State}.