3da216ebfb7eb1dbb3676ace1e405ba31ea0cf6f
[cocanwiki.git] / scripts / edit_host_settings_form.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_host_settings_form.ml,v 1.4 2004/10/04 15:19:56 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_template
29
30 let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ =
31   let template = get_template dbh hostid "edit_host_settings_form.html" in
32
33   (* List of themes. *)
34   let sth = dbh#prepare_cached "select theme_css, name, description
35                                   from themes order by 2, 1" in
36   sth#execute [];
37
38   let themes =
39     sth#map (function [`String theme_css; `String name; `String description] ->
40                theme_css, (name, description)
41                | _ -> assert false) in
42
43   (* Get lots of host-specific stuff from the database. *)
44   let sth =
45     dbh#prepare_cached
46       "select canonical_hostname, edit_anon, create_account_anon, theme_css,
47               feedback_email, mailing_list, search_box, view_anon
48          from hosts where id = ?" in
49   sth#execute [`Int hostid];
50
51   let canonical_hostname, edit_anon, create_account_anon, theme_css,
52       feedback_email, mailing_list, search_box, view_anon =
53     match sth#fetch1 () with
54         [ `String canonical_hostname;
55           `Bool edit_anon; `Bool create_account_anon;
56           (`String _ | `Null) as theme_css;
57           (`String _ | `Null) as feedback_email;
58           `Bool mailing_list; `Bool search_box; `Bool view_anon ] ->
59           let theme_css =
60             match theme_css with `String s -> s | `Null -> "" in
61           let feedback_email =
62             match feedback_email with `String s -> s | `Null -> "" in
63           canonical_hostname, edit_anon, create_account_anon, theme_css,
64           feedback_email, mailing_list, search_box, view_anon
65       | _ -> assert false in
66
67   template#set "canonical_hostname" canonical_hostname;
68   template#conditional "edit_anon" edit_anon;
69   template#conditional "create_account_anon" create_account_anon;
70   template#set "feedback_email" feedback_email;
71   template#conditional "mailing_list" mailing_list;
72   template#conditional "search_box" search_box;
73   template#conditional "view_anon" view_anon;
74
75   (* Themes table. *)
76   let table =
77     List.map (fun (css, (name, description)) ->
78                 let selected = css = theme_css in
79                 [ "theme_css", Template.VarString css;
80                   "name", Template.VarString name;
81                   "description", Template.VarString description;
82                   "selected", Template.VarConditional selected ]) themes in
83   template#table "themes" table;
84
85   q#template template
86
87 let () =
88   register_script ~restrict:[CanManageSite] run