Split the 'page' template into two halves to enable pipelining. The
[cocanwiki.git] / scripts / upload_image.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: upload_image.ml,v 1.11 2004/11/01 17:05:14 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 ExtString
28
29 open Cocanwiki
30 open Cocanwiki_ok
31 open Cocanwiki_emailnotify
32 open Cocanwiki_images
33 open Cocanwiki_strings
34
35 (* Valid image names. *)
36 let image_ok_re = Pcre.regexp "^[a-z0-9][-._a-z0-9]*\\.(jpg|jpeg|gif|ico|png)$"
37
38 let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } user=
39   let name = q#param "name" in
40   let alt = q#param "alt" in
41   let title = q#param "title" in
42   let longdesc = q#param "longdesc" in
43   let clazz = q#param "class" in
44
45   (* See if there was an upload. *)
46   let image =
47     try
48       let upload = q#upload "file" in
49       upload.upload_value
50     with
51         Not_found ->
52           error ~title:"No image" ~back_button:true
53             q "No image was uploaded.";
54           return () in
55
56   (* Check the name is valid. *)
57   if not (Pcre.pmatch ~rex:image_ok_re name) then (
58     error ~title:"Bad Image Name" ~back_button:true
59       q ("The Image Name must contain only lowercase English letters, " ^
60          "numbers, dots, dashes and underscore.  " ^
61          "It must end with .jpg, .gif or .png " ^
62          "depending on the image format.");
63     return ()
64   );
65
66   (* Check the image is an image, and get the size. *)
67   let mime_type, width, height =
68     try image_identify image
69     with
70         Invalid_argument _ ->
71           error ~title:"Bad image" ~back_button:true
72             q ("Unknown image type.  Is the file you uploaded really an " ^
73                "image?");
74           return () in
75
76   (* Check the image filename extension matches the MIME type. *)
77   let ext_ok =
78     match mime_type with
79         "image/jpeg" ->
80           String.ends_with name ".jpg" ||
81           String.ends_with name ".jpeg"
82       | "image/gif" ->
83           String.ends_with name ".gif"
84       | "image/png" ->
85           String.ends_with name ".png"
86       | _ -> assert false in
87   if not ext_ok then (
88     error ~title:"Bad Image Name" ~back_button:true
89       q ("The Image Name extension has to match the image format.  " ^
90          "For example if the image is in JPEG format, the name must " ^
91          "be 'something.jpg'.  I detected the following image type " ^
92          "in the file you uploaded: " ^ mime_type);
93     return ()
94   );
95
96   (* Check some ALT text was supplied. *)
97   if string_is_whitespace alt then (
98     error ~title:"Missing Alt text" ~back_button:true
99       q ("You must supply Alt text describing the image.  This is required " ^
100          "by accessibility laws and to allow search engines to discover the " ^
101          "content of images.");
102     return ()
103   );
104
105   let title = if string_is_whitespace title then `Null else `String title in
106   let longdesc =
107     if string_is_whitespace longdesc then `Null else `String longdesc in
108   let clazz = if string_is_whitespace clazz then `Null else `String clazz in
109
110   (* Make a thumbnail of this image. *)
111   let thumbnail, tn_mime_type, tn_width, tn_height =
112     image_thumbnail image 120 120 in
113
114   (* Check if something with the same name already exists.  If replace=1
115    * then we can replace it, otherwise we must present an error message.
116    *)
117   let replace = q#param_true "replace" in
118   let sth = dbh#prepare_cached "select 1 from images
119                                  where hostid = ? and name = ?" in
120   sth#execute [`Int hostid; `String name];
121
122   let exists = try sth#fetch1int () = 1 with Not_found -> false in
123
124   if exists then (
125     if not replace then (
126       error ~title:"Image already exists" ~back_button:true
127         q ("An image with the same name already exists.");
128     return ()
129     ) else (
130       let sth = dbh#prepare_cached "update images
131                                        set name_deleted = name, name = null
132                                      where hostid = ? and name = ?" in
133       sth#execute [`Int hostid; `String name];
134     )
135   );
136
137   (* Put the image into the database. *)
138   let sth =
139     dbh#prepare_cached
140       "insert into images (hostid, name, image, width, height, alt,
141                            title, longdesc, class, thumbnail, tn_width,
142                            tn_height, mime_type, tn_mime_type)
143        values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" in
144   sth#execute [`Int hostid; `String name; `Binary image; `Int width;
145                `Int height; `String alt; title; longdesc; clazz;
146                `Binary thumbnail; `Int tn_width; `Int tn_height;
147                `String mime_type; `String tn_mime_type];
148
149   dbh#commit ();
150
151   (* Email notify. *)
152   let subject = "Image " ^ name ^ " has been uploaded." in
153   let body = fun () ->
154     "Page: http://" ^ hostname ^ "/_images" in
155
156   email_notify ~body ~subject ~user dbh hostid;
157
158   let buttons = [ ok_button "/_images" ] in
159   ok ~title:"Image uploaded" ~buttons
160     q "Image was uploaded successfully."
161
162 let () =
163   register_script ~restrict:[CanEdit] run