/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@cs.vu.nl
WWW: http://www.swi-prolog.org
Copyright (C): 2013, VU University Amsterdam
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 library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
As a special exception, if you link this library with other files,
compiled with a Free Software compiler, to produce an executable, this
library does not by itself cause the resulting executable to be covered
by the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
:- module(register, []).
:- use_module(library(http/html_write)).
:- use_module(library(http/http_dispatch)).
:- use_module(library(http/http_parameters)).
:- use_module(openid).
:- use_module(library(smtp)).
:- http_handler(root(register), register, []).
:- http_handler(root(submit_registration), submit_registration, []).
register(Request) :-
http_parameters(Request,
[ for(Kind, [ oneof([wiki,news]),
default(wiki)
])
]),
site_user(Request, User),
reg_title(Kind, Title),
reply_html_page(
user(form(register(User, Kind))),
title(Title),
\reg_body(User, Kind)).
reg_title(wiki, 'Register to edit SWI-Prolog wiki pages').
reg_title(news, 'Register to manage news postings').
reg_body(User, Kind) -->
reg_explain(Kind),
form(User, Kind).
reg_explain(wiki) -->
html({|html||
This form allows you to request permission to edit
the SWI-Prolog wiki pages. That is, the pages that have
an Edit this page in the WIKI menu.
Registration form
|}).
reg_explain(news) -->
html({|html||
This form allows you to request permission to post
news articles using the menu COMMUNITY/News
Registration form
|}).
form(UUID, Kind) -->
{ http_location_by_id(submit_registration, Action),
PlaceHolder = 'Please tell us your plans, so that we can \c
tell you are a genuine human Prolog user',
site_user_property(UUID, name(Name), 'anonymous'),
site_user_property(UUID, email(Email), 'unknown')
},
html(form(action(Action),
[ input([type(hidden), name(kind), value(Kind)]),
table([ tr([ th([align(right)], 'Name'),
td(input([name(name),
placeholder(
'Name associated to commits'),
disabled(disabled),
value(Name)
]))
]),
tr([ th([align(right)], 'Email'),
td(input([name(email),
placeholder(
'Displayed with GIT commit'),
disabled(disabled),
value(Email)
]))
]),
tr([ th([align(right), valign(top)], 'Comments:'),
td([ class(wiki_text), colspan(2) ],
textarea([ cols(50),rows(10),name(comment),
placeholder(PlaceHolder)
],
''))
]),
tr([ td([ colspan(2), align(right) ],
input([ type(submit),
value('Sent request')
]))
])
])
])).
%% submit_registration(+Request) is det.
%
% Sent E-mail to submit a registration
submit_registration(Request) :-
site_user(Request, UUID),
http_parameters(Request,
[ comment(Comment, [optional(true)]),
kind(Kind, [])
]),
mail(UUID, Kind, Comment),
reply_html_page(
user(mailed(admin, permission(Kind))),
title('Mail sent'),
[ p([ 'A mail has been sent to the site adminstrator. ',
'You will be informed when the account has been ',
'created.'
])
]).
mail(UUID, Kind, Comment) :-
smtp_send_mail('jan@swi-prolog.org',
message(UUID, Kind, Comment),
[ subject('SWI-Prolog permission request'),
from('jan@swi-prolog.org')
]).
message(UUID, Kind, Comment, Out) :-
site_user_property(UUID, name(Name), 'anonymous'),
site_user_property(UUID, email(EMail), 'unknown'),
format(Out, 'New site permission request\n\n', []),
format(Out, '\t Kind: ~w~n', [Kind]),
format(Out, '\t UUID: ~w~n', [UUID]),
format(Out, '\t Name: ~w~n', [Name]),
format(Out, '\tE-Mail: ~w~n', [EMail]),
format(Out, '~n~w~n', [Comment]).
site_user_property(UUID, P, Default) :-
( site_user_property(UUID, P)
-> true
; arg(1, P, Default)
).
:- multifile
plweb:page_title//1.
plweb:page_title(user(form(register(_User, Kind)))) -->
{ reg_title(Kind, Title) },
html(Title).
plweb:page_title(user(mailed(To, permission(_Kind)))) -->
html('Mail sent to ~w'-[To]).