All new templates. Site menu displays basically everywhere.
[cocanwiki.git] / scripts / restore.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: restore.ml,v 1.6 2004/09/09 09:35:33 rich Exp $
5  *)
6
7 open Apache
8 open Registry
9 open Cgi
10 open Printf
11
12 open Cocanwiki
13 open Cocanwiki_ok
14 open Cocanwiki_diff
15 open Cocanwiki_emailnotify
16
17 let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ =
18   let version = int_of_string (q#param "version") in
19   let page = q#param "page" in
20
21   if q#param_true "yes" then (
22     (* Get the IP address of the user, if available. *)
23     let logged_ip =
24       try `String (Connection.remote_ip (Request.connection r))
25       with Not_found -> `Null in
26
27     (* Copy the old version of the page to be live. *)
28     let sth = dbh#prepare_cached "select title, description, creation_date,
29                                          redirect, css
30                                     from pages
31                                    where hostid = ?
32                                      and url_deleted = ? and id = ?" in
33     sth#execute [`Int hostid; `String page; `Int version];
34
35     let title, description, creation_date, redirect, css =
36       match sth#fetch1 () with
37           [ title; description; creation_date; redirect; css ] ->
38             title, description, creation_date, redirect, css
39         | _ -> assert false in
40
41     let sth =
42       dbh#prepare_cached
43         "set constraints pages_redirect_cn, sitemenu_url_cn deferred" in
44     sth#execute [];
45
46     let sth = dbh#prepare_cached "update pages set url_deleted = url,
47                                                    url = null
48                                    where hostid = ? and url = ?" in
49     sth#execute [`Int hostid; `String page];
50
51     let sth = dbh#prepare_cached "insert into pages (hostid, url, title,
52                                      description, creation_date, logged_ip,
53                                      redirect, css)
54                                   values (?, ?, ?, ?, ?, ?, ?, ?)" in
55     sth#execute [`Int hostid; `String page; title; description;
56                  creation_date; logged_ip; redirect; css ];
57
58     let pageid = sth#serial "pages_id_seq" in
59
60     let sth = dbh#prepare_cached "insert into contents (pageid, ordering,
61                                          sectionname, content, divname)
62                                   select ? as pageid, ordering, sectionname,
63                                               content, divname
64                                     from contents
65                                    where pageid = ?" in
66     sth#execute [`Int pageid; `Int version];
67
68     dbh#commit ();
69
70     (* Email notify. *)
71     let subject = "Page " ^ page ^ " has been restored." in
72     let body = fun () ->
73       (* Prepare the diff between this version and the previous version. *)
74       let diff, _ = get_diff dbh hostid page ~version:pageid () in
75       "Page: http://" ^ hostname ^ "/" ^ page ^ "\n\n" ^
76       diff in
77
78     email_notify ~body ~subject dbh hostid;
79
80     (* Done. *)
81     let buttons = [ ok_button ("/" ^ page) ] in
82     ok ~title:"Restored" ~buttons
83       q "The old page was restored successfully."
84   ) else
85     q#redirect ("http://" ^ hostname ^ "/" ^ page)
86
87 let () =
88   register_script ~restrict:[CanEdit] run