mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
107 lines
3.4 KiB
Erlang
107 lines
3.4 KiB
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : mod_bosh_sql.erl
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
|
%%% Purpose :
|
|
%%% Created : 28 Mar 2017 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
|
%%%
|
|
%%%
|
|
%%% ejabberd, Copyright (C) 2017-2024 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_bosh_sql).
|
|
-behaviour(mod_bosh).
|
|
|
|
|
|
%% API
|
|
-export([init/0, open_session/2, close_session/1, find_session/1]).
|
|
-export([sql_schemas/0]).
|
|
|
|
-include("logger.hrl").
|
|
-include("ejabberd_sql_pt.hrl").
|
|
|
|
%%%===================================================================
|
|
%%% API
|
|
%%%===================================================================
|
|
init() ->
|
|
ejabberd_sql_schema:update_schema(
|
|
ejabberd_config:get_myname(), ?MODULE, sql_schemas()),
|
|
Node = erlang:atom_to_binary(node(), latin1),
|
|
?DEBUG("Cleaning SQL 'bosh' table...", []),
|
|
case ejabberd_sql:sql_query(
|
|
ejabberd_config:get_myname(), ?SQL("delete from bosh where node=%(Node)s")) of
|
|
{updated, _} ->
|
|
ok;
|
|
Err ->
|
|
?ERROR_MSG("Failed to clean 'route' table: ~p", [Err]),
|
|
Err
|
|
end.
|
|
|
|
sql_schemas() ->
|
|
[#sql_schema{
|
|
version = 1,
|
|
tables =
|
|
[#sql_table{
|
|
name = <<"bosh">>,
|
|
columns =
|
|
[#sql_column{name = <<"sid">>, type = text},
|
|
#sql_column{name = <<"node">>, type = text},
|
|
#sql_column{name = <<"pid">>, type = text}],
|
|
indices = [#sql_index{
|
|
columns = [<<"sid">>],
|
|
unique = true}]}]}].
|
|
|
|
open_session(SID, Pid) ->
|
|
PidS = misc:encode_pid(Pid),
|
|
Node = erlang:atom_to_binary(node(Pid), latin1),
|
|
case ?SQL_UPSERT(ejabberd_config:get_myname(), "bosh",
|
|
["!sid=%(SID)s",
|
|
"node=%(Node)s",
|
|
"pid=%(PidS)s"]) of
|
|
ok ->
|
|
ok;
|
|
_Err ->
|
|
{error, db_failure}
|
|
end.
|
|
|
|
close_session(SID) ->
|
|
case ejabberd_sql:sql_query(
|
|
ejabberd_config:get_myname(), ?SQL("delete from bosh where sid=%(SID)s")) of
|
|
{updated, _} ->
|
|
ok;
|
|
_Err ->
|
|
{error, db_failure}
|
|
end.
|
|
|
|
find_session(SID) ->
|
|
case ejabberd_sql:sql_query(
|
|
ejabberd_config:get_myname(),
|
|
?SQL("select @(pid)s, @(node)s from bosh where sid=%(SID)s")) of
|
|
{selected, [{Pid, Node}]} ->
|
|
try {ok, misc:decode_pid(Pid, Node)}
|
|
catch _:{bad_node, _} -> {error, notfound}
|
|
end;
|
|
{selected, []} ->
|
|
{error, notfound};
|
|
_Err ->
|
|
{error, db_failure}
|
|
end.
|
|
|
|
%%%===================================================================
|
|
%%% Internal functions
|
|
%%%===================================================================
|