Added styling to some pages which previously were "outside" the site
[cocanwiki.git] / scripts / forgot_password.ml
1 (* COCANWIKI - a wiki written in Objective CAML.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: forgot_password.ml,v 1.11 2006/07/31 09:49:43 rich Exp $
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; see the file COPYING.  If not, write to
18  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *)
21
22 open Apache
23 open Registry
24 open Cgi
25 open Printf
26
27 open Cocanwiki
28 open Cocanwiki_ok
29 open Cocanwiki_strings
30
31 let run r (q : cgi) dbh hostid { hostname = hostname } _ =
32   let name = trim (q#param "name") in
33
34   if name = "" then (
35     error ~back_button:true ~title:"No username or email address"
36       dbh hostid q "You didn't give a username or email address";
37     return ()
38   );
39
40   (* Look it up in the database. *)
41   let rows = PGSQL(dbh)
42     "select email, name, password from users
43       where hostid = $hostid
44         and email is not null
45         and (lower (name) = lower ($name) or lower (email) = lower ($name))" in
46
47   try
48     let email, name, password =
49       match rows with
50       | [ Some email, name, password ] ->
51           email, name, password
52       | _ -> assert false in
53
54     (* Get the IP address of the user, if available. *)
55     let ip =
56       try Connection.remote_ip (Request.connection r) with Not_found -> "" in
57
58     let subject = "Password for " ^ hostname in
59
60     let body =
61       "Someone, possibly you, requested your password for " ^ hostname ^
62       ".\n\n" ^
63       "Username: " ^ name ^ "\n" ^
64       "Password: " ^ password ^ "\n" ^
65       "\n" ^
66       "IP address of request: " ^ ip ^ "\n" in
67
68     let content_type =
69       "text/plain", ["charset", Mimestring.mk_param "UTF-8"] in
70     let to_addrs = [ "", email ] in
71
72     let msg = Netsendmail.compose ~subject ~to_addrs ~content_type body in
73     Netsendmail.sendmail msg;
74
75     let buttons = [ ok_button "/_login" ] in
76     ok ~buttons ~title:"Password sent by email"
77       dbh hostid q
78       ("Your password was sent by email.  If you don't receive the password " ^
79        "within an hour, please notify the site's administrator.")
80   with
81       Not_found ->
82         (* Artificially limit the rate at which people can search the database
83          * for usernames.
84          *)
85         Unix.sleep 10;
86
87         error ~back_button:true ~title:"Nothing known"
88           dbh hostid q
89           "Sorry, don't know anyone with that name or email address."
90
91 let () =
92   register_script run