Rather more work than can be completed in one evening -- needs a
[cocanwiki.git] / scripts / images.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: images.ml,v 1.8 2006/03/27 18:09:46 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
30 let run r (q : cgi) dbh hostid _ _ =
31   let template = get_template dbh hostid "images.html" in
32
33   let deleted = q#param_true "deleted" in
34   template#conditional "deleted" deleted;
35
36   let sql =
37     "select id, name, name_deleted, width, height, alt, octet_length (image),
38             tn_width, tn_height
39        from images
40       where hostid = ? and " ^
41     (if not deleted then "name is not null"
42      else "name_deleted is not null") ^
43     " order by 2, 3" in
44   let sth = dbh#prepare_cached sql in
45   sth#execute [Some hostid];
46
47   let table =
48     sth#map
49       (fun row ->
50          let id, name, width, height, alt, size, tn_width, tn_height,
51            is_deleted, has_thumbnail =
52            match row with
53              | [Some id; Some name; None; Some width; Some height;
54                 Some alt; Some size; Some tn_width; Some tn_height] ->
55                  id, name, width, height, alt, size, tn_width, tn_height,
56                  false, true
57              | [Some id; None; Some name; Some width; Some height;
58                 Some alt; Some size; Some tn_width; Some tn_height] ->
59                  id, name, width, height, alt, size, tn_width, tn_height,
60                  true, true
61              | [Some id; Some name; None; Some width; Some height;
62                 Some alt; Some size; None; None] ->
63                  id, name, width, height, alt, size, 0, 0,
64                  false, false
65              | [Some id; None; Some name; Some width; Some height;
66                 Some alt; Some size; None; None] ->
67                  id, name, width, height, alt, size, 0, 0,
68                  true, false
69              | _ -> assert false in
70          [ "id", Template.VarString (Int32.to_string id);
71            "name", Template.VarString name;
72            "width", Template.VarString (Int32.to_string width);
73            "height", Template.VarString (Int32.to_string height);
74            "alt", Template.VarString alt;
75            "ksize", Template.VarString (Int32.to_string (size / 1024));
76            "tn_width", Template.VarString (Int32.to_string tn_width);
77            "tn_height", Template.VarString (Int32.to_string tn_height);
78            "is_deleted", Template.VarConditional is_deleted;
79            "has_thumbnail", Template.VarConditional has_thumbnail ]) in
80
81   template#table "images" table;
82
83   q#template template
84
85 let () =
86   register_script ~restrict:[CanEdit] run