Added the navigation box (see email).
[cocanwiki.git] / scripts / edit_page_css.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: edit_page_css.ml,v 1.12 2004/10/10 16:14: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_diff
30 open Cocanwiki_emailnotify
31 open Cocanwiki_strings
32
33 let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user =
34   let page = q#param "page" in
35   let css = q#param "css" in
36
37   let css = if string_is_whitespace css then `Null else `String css in
38
39   (* Get the IP address of the user, if available. *)
40   let logged_ip =
41     try `String (Connection.remote_ip (Request.connection r))
42     with Not_found -> `Null in
43
44   let logged_user =
45     match user with
46       | User (id, _, _) -> `Int id
47       | _ -> `Null in
48
49   (* Changing the CSS creates a new version of the page.  This enables
50    * us to revert changes to the CSS easily.
51    *)
52   let sth = dbh#prepare_cached "select id, title, description, creation_date,
53                                        redirect
54                                   from pages
55                                  where hostid = ? and url = ?" in
56   sth#execute [`Int hostid; `String page];
57
58   let oldpageid, title, description, creation_date, redirect =
59     match sth#fetch1 () with
60         [ `Int id; title; description; creation_date; redirect ] ->
61           id, title, description, creation_date, redirect
62       | _ -> assert false in
63
64   let sth = dbh#prepare_cached
65               "set constraints pages_redirect_cn, sitemenu_url_cn,
66                    page_emails_url_cn, links_from_cn, recently_visited_url_cn
67                    deferred" in
68   sth#execute [];
69
70   let sth = dbh#prepare_cached "update pages set url_deleted = url,
71                                                  url = null
72                                  where hostid = ? and id = ?" in
73   sth#execute [`Int hostid; `Int oldpageid];
74
75   let sth = dbh#prepare_cached "insert into pages (hostid, url, title,
76                                    description, creation_date, logged_ip,
77                                    logged_user, redirect, css)
78                                 values (?, ?, ?, ?, ?, ?, ?, ?, ?)" in
79   sth#execute [`Int hostid; `String page; title; description;
80                creation_date; logged_ip; logged_user; redirect; css ];
81
82   let pageid = sth#serial "pages_id_seq" in
83
84   let sth = dbh#prepare_cached "insert into contents (pageid, ordering,
85                                        sectionname, content, divname)
86                                 select ? as pageid, ordering, sectionname,
87                                             content, divname
88                                   from contents
89                                  where pageid = ?" in
90   sth#execute [`Int pageid; `Int oldpageid];
91
92   dbh#commit ();
93
94   (* Email notification. *)
95   let subject = "CSS for page " ^ page ^ " has been modified" in
96   let body = fun () ->
97     let diff, _ =
98       get_diff dbh hostid page ~version:pageid ~old_version:oldpageid () in
99     "Page: http://" ^ hostname ^ "/" ^ page ^ "\n\n" ^
100     diff in
101
102   email_notify ~subject ~body dbh hostid;
103
104   let buttons = [ ok_button ("/" ^ page);
105                   { StdPages.label = "Edit stylesheet again";
106                     StdPages.link = "/_bin/edit_page_css_form.cmo";
107                     StdPages.method_ = None;
108                     StdPages.params = [ "page", page ] } ] in
109   ok ~title:"Stylesheet changed" ~buttons
110     q ("The stylesheet was changed successfully.  " ^
111        "Note: You must RELOAD the page to see changes to stylesheets.")
112
113 let () =
114   register_script ~restrict:[CanEdit] run