Serial columns now 64 bits.
[cocanwiki.git] / scripts / rebuild_links.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: rebuild_links.ml,v 1.3 2004/10/23 12:00:24 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 open Cocanwiki_links
30
31 let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ =
32   let template_start = _get_template "rebuild_links_start.html" in
33   let template = _get_template "rebuild_links.html" in
34   let template_done = _get_template "rebuild_links_done.html" in
35
36   (* Delete entries in the old links table. *)
37   let sth = dbh#prepare_cached "delete from links where hostid = ?" in
38   sth#execute [`Int hostid];
39
40   (* Estimate how many sections we will have to process. *)
41   let sth =
42     dbh#prepare_cached
43       "select count(c.id) from contents c, pages p
44         where c.pageid = p.id
45           and p.hostid = ?
46           and p.url is not null
47           and p.redirect is null" in
48   sth#execute [`Int hostid];
49
50   let total_sections = sth#fetch1int () in
51
52   (* Pull out the list of sections to process. *)
53   let sth =
54     dbh#prepare_cached
55       "select c.content, c.ordering, p.url from contents c, pages p
56         where c.pageid = p.id
57           and p.hostid = ?
58           and p.url is not null
59           and p.redirect is null
60         order by p.url, c.ordering" in
61   sth#execute [`Int hostid];
62
63   q#header ();
64   print_string r template_start#to_string;
65
66   (* Process each section ... *)
67   let i = ref 0 in
68
69   sth#iter
70     (function [`String content; `Int ordering; `String url] ->
71        let pc = 100 * !i / total_sections in incr i;
72        template#set "ordering" (string_of_int ordering);
73        template#set "url" url;
74        template#set "pc" (string_of_int pc);
75        print_string r template#to_string;
76
77        let links = get_links_from_section dbh hostid content in
78        List.iter (insert_link dbh hostid url) links
79
80        | _ -> assert false);
81
82   (* Finish off. *)
83   dbh#commit ();
84
85   ignore (print_string r template_done#to_string)
86
87 let () =
88   register_script ~restrict:[CanManageSite] run