Global replace 'raise CgiExit' -> 'return ()' to match a future version of mod_caml.
[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.5 2004/09/23 11:56:47 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 : Dbi.connection) 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       q "You didn't give a username or email address";
37     return ()
38   );
39
40   (* Look it up in the database. *)
41   let sth = dbh#prepare_cached "select email, name, password from users
42                                  where hostid = ?
43                                    and (lower (name) = lower (?)
44                                         or lower (email) = lower (?))" in
45   sth#execute [`Int hostid; `String name; `String name];
46
47   try
48     let email, name, password = match sth#fetch1 () with
49         [ `String email; `String name; `String password ] ->
50           email, name, password
51       | _ -> assert false in
52
53     (* Get the IP address of the user, if available. *)
54     let ip =
55       try Connection.remote_ip (Request.connection r) with Not_found -> "" in
56
57     let subject = "Password for " ^ hostname in
58
59     let body =
60       "Someone, possibly you, requested your password for " ^ hostname ^
61       ".\n\n" ^
62       "Username: " ^ name ^ "\n" ^
63       "Password: " ^ password ^ "\n" ^
64       "\n" ^
65       "IP address of request: " ^ ip ^ "\n" in
66
67     Sendmail.send_mail ~subject ~to_addr:[ email ] ~body ();
68
69     let buttons = [ ok_button "/_login" ] in
70     ok ~buttons ~title:"Password sent by email"
71       q
72       ("Your password was sent by email.  If you don't receive the password " ^
73        "within an hour, please notify the site's administrator.")
74   with
75       Not_found ->
76         (* Artificially limit the rate at which people can search the database
77          * for usernames.
78          *)
79         Unix.sleep 10;
80
81         error ~back_button:true ~title:"Nothing known"
82           q "Sorry, don't know anyone with that name or email address."
83
84 let () =
85   register_script run