Allow pages to be renamed fully. If the different title would cause
[cocanwiki.git] / scripts / rename_page.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: rename_page.ml,v 1.1 2004/11/22 11:07:32 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_pages
30 open Cocanwiki_strings
31
32 let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user =
33   let page = q#param "page" in
34
35   (* Cancelled? *)
36   if q#param_true "cancel" then (
37     q#redirect ("http://" ^ hostname ^ "/" ^ page);
38     return ()
39   );
40
41   let new_title = trim (q#param "new_title") in
42
43   (* New title mustn't be empty string. *)
44   if new_title = "" then (
45     error ~back_button:true ~title:"Empty title not allowed"
46       q "The new title cannot be empty.";
47     return ()
48   );
49
50   (* Get the old title. *)
51   let sth = dbh#prepare_cached "select title from pages
52                                  where hostid = ? and url = ?" in
53   sth#execute [`Int hostid; `String page];
54
55   let old_title = sth#fetch1string () in
56
57   (* Generate URL for the new title. *)
58   let new_page =
59     if page = "index" then page
60     else
61       match Wikilib.generate_url_of_title dbh hostid new_title with
62         | Wikilib.GenURL_OK url | Wikilib.GenURL_Duplicate url -> url
63         | Wikilib.GenURL_TooShort | Wikilib.GenURL_BadURL ->
64             error ~title:"Bad title" ~back_button:true
65               q ("The new title for the page isn't valid.  " ^
66                  "It may be too short or it may not contain " ^
67                  "enough alphabet letters.");
68             return () in
69
70   if page = new_page then (
71     (* If it's the same as the old URL, then this is a simple title change. *)
72     let model = load_page dbh hostid ~url:page () in
73     let model = { model with pt = Title new_title } in
74     let url, _ = save_page dbh hostid ~user ~r model in
75     assert (url = new_page)
76   ) else (
77     (* Not the same as the old URL, so set the old page to a redirect and
78      * create a new page.
79      *)
80     let old_model = load_page dbh hostid ~url:page () in
81     let new_model = new_page_with_title new_title in
82     let new_model = { new_model with description = old_model.description;
83                         contents = old_model.contents } in
84     let old_model = { old_model with redirect = new_page } in
85     save_page dbh hostid ~user ~r old_model;
86
87     try
88       ignore (save_page dbh hostid ~user ~r new_model)
89     with
90         SaveURLError ->
91           error ~title:"Page exists"
92             q ("Another page with the same title exists.  " ^
93                "If you tried to rename a page, then rename it back to the " ^
94                "original title, then you may see this error.  This is a bug " ^
95                "which you should raise with the site administrator.");
96           return ()
97   );
98
99   (* Finish off XXX *)
100   dbh#commit ();
101
102   let buttons = [ ok_button ("/" ^ new_page) ] in
103   ok ~title:"Page renamed" ~buttons
104     q "That page was renamed."
105
106 let () =
107   register_script ~restrict:[CanEdit] run