User management started.
[cocanwiki.git] / scripts / page.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: page.ml,v 1.6 2004/09/08 10:42:20 rich Exp $
5  *)
6
7 open Apache
8 open Registry
9 open Cgi
10 open Printf
11
12 open ExtString
13
14 open Cocanwiki
15 open Cocanwiki_template
16 open Cocanwiki_ok
17 open Cocanwiki_date
18
19 let template_page = get_template "page.html"
20 let template_404  = get_template "page_404.html"
21
22 (* Maximum level of redirection. *)
23 let max_redirect = 4
24
25 type fp_status = FPOK of int * string * string * Dbi.datetime * bool
26                | FPRedirect of string
27                | FPNotFound
28
29 let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, edit_anon) user =
30   let page = q#param "page" in
31   let page = if page = "" then "index" else page in
32
33   (* Host-specific CSS? *)
34   let sth = dbh#prepare_cached "select css is not null from hosts
35                                  where id = ?" in
36   sth#execute [`Int hostid];
37   let has_host_css =
38     match sth#fetch1 () with
39       | [ `Bool has_host_css ] -> has_host_css
40       | _ -> assert false in
41
42   (* Can the user edit?  Manage users? *)
43   let can_edit = can_edit edit_anon user in
44   let can_manage_users = can_manage_users user in
45
46   (* This code generates ordinary pages. *)
47   let make_page title description pageid last_modified_date has_page_css
48       version page page' =
49     let t = template_page in
50     t#set "title" title;
51     t#set "description" description;
52     t#set "pageid" (string_of_int pageid);
53     t#set "last_modified_date" (printable_date last_modified_date);
54     t#set "cocanwiki_package" Cocanwiki_version.package;
55     t#set "cocanwiki_version" Cocanwiki_version.version;
56
57     if page <> page' then (* redirection *) (
58       t#set "page" page';
59       t#set "original_page" page; (* XXX title - get it from database *)
60       t#conditional "redirected" true
61     ) else (
62       t#set "page" page;
63       t#conditional "redirected" false
64     );
65
66     t#conditional "has_host_css" has_host_css;
67     t#conditional "has_page_css" has_page_css;
68
69     t#conditional "can_edit" can_edit;
70     t#conditional "can_manage_users" can_manage_users;
71
72     (* Pull out the sections in this page. *)
73     let sth = dbh#prepare_cached
74                 "select ordering, sectionname, content, divname
75                    from contents
76                   where pageid = ?
77                   order by ordering" in
78     sth#execute [`Int pageid];
79
80     let sections =
81       sth#map
82         (function [`Int ordering; `String sectionname; `String content;
83                    (`Null | `String _) as divname] ->
84            let divname, has_divname =
85              match divname with
86                  `Null -> "", false
87                | `String divname -> divname, true in
88            [ "ordering", Template.VarString (string_of_int ordering);
89              "sectionname", Template.VarString sectionname;
90              "content",
91                Template.VarString
92                  (Wikilib.xhtml_of_content dbh hostid content);
93              "has_divname", Template.VarConditional has_divname;
94              "divname", Template.VarString divname ]
95            | _ -> assert false) in
96
97     t#table "sections" sections;
98
99     (* Are we showing an old version of the page?  If so, warn. *)
100     (match version with
101          None ->
102            t#conditional "is_old_version" false
103        | Some pageid ->
104            t#conditional "is_old_version" true;
105            t#set "old_version" (string_of_int pageid));
106
107     (* Login status. *)
108     (match user with
109          Anonymous ->
110            t#conditional "user_logged_in" false
111        | User (_, username, _) ->
112            t#conditional "user_logged_in" true;
113            t#set "username" username);
114
115     q#template t
116   in
117
118   (* This code generates 404 pages. *)
119   let make_404 () =
120     Request.set_status r 404;           (* Return a 404 error code. *)
121
122     let t = template_404 in
123     t#set "page" page;
124
125     let search_terms =
126       String.map
127         (function
128              ('a'..'z' | 'A'..'Z' | '0'..'9') as c -> c
129            | _ -> ' ') page in
130
131     template_404#set "search_terms" search_terms;
132
133     q#template t
134   in
135
136   (* Fetch a page by name.  This function can give three answers:
137    * (1) Page fetched OK (fetches some details of the page).
138    * (2) Page is a redirect (fetches the name of the redirect page).
139    * (3) Page not found in database, ie. 404 error.
140    *)
141   (* XXX Should do a case-insensitive matching of URLs, and if the URL differs
142    * in case only should redirect to the lowercase version.
143    *)
144   let fetch_page page version allow_redirect =
145     match version with
146       | None ->
147           if allow_redirect then (
148             let sth =
149               dbh#prepare_cached
150                 "select redirect, id, title, description, last_modified_date,
151                         css is not null
152                    from pages where hostid = ? and url = ?" in
153             sth#execute [`Int hostid; `String page];
154             (try
155                (match sth#fetch1 () with
156                   | [ `Null; `Int id; `String title; `String description;
157                       `Timestamp last_modified_date; `Bool has_page_css ] ->
158                       FPOK (id, title, description, last_modified_date,
159                             has_page_css)
160                   | `String redirect :: _ ->
161                       FPRedirect redirect
162                   | _ -> assert false)
163              with
164                  Not_found -> FPNotFound)
165           ) else (* redirects not allowed ... *) (
166             let sth =
167               dbh#prepare_cached
168                 "select id, title, description, last_modified_date,
169                         css is not null
170                    from pages where hostid = ? and url = ?" in
171             sth#execute [`Int hostid; `String page];
172             (try
173                (match sth#fetch1 () with
174                   | [ `Int id; `String title; `String description;
175                       `Timestamp last_modified_date; `Bool has_page_css ] ->
176                       FPOK (id, title, description, last_modified_date,
177                             has_page_css)
178                   | _ -> assert false)
179              with
180                  Not_found -> FPNotFound)
181           )
182       | Some version ->
183             let sth =
184               dbh#prepare_cached
185                 "select id, title, description, last_modified_date,
186                         css is not null
187                    from pages
188                   where hostid = ? and id = ? and
189                         (url = ? or url_deleted = ?)" in
190             sth#execute [`Int hostid; `Int version;
191                          `String page; `String page];
192             (try
193                (match sth#fetch1 () with
194                   | [ `Int id; `String title; `String description;
195                       `Timestamp last_modified_date; `Bool has_page_css ] ->
196                       FPOK (id, title, description, last_modified_date,
197                             has_page_css)
198                   | _ -> assert false)
199              with
200                  Not_found -> FPNotFound)
201   in
202
203   (* Here we deal with the complex business of redirects and versions. *)
204   (* Only allow the no_redirect and version syntax for editors. *)
205   let allow_redirect, version =
206     if can_edit then (
207       not (q#param_true "no_redirect"),
208       try Some (int_of_string (q#param "version")) with Not_found -> None
209     ) else
210       (true, None) in
211
212   let rec loop page' i =
213     if i > max_redirect then (
214       error ~title:"Too many redirections" ~back_button:true
215         q ("Too many redirects between pages.  This may happen because " ^
216            "of a cycle of redirections.");
217       raise CgiExit
218     ) else
219       match fetch_page page' version allow_redirect with
220         | FPOK (pageid, title, description, last_modified_date, has_page_css)->
221             make_page title description pageid last_modified_date has_page_css
222               version page page'
223         | FPRedirect page' ->
224             loop page' (i+1)
225         | FPNotFound ->
226             make_404 ()
227   in
228   loop page 0
229
230 let () =
231   register_script run