2004-03-02 22:16:55 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_web.erl
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2007-06-27 13:05:14 +02:00
|
|
|
%%% Purpose :
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% Created : 28 Feb 2004 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2009-01-19 15:47:33 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2009 ProcessOne
|
2007-12-24 14:57:53 +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.
|
2009-01-19 15:47:33 +01:00
|
|
|
%%%
|
2007-12-24 14:57:53 +01:00
|
|
|
%%% 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
|
|
|
|
%%%
|
2004-03-02 22:16:55 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(ejabberd_web).
|
2007-12-24 14:57:53 +01:00
|
|
|
-author('alexey@process-one.net').
|
2004-03-02 22:16:55 +01:00
|
|
|
|
|
|
|
%% External exports
|
2008-05-31 20:21:43 +02:00
|
|
|
-export([make_xhtml/1, make_xhtml/2,
|
2007-01-25 06:53:58 +01:00
|
|
|
error/1]).
|
2004-03-02 22:16:55 +01:00
|
|
|
|
2008-10-13 17:36:43 +02:00
|
|
|
-include_lib("exmpp/include/exmpp.hrl").
|
|
|
|
|
2004-03-02 22:16:55 +01:00
|
|
|
-include("ejabberd.hrl").
|
2004-03-04 21:56:32 +01:00
|
|
|
-include("ejabberd_http.hrl").
|
2004-03-02 22:16:55 +01:00
|
|
|
|
2009-02-06 14:34:12 +01:00
|
|
|
%% @type html() = term()
|
2004-03-02 22:16:55 +01:00
|
|
|
|
2007-01-25 06:53:58 +01:00
|
|
|
%% XXX bard: there are variants of make_xhtml in ejabberd_http and
|
|
|
|
%% ejabberd_web_admin. It might be a good idea to centralize it here
|
|
|
|
%% and also create an ejabberd_web.hrl file holding the macros, so
|
|
|
|
%% that third parties can use ejabberd_web as an "utility" library.
|
|
|
|
|
2004-03-02 22:16:55 +01:00
|
|
|
make_xhtml(Els) ->
|
2008-05-31 20:21:43 +02:00
|
|
|
make_xhtml([], Els).
|
|
|
|
|
|
|
|
make_xhtml(HeadEls, Els) ->
|
2008-10-13 17:36:43 +02:00
|
|
|
#xmlel{ns = ?NS_XHTML, name = 'html', attrs = [
|
2009-01-21 14:34:26 +01:00
|
|
|
exmpp_xml:attribute(?NS_XML, 'lang', <<"en">>),
|
|
|
|
?XMLATTR('lang', <<"en">>)], children = [
|
2008-10-13 17:36:43 +02:00
|
|
|
#xmlel{ns = ?NS_XHTML, name = 'head', children = [
|
|
|
|
#xmlel{ns = ?NS_XHTML, name = 'meta', attrs = [
|
2009-01-21 14:34:26 +01:00
|
|
|
?XMLATTR('http-equiv', <<"Content-Type">>),
|
|
|
|
?XMLATTR('content', <<"text/html; charset=utf-8">>)
|
2008-10-13 17:36:43 +02:00
|
|
|
]}
|
|
|
|
| HeadEls
|
|
|
|
]},
|
|
|
|
#xmlel{ns = ?NS_XHTML, name = 'body', children = Els}
|
|
|
|
]}.
|
2004-03-02 22:16:55 +01:00
|
|
|
|
|
|
|
|
2008-10-13 17:36:43 +02:00
|
|
|
-define(X(Name), #xmlel{ns = ?NS_XHTML, name = Name}).
|
|
|
|
-define(XA(Name, Attrs), #xmlel{ns = ?NS_XHTML, name = Name, attrs = Attrs}).
|
|
|
|
-define(XE(Name, Els), #xmlel{ns = ?NS_XHTML, name = Name, children = Els}).
|
|
|
|
-define(XAE(Name, Attrs, Els), #xmlel{ns = ?NS_XHTML, name = Name,
|
|
|
|
attrs = Attrs, children = Els}).
|
|
|
|
-define(C(Text), #xmlcdata{cdata = list_to_binary(Text)}).
|
2004-03-02 22:16:55 +01:00
|
|
|
-define(XC(Name, Text), ?XE(Name, [?C(Text)])).
|
|
|
|
-define(XAC(Name, Attrs, Text), ?XAE(Name, Attrs, [?C(Text)])).
|
|
|
|
|
2008-10-13 17:36:43 +02:00
|
|
|
-define(LI(Els), ?XE('li', Els)).
|
2009-01-21 14:34:26 +01:00
|
|
|
-define(A(URL, Els), ?XAE('a', [?XMLATTR('href', URL)], Els)).
|
2004-03-02 22:16:55 +01:00
|
|
|
-define(AC(URL, Text), ?A(URL, [?C(Text)])).
|
2008-10-13 17:36:43 +02:00
|
|
|
-define(P, ?X('p')).
|
|
|
|
-define(BR, ?X('br')).
|
2004-03-21 21:27:09 +01:00
|
|
|
-define(INPUT(Type, Name, Value),
|
2009-01-21 14:34:26 +01:00
|
|
|
?XA('input', [?XMLATTR('type', Type),
|
|
|
|
?XMLATTR('name', Name),
|
|
|
|
?XMLATTR('value', Value)])).
|
2004-03-03 22:07:27 +01:00
|
|
|
|
2007-01-25 06:53:58 +01:00
|
|
|
error(not_found) ->
|
2008-10-13 17:36:43 +02:00
|
|
|
{404, [], make_xhtml([?XC('h1', "404 Not Found")])};
|
2007-06-27 13:05:14 +02:00
|
|
|
error(not_allowed) ->
|
2008-10-13 17:36:43 +02:00
|
|
|
{401, [], make_xhtml([?XC('h1', "401 Unauthorized")])}.
|