Create new site by copying from an existing template site.
[cocanwiki.git] / scripts / admin / create_host.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: create_host.ml,v 1.4 2004/09/25 11:45:59 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  * NB. Because there might not be any hosts existing when this Wiki
22  * is created, this is not a normal Cocanwiki.register_script script.
23  * Instead, we're using the standard mod_caml Registry.
24  *)
25
26 open Apache
27 open Registry
28 open Cgi
29 open Printf
30
31 open Cocanwiki_strings
32
33 let split_re = Pcre.regexp "[\\s,;]+"
34
35 let run r =
36   let q = new cgi r in
37   let dbh = Cocanwiki._get_dbh r in
38
39   let canonical_hostname = q#param "canonical_hostname" in
40   let hostnames = try q#param "hostnames" with Not_found -> "" in
41   let title = q#param "title" in
42
43   (* Check the title is reasonable. *)
44   let title = trim title in
45   if title = "" then (
46     Cocanwiki_ok.error ~back_button:true ~title:"Bad title"
47       q "You must give a title for this Wiki.";
48   ) else (
49     (* In theory we could verify characters in hostnames.  However
50      * it's probably best to assume the sysadmin knows what they're up to
51      * here.  If this script is allowed to be accessed by untrusted
52      * users, then this has security implications.
53      *)
54     let check_hostname h =
55       let h = trim h in                 (* Trim whitespace. *)
56       let h = String.lowercase h in     (* Lowercase. *)
57       h
58     in
59
60     let canonical_hostname = check_hostname canonical_hostname in
61     let hostnames = Pcre.split ~rex:split_re hostnames in
62     let hostnames = List.map check_hostname hostnames in
63     let hostnames = List.filter ((<>) "") hostnames in
64
65     let sth =
66       dbh#prepare_cached "set constraints hosts_hostname_cn deferred" in
67     sth#execute [];
68     let sth = dbh#prepare_cached "insert into hosts (canonical_hostname)
69                                     values (?)" in
70     sth#execute [`String canonical_hostname];
71
72     let hostid = sth#serial "hosts_id_seq" in
73
74     let sth = dbh#prepare_cached "insert into hostnames (hostid, name)
75                                     values (?, ?)" in
76     sth#execute [`Int hostid; `String canonical_hostname];
77     List.iter (fun name ->
78                  sth#execute [`Int hostid; `String name]) hostnames;
79
80     (* Are we creating a blank site or copying a template? *)
81     if not (q#param_true "template") then (
82       (* Blank site. *)
83
84       let sth = dbh#prepare_cached "insert into pages (hostid, url, title,
85                                     description) values (?, 'index', ?, ?)" in
86       sth#execute [`Int hostid; `String title; `String title];
87
88     ) else (
89       (* Copy from template. *)
90       let template = int_of_string (q#param "template") in
91
92       (*dbh#set_debug true;*)
93
94       let sth = dbh#prepare_cached "select * from hosts where id = ?" in
95       sth#execute [`Int template];
96
97       let names = sth#names in
98       let row = sth#fetch1 () in
99       sth#finish ();
100
101       List.iter
102         (fun (name, field) ->
103            if name <> "id" && name <> "canonical_hostname" then (
104              let sql = "update hosts set " ^ name ^ " = ? where id = ?" in
105              let sth = dbh#prepare_cached sql in
106              sth#execute [field; `Int hostid]
107            )
108         ) (List.combine names row);
109
110       (* Copy pages. *)
111       let sth =
112         dbh#prepare_cached
113           "insert into pages (hostid, url, title, description, redirect, css)
114            select ?, url, title, description, redirect, css
115              from pages
116             where hostid = ? and url is not null" in
117       sth#execute [`Int hostid; `Int template];
118
119       (* Copy page contents. *)
120       let sth =
121         dbh#prepare_cached
122           "insert into contents (pageid, ordering, sectionname, content,
123                                  divname)
124            select (select id from pages where hostid = ? and url = p.url),
125                   c.ordering, c.sectionname, c.content, c.divname
126              from contents c, pages p
127             where c.pageid = p.id and p.hostid = ? and p.url is not null" in
128       sth#execute [`Int hostid; `Int template];
129
130       (* Copy files and images. *)
131       let sth =
132         dbh#prepare_cached
133           "insert into files (hostid, name, content, title, mime_type)
134            select ?, name, content, title, mime_type
135              from files
136             where hostid = ? and name is not null" in
137       sth#execute [`Int hostid; `Int template];
138
139       let sth =
140         dbh#prepare_cached
141           "insert into images (hostid, name, image, width, height, alt, title,
142                                longdesc, class, mime_type, thumbnail,
143                                tn_width, tn_height, tn_mime_type)
144            select ?, name, image, width, height, alt, title, longdesc, class,
145                   mime_type, thumbnail, tn_width, tn_height, tn_mime_type
146              from images
147             where hostid = ? and name is not null" in
148       sth#execute [`Int hostid; `Int template];
149
150       (* Copy sitemenu. *)
151       let sth =
152         dbh#prepare_cached
153           "insert into sitemenu (hostid, url, label, ordering)
154            select ?, url, label, ordering from sitemenu where hostid = ?" in
155       sth#execute [`Int hostid; `Int template];
156
157       (* Copy contacts. *)
158       let sth =
159         dbh#prepare_cached
160           "insert into contacts (hostid, name, subject)
161            select ?, name, subject from contacts where hostid = ?" in
162       sth#execute [`Int hostid; `Int template];
163
164       let sth =
165         dbh#prepare_cached
166           "insert into contact_emails (contactid, email)
167            select (select contactid from contacts
168                     where hostid = ? and name = c.name), ce.email
169              from contact_emails ce, contacts c
170             where ce.contactid = c.id and c.hostid = ?" in
171       sth#execute [`Int hostid; `Int template];
172
173       (* Set the title of the index page. *)
174       let sth = dbh#prepare_cached "update pages set title = ?
175                                      where hostid = ? and url = 'index'" in
176       sth#execute [`String title; `Int hostid]
177     );
178
179     (* Create the administrator user. *)
180     let sth = dbh#prepare_cached "insert into users (hostid, name, password,
181                                   force_password_change, can_manage_users)
182                                   values (?, 'Administrator', '123456', true,
183                                   true)" in
184     sth#execute [`Int hostid];
185
186     (* Commit to the database. *)
187     dbh#commit ();
188
189     (* Print confirmation page. *)
190     let buttons = [
191       { StdPages.label = "OK";
192         StdPages.link = "/_bin/admin/host.cmo";
193         StdPages.method_ = None;
194         StdPages.params = [ "hostid", string_of_int hostid ] }
195     ] in
196
197     Cocanwiki_ok.ok ~title:"Wiki created" ~buttons
198       q "A new Wiki was created."
199   )
200
201 let () =
202   register_script run