X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fupload_image.ml;h=170c400b4f090bdbb18bb19ceb05db8de30b075b;hb=5292c2362fb54524b8ec7877ee15c79596429491;hp=c6d11e2a8abfd02cbae29c997d8543b558b4ee63;hpb=6b0b6830a2e784eee99dcd1b1a3cb8b44e27c765;p=cocanwiki.git diff --git a/scripts/upload_image.ml b/scripts/upload_image.ml index c6d11e2..170c400 100644 --- a/scripts/upload_image.ml +++ b/scripts/upload_image.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: upload_image.ml,v 1.7 2004/09/23 11:56:47 rich Exp $ + * $Id: upload_image.ml,v 1.10 2004/11/01 16:24:50 rich Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,9 +35,9 @@ let is_ws_re = Pcre.regexp "^\\s*$" let is_whitespace str = Pcre.pmatch ~rex:is_ws_re str (* Valid image names. *) -let image_ok_re = Pcre.regexp "^[a-z0-9][_a-z0-9]*\\.(jpg|jpeg|gif|ico|png)$" +let image_ok_re = Pcre.regexp "^[a-z0-9][-._a-z0-9]*\\.(jpg|jpeg|gif|ico|png)$" -let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = +let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } user= let name = q#param "name" in let alt = q#param "alt" in let title = q#param "title" in @@ -47,7 +47,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = (* See if there was an upload. *) let image = try - let upload = q#upload "image" in + let upload = q#upload "file" in upload.upload_value with Not_found -> @@ -59,7 +59,8 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = if not (Pcre.pmatch ~rex:image_ok_re name) then ( error ~title:"Bad Image Name" ~back_button:true q ("The Image Name must contain only lowercase English letters, " ^ - "numbers and underscore. It must end with .jpg, .gif or .png " ^ + "numbers, dots, dashes and underscore. " ^ + "It must end with .jpg, .gif or .png " ^ "depending on the image format."); return () ); @@ -111,6 +112,29 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = let thumbnail, tn_mime_type, tn_width, tn_height = image_thumbnail image 120 120 in + (* Check if something with the same name already exists. If replace=1 + * then we can replace it, otherwise we must present an error message. + *) + let replace = q#param_true "replace" in + let sth = dbh#prepare_cached "select 1 from images + where hostid = ? and name = ?" in + sth#execute [`Int hostid; `String name]; + + let exists = try sth#fetch1int () = 1 with Not_found -> false in + + if exists then ( + if not replace then ( + error ~title:"Image already exists" ~back_button:true + q ("An image with the same name already exists."); + return () + ) else ( + let sth = dbh#prepare_cached "update images + set name_deleted = name, name = null + where hostid = ? and name = ?" in + sth#execute [`Int hostid; `String name]; + ) + ); + (* Put the image into the database. *) let sth = dbh#prepare_cached @@ -130,7 +154,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = let body = fun () -> "Page: http://" ^ hostname ^ "/_images" in - email_notify ~body ~subject dbh hostid; + email_notify ~body ~subject ~user dbh hostid; let buttons = [ ok_button "/_images" ] in ok ~title:"Image uploaded" ~buttons