Fixed some problems found in testing. Now appears to be working fully.
[cocanwiki.git] / scripts / delete_user.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: delete_user.ml,v 1.6 2006/03/27 18:09:46 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
30 let run r (q : cgi) dbh hostid {hostname = hostname} self =
31   if q#param_true "cancel" then (
32     (* Request cancelled. *)
33     q#redirect ("http://" ^ hostname ^ "/_users");
34     return ()
35   );
36
37   let userid = Int32.of_string (q#param "userid") in
38
39   (* Check userid belongs to host.  The statements below wouldn't
40    * enforce this correctly ...
41    *)
42   let rows =
43     PGSQL(dbh) "select 1 from users where id = $userid and hostid = $hostid" in
44   assert (rows = [Some 1l]);
45
46   (* Can't delete self! *)
47   let () =
48     match self with
49       | User (id, _, _, _) when id = userid ->
50           error ~back_button:true ~title:"Delete own account"
51             dbh hostid q "You cannot delete your own user account.";
52           return ()
53       | _ -> () in
54
55   (* Delete the user. *)
56   PGSQL(dbh) "delete from recently_visited
57                where userid = $userid and hostid = $hostid";
58
59   PGSQL(dbh) "delete from pending_email_changes where userid = $userid";
60   PGSQL(dbh) "delete from usercookies where userid = $userid";
61   PGSQL(dbh) "update pages set logged_user = null
62                where logged_user = $userid and hostid = $hostid";
63   PGSQL(dbh) "delete from users where id = $userid and hostid = $hostid";
64
65   PGOCaml.commit dbh;
66
67   ok ~title:"Account deleted" ~buttons:[ok_button "/_users"]
68     dbh hostid q "That user account was deleted."
69
70 let () =
71   register_script ~restrict:[CanManageUsers] run