Recent changes is now page-based, making it work much faster when
[cocanwiki.git] / scripts / recent.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: recent.ml,v 1.9 2004/10/21 18:35:01 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_date
30
31 let default_offset = 0
32 let default_limit = 100
33 let max_limit = 1000
34
35 let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ =
36   let template = get_template dbh hostid "recent.html" in
37
38   (* Count the number of changes. *)
39   let sth = dbh#prepare_cached "select count(*) from pages where hostid = ?" in
40   sth#execute [`Int hostid];
41   let count = sth#fetch1int () in
42
43   (* Get the offset and limit specified, and adjust them so that we will
44    * be displaying some changes.
45    *)
46   let offset =
47     try int_of_string (q#param "offset") with Not_found -> default_offset in
48   let limit =
49     try int_of_string (q#param "limit") with Not_found -> default_limit in
50
51   let limit =
52     if limit < 1 then 1
53     else if limit > max_limit then max_limit
54     else limit in
55   let offset =
56     if offset < 0 then 0
57     else if offset >= count then max 0 (count - limit)
58     else offset in
59
60   template#set "offset" (string_of_int offset);
61   template#set "last" (string_of_int (min (offset + limit) count - 1));
62   template#set "limit" (string_of_int limit);
63   template#set "count" (string_of_int count);
64
65   template#conditional "has_next" (offset + limit < count);
66   template#set "next_offset" (string_of_int (offset + limit));
67   template#conditional "has_prev" (offset > 0);
68   template#set "prev_offset" (string_of_int (max 0 (offset - limit)));
69
70   (* Get the actual changes. *)
71   let sth =
72     dbh#prepare_cached
73       "select p.id, p.url, p.url_deleted, p.title, p.last_modified_date,
74               p.logged_ip, u.name
75          from pages p left outer join users u on p.logged_user = u.id
76         where p.hostid = ?
77         order by p.last_modified_date desc
78         offset ? limit ?" in
79   sth#execute [`Int hostid; `Int offset; `Int limit];
80
81   let table =
82     sth#map
83       (function
84          | [`Int version; `String url; _; `String title;
85             `Timestamp last_modified_date; logged_ip; logged_user] ->
86              let date = printable_date_time last_modified_date in
87              let has_logged_ip, logged_ip =
88                match logged_ip with
89                    `Null -> false, ""
90                  | `String ip -> true, ip
91                  | _ -> assert false in
92              let has_logged_user, logged_user =
93                match logged_user with
94                    `Null -> false, ""
95                  | `String name -> true, name
96                  | _ -> assert false in
97              [ "version", Template.VarString (string_of_int version);
98                "url", Template.VarString url;
99                "title", Template.VarString title;
100                "last_modified_date", Template.VarString date;
101                "has_logged_ip", Template.VarConditional has_logged_ip;
102                "logged_ip", Template.VarString logged_ip;
103                "has_logged_user", Template.VarConditional has_logged_user;
104                "logged_user", Template.VarString logged_user;
105                "is_live", Template.VarConditional true ]
106          | [`Int version; `Null; `String url; `String title;
107             `Timestamp last_modified_date; logged_ip; logged_user] ->
108              let date = printable_date_time last_modified_date in
109              let has_logged_ip, logged_ip =
110                match logged_ip with
111                    `Null -> false, ""
112                  | `String ip -> true, ip
113                  | _ -> assert false in
114              let has_logged_user, logged_user =
115                match logged_user with
116                    `Null -> false, ""
117                  | `String name -> true, name
118                  | _ -> assert false in
119              [ "version", Template.VarString (string_of_int version);
120                "url", Template.VarString url;
121                "title", Template.VarString title;
122                "last_modified_date", Template.VarString date;
123                "has_logged_ip", Template.VarConditional has_logged_ip;
124                "logged_ip", Template.VarString logged_ip;
125                "has_logged_user", Template.VarConditional has_logged_user;
126                "logged_user", Template.VarString logged_user;
127                "is_live", Template.VarConditional false ]
128          | _ -> assert false) in
129
130   template#table "recent_changes" table;
131
132   q#template template
133
134 let () =
135   register_script ~restrict:[CanEdit] run