2009-06-16 19:43:35 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_http_bind.erl
|
|
|
|
%%% Author : Stefan Strigler <steve@zeank.in-berlin.de>
|
|
|
|
%%% Purpose : Implementation of XMPP over BOSH (XEP-0206)
|
|
|
|
%%% Created : Tue Feb 20 13:15:52 CET 2007
|
2009-06-16 19:48:27 +02:00
|
|
|
%%%
|
|
|
|
%%%
|
2010-01-12 17:11:32 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2010 ProcessOne
|
2009-06-16 19:48:27 +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
|
|
|
|
%%%
|
2009-06-16 19:43:35 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
%%%----------------------------------------------------------------------
|
2009-06-16 19:48:27 +02:00
|
|
|
%%% This module acts as a bridge to ejabberd_http_bind which implements
|
2009-06-16 19:43:35 +02:00
|
|
|
%%% the real stuff, this is to handle the new pluggable architecture for
|
2009-06-16 19:48:27 +02:00
|
|
|
%%% extending ejabberd's http service.
|
2009-06-16 19:43:35 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_http_bind).
|
|
|
|
-author('steve@zeank.in-berlin.de').
|
|
|
|
|
2009-06-16 19:44:04 +02:00
|
|
|
%%-define(ejabberd_debug, true).
|
2009-06-16 19:43:35 +02:00
|
|
|
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
|
|
|
-export([
|
2009-06-16 19:44:38 +02:00
|
|
|
start/2,
|
|
|
|
stop/1,
|
|
|
|
process/2
|
2009-06-16 19:43:35 +02:00
|
|
|
]).
|
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
|
|
|
-include("jlib.hrl").
|
|
|
|
-include("ejabberd_http.hrl").
|
2010-02-15 21:20:39 +01:00
|
|
|
-include("http_bind.hrl").
|
2009-06-16 19:43:35 +02:00
|
|
|
|
2010-11-17 20:14:59 +01:00
|
|
|
-define(PROCNAME_MHB, ejabberd_mod_http_bind).
|
|
|
|
|
2009-06-16 19:47:47 +02:00
|
|
|
%% Duplicated from ejabberd_http_bind.
|
|
|
|
%% TODO: move to hrl file.
|
2010-06-07 13:44:55 +02:00
|
|
|
-record(http_bind, {id, pid, to, hold, wait, process_delay, version}).
|
2009-06-16 19:43:35 +02:00
|
|
|
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% API
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
process([], #request{method = 'POST',
|
|
|
|
data = []}) ->
|
|
|
|
?DEBUG("Bad Request: no data", []),
|
2010-02-15 21:20:39 +01:00
|
|
|
{400, ?HEADER, {xmlelement, "h1", [],
|
|
|
|
[{xmlcdata, "400 Bad Request"}]}};
|
2009-06-16 19:43:35 +02:00
|
|
|
process([], #request{method = 'POST',
|
2009-06-16 19:46:51 +02:00
|
|
|
data = Data,
|
|
|
|
ip = IP}) ->
|
2009-06-16 19:44:04 +02:00
|
|
|
?DEBUG("Incoming data: ~s", [Data]),
|
2009-06-16 19:46:51 +02:00
|
|
|
ejabberd_http_bind:process_request(Data, IP);
|
2009-06-16 19:43:35 +02:00
|
|
|
process([], #request{method = 'GET',
|
|
|
|
data = []}) ->
|
2010-02-15 21:20:39 +01:00
|
|
|
{200, ?HEADER, get_human_html_xmlel()};
|
|
|
|
process([], #request{method = 'OPTIONS',
|
|
|
|
data = []}) ->
|
|
|
|
{200, ?OPTIONS_HEADER, []};
|
2009-11-23 16:21:05 +01:00
|
|
|
process(_Path, _Request) ->
|
|
|
|
?DEBUG("Bad Request: ~p", [_Request]),
|
2010-02-15 21:20:39 +01:00
|
|
|
{400, ?HEADER, {xmlelement, "h1", [],
|
|
|
|
[{xmlcdata, "400 Bad Request"}]}}.
|
2009-11-23 16:21:05 +01:00
|
|
|
|
|
|
|
get_human_html_xmlel() ->
|
2010-07-26 20:20:15 +02:00
|
|
|
Heading = "ejabberd " ++ atom_to_list(?MODULE),
|
2009-06-16 19:43:35 +02:00
|
|
|
{xmlelement, "html", [{"xmlns", "http://www.w3.org/1999/xhtml"}],
|
|
|
|
[{xmlelement, "head", [],
|
|
|
|
[{xmlelement, "title", [], [{xmlcdata, Heading}]}]},
|
|
|
|
{xmlelement, "body", [],
|
|
|
|
[{xmlelement, "h1", [], [{xmlcdata, Heading}]},
|
2009-06-16 19:46:46 +02:00
|
|
|
{xmlelement, "p", [],
|
2009-06-16 19:43:35 +02:00
|
|
|
[{xmlcdata, "An implementation of "},
|
2009-11-23 16:21:05 +01:00
|
|
|
{xmlelement, "a",
|
|
|
|
[{"href", "http://xmpp.org/extensions/xep-0206.html"}],
|
|
|
|
[{xmlcdata, "XMPP over BOSH (XEP-0206)"}]}]},
|
|
|
|
{xmlelement, "p", [],
|
|
|
|
[{xmlcdata, "This web page is only informative. "
|
|
|
|
"To use HTTP-Bind you need a Jabber/XMPP client that supports it."}
|
|
|
|
]}
|
|
|
|
]}]}.
|
2009-06-16 19:44:13 +02:00
|
|
|
|
2009-06-16 19:43:35 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% BEHAVIOUR CALLBACKS
|
|
|
|
%%%----------------------------------------------------------------------
|
2010-11-17 20:14:59 +01:00
|
|
|
start(Host, _Opts) ->
|
2009-06-16 19:47:47 +02:00
|
|
|
setup_database(),
|
2010-11-17 20:14:59 +01:00
|
|
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME_MHB),
|
|
|
|
ChildSpec =
|
|
|
|
{Proc,
|
2009-06-16 19:44:00 +02:00
|
|
|
{ejabberd_tmp_sup, start_link,
|
2010-11-17 20:14:59 +01:00
|
|
|
[Proc, ejabberd_http_bind]},
|
2009-06-16 19:44:00 +02:00
|
|
|
permanent,
|
|
|
|
infinity,
|
|
|
|
supervisor,
|
|
|
|
[ejabberd_tmp_sup]},
|
2010-11-17 20:14:59 +01:00
|
|
|
supervisor:start_child(ejabberd_sup, ChildSpec).
|
2009-06-16 19:43:35 +02:00
|
|
|
|
2010-11-17 20:14:59 +01:00
|
|
|
stop(Host) ->
|
|
|
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME_MHB),
|
|
|
|
supervisor:terminate_child(ejabberd_sup, Proc),
|
|
|
|
supervisor:delete_child(ejabberd_sup, Proc).
|
2009-06-16 19:47:47 +02:00
|
|
|
|
|
|
|
setup_database() ->
|
|
|
|
migrate_database(),
|
|
|
|
mnesia:create_table(http_bind,
|
|
|
|
[{ram_copies, [node()]},
|
|
|
|
{attributes, record_info(fields, http_bind)}]).
|
|
|
|
|
|
|
|
migrate_database() ->
|
|
|
|
case catch mnesia:table_info(http_bind, attributes) of
|
2010-06-07 13:44:55 +02:00
|
|
|
[id, pid, to, hold, wait, process_delay, version] ->
|
2009-06-16 19:47:47 +02:00
|
|
|
ok;
|
|
|
|
_ ->
|
|
|
|
%% Since the stored information is not important, instead
|
|
|
|
%% of actually migrating data, let's just destroy the table
|
|
|
|
mnesia:delete_table(http_bind)
|
|
|
|
end.
|