2016-07-20 15:55:45 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_oauth_mnesia.erl
|
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%% Purpose : OAUTH2 mnesia backend
|
|
|
|
%%% Created : 20 Jul 2016 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2020-01-28 13:34:02 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2020 ProcessOne
|
2016-07-20 15:55:45 +02: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., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(ejabberd_oauth_mnesia).
|
2017-05-21 10:31:30 +02:00
|
|
|
-behaviour(ejabberd_oauth).
|
2016-07-20 15:55:45 +02:00
|
|
|
|
|
|
|
-export([init/0,
|
|
|
|
store/1,
|
|
|
|
lookup/1,
|
2017-05-17 16:42:22 +02:00
|
|
|
clean/1,
|
2019-09-27 19:36:35 +02:00
|
|
|
lookup_client/1,
|
|
|
|
store_client/1,
|
|
|
|
remove_client/1,
|
2017-05-17 16:42:22 +02:00
|
|
|
use_cache/0]).
|
2016-07-20 15:55:45 +02:00
|
|
|
|
|
|
|
-include("ejabberd_oauth.hrl").
|
|
|
|
|
|
|
|
init() ->
|
2016-11-30 11:09:17 +01:00
|
|
|
ejabberd_mnesia:create(?MODULE, oauth_token,
|
2017-05-17 16:42:22 +02:00
|
|
|
[{disc_only_copies, [node()]},
|
2016-07-20 15:55:45 +02:00
|
|
|
{attributes,
|
|
|
|
record_info(fields, oauth_token)}]),
|
2019-09-27 19:36:35 +02:00
|
|
|
ejabberd_mnesia:create(?MODULE, oauth_client,
|
|
|
|
[{disc_copies, [node()]},
|
|
|
|
{attributes,
|
|
|
|
record_info(fields, oauth_client)}]),
|
2016-07-20 15:55:45 +02:00
|
|
|
ok.
|
|
|
|
|
2017-05-17 16:42:22 +02:00
|
|
|
use_cache() ->
|
|
|
|
case mnesia:table_info(oauth_token, storage_type) of
|
|
|
|
disc_only_copies ->
|
2019-06-14 11:33:26 +02:00
|
|
|
ejabberd_option:oauth_use_cache();
|
2017-05-17 16:42:22 +02:00
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end.
|
|
|
|
|
2016-07-20 15:55:45 +02:00
|
|
|
store(R) ->
|
|
|
|
mnesia:dirty_write(R).
|
|
|
|
|
|
|
|
lookup(Token) ->
|
|
|
|
case catch mnesia:dirty_read(oauth_token, Token) of
|
|
|
|
[R] ->
|
2017-04-21 08:02:10 +02:00
|
|
|
{ok, R};
|
2016-07-20 15:55:45 +02:00
|
|
|
_ ->
|
2017-04-21 08:02:10 +02:00
|
|
|
error
|
2016-07-20 15:55:45 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
clean(TS) ->
|
|
|
|
F = fun() ->
|
|
|
|
Ts = mnesia:select(
|
|
|
|
oauth_token,
|
|
|
|
[{#oauth_token{expire = '$1', _ = '_'},
|
|
|
|
[{'<', '$1', TS}],
|
|
|
|
['$_']}]),
|
|
|
|
lists:foreach(fun mnesia:delete_object/1, Ts)
|
|
|
|
end,
|
|
|
|
mnesia:async_dirty(F).
|
2019-09-27 19:36:35 +02:00
|
|
|
|
|
|
|
lookup_client(ClientID) ->
|
|
|
|
case catch mnesia:dirty_read(oauth_client, ClientID) of
|
|
|
|
[R] ->
|
|
|
|
{ok, R};
|
|
|
|
_ ->
|
|
|
|
error
|
|
|
|
end.
|
|
|
|
|
|
|
|
remove_client(ClientID) ->
|
|
|
|
mnesia:dirty_delete(oauth_client, ClientID).
|
|
|
|
|
|
|
|
store_client(R) ->
|
|
|
|
mnesia:dirty_write(R).
|