X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fadmin%2Fcreate_host.ml;h=5ba2ea0e28e108f027644a1aec66929d364b73c3;hb=295f2cde3f43ccf7f775d39b95925e10aa4c37cb;hp=a2e9ccda83b16c38e829ce56a7b4f76cb7c5f7e0;hpb=afe5e5f759988c04d9b3bcee7cf75e2c15e1d1d5;p=cocanwiki.git diff --git a/scripts/admin/create_host.ml b/scripts/admin/create_host.ml index a2e9ccd..5ba2ea0 100644 --- a/scripts/admin/create_host.ml +++ b/scripts/admin/create_host.ml @@ -1,7 +1,22 @@ -(* COCANWIKI scripts. +(* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: create_host.ml,v 1.2 2004/09/07 14:58:34 rich Exp $ + * $Id: create_host.ml,v 1.9 2005/03/31 14:24:04 rich Exp $ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. * * NB. Because there might not be any hosts existing when this Wiki * is created, this is not a normal Cocanwiki.register_script script. @@ -14,6 +29,7 @@ open Cgi open Printf open Cocanwiki_strings +open Cocanwiki_create_host let split_re = Pcre.regexp "[\\s,;]+" @@ -47,35 +63,22 @@ let run r = let hostnames = List.map check_hostname hostnames in let hostnames = List.filter ((<>) "") hostnames in - (* Update the database. *) - let sth = dbh#prepare_cached - "set constraints \"hosts_hostname_cn\" deferred" in - sth#execute []; - let sth = dbh#prepare_cached "insert into hosts (canonical_hostname) - values (?)" in - sth#execute [`String canonical_hostname]; - - let hostid = sth#serial "hosts_id_seq" in - - let sth = dbh#prepare_cached "insert into hostnames (hostid, name) - values (?, ?)" in - sth#execute [`Int hostid; `String canonical_hostname]; - List.iter (fun name -> - sth#execute [`Int hostid; `String name]) hostnames; + let template = + if q#param_true "template" then int_of_string (q#param "template") + else 0 in - let sth = dbh#prepare_cached "insert into pages (hostid, url, title, - description) values (?, 'index', ?, ?)" in - sth#execute [`Int hostid; `String title; `String title]; + let hostid = create_host dbh canonical_hostname hostnames template title + "Administrator" "123456" true None in (* Commit to the database. *) dbh#commit (); (* Print confirmation page. *) let buttons = [ - { StdPages.label = "OK"; - StdPages.link = "/_bin/admin/host.cmo"; - StdPages.method_ = None; - StdPages.params = [ "hostid", string_of_int hostid ] } + { Template.StdPages.label = "OK"; + Template.StdPages.link = "/_bin/admin/host.cmo"; + Template.StdPages.method_ = None; + Template.StdPages.params = [ "hostid", string_of_int hostid ] } ] in Cocanwiki_ok.ok ~title:"Wiki created" ~buttons