Fixed some bitrot and some unused variables.
[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.7 2006/07/26 13:12:10 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
35   let userid = Int32.of_string (q#param "userid") in
36
37   (* Check userid belongs to host.  The statements below wouldn't
38    * enforce this correctly ...
39    *)
40   let rows =
41     PGSQL(dbh) "select 1 from users where id = $userid and hostid = $hostid" in
42   assert (rows = [Some 1l]);
43
44   (* Can't delete self! *)
45   let () =
46     match self with
47       | User (id, _, _, _) when id = userid ->
48           error ~back_button:true ~title:"Delete own account"
49             dbh hostid q "You cannot delete your own user account.";
50           return ()
51       | _ -> () in
52
53   (* Delete the user. *)
54   PGSQL(dbh) "delete from recently_visited
55                where userid = $userid and hostid = $hostid";
56
57   PGSQL(dbh) "delete from pending_email_changes where userid = $userid";
58   PGSQL(dbh) "delete from usercookies where userid = $userid";
59   PGSQL(dbh) "update pages set logged_user = null
60                where logged_user = $userid and hostid = $hostid";
61   PGSQL(dbh) "delete from users where id = $userid and hostid = $hostid";
62
63   PGOCaml.commit dbh;
64
65   ok ~title:"Account deleted" ~buttons:[ok_button "/_users"]
66     dbh hostid q "That user account was deleted."
67
68 let () =
69   register_script ~restrict:[CanManageUsers] run