Fixed some problems found in testing. Now appears to be working fully.
[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.6 2006/03/28 16:24:08 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 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   PGSQL(dbh) "delete from links where hostid = $hostid";
38
39   (* Pull out the list of sections to process. *)
40   let sections =
41     PGSQL(dbh)
42       "select c.content, c.ordering, p.url from contents c, pages p
43         where c.pageid = p.id
44           and p.hostid = $hostid
45           and p.url is not null
46           and p.redirect is null
47         order by p.url, c.ordering" in
48
49   let total_sections = List.length sections in
50
51   q#header ();
52   ignore (print_string r template_start#to_string);
53
54   (* Process each section ... *)
55   let i = ref 0 in
56
57   List.iter (
58     fun (content, ordering, url) ->
59       let url = Option.get url in
60       let pc = 100 * !i / total_sections in incr i;
61       template#set "ordering" (Int32.to_string ordering);
62       template#set "url" url;
63       template#set "pc" (string_of_int pc);
64       ignore (print_string r template#to_string);
65
66       let links = get_links_from_section dbh hostid content in
67       List.iter (insert_link dbh hostid url) links
68   ) sections;
69
70   (* Finish off. *)
71   PGOCaml.commit dbh;
72
73   ignore (print_string r template_done#to_string)
74
75 let () =
76   register_script ~restrict:[CanManageSite] run