Fixed bug: https://sourceforge.net/p/openemr/bugs/416/
[openemr.git] / interface / patient_file / upload_dialog.php
blob73a36c3350ff6a45cc02f82cdfee8d31e3298596
1 <?php
2 /**
3 * This script upload image to file.
5 * Copyright (C) 2009-2010 Rod Roark <rod@sunsetsystems.com>
7 * LICENSE: This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
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 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
18 * @package OpenEMR
19 * @author Rod Roark <rod@sunsetsystems.com>
20 * @author Roberto Vasquez <robertogagliotta@gmail.com>
21 * @link http://www.open-emr.org
24 require_once("../globals.php");
26 $patientid = $_REQUEST["patientid"];
27 $what = $_REQUEST["file"];
29 $patientdir = $GLOBALS['OE_SITE_DIR'] . "/documents/$patientid";
30 $imagedir = "$patientdir/demographics";
32 <html>
33 <head>
34 <title>Upload Image</title>
35 <link rel="stylesheet" href="<?php echo xl($css_header,'e');?>" type="text/css">
36 </head>
37 <body>
39 <?php
40 $errmsg = '';
42 if ($_POST["form_submit"] || $_POST["form_delete"]) {
43 if (!file_exists($patientdir)) mkdir($patientdir);
44 if (!file_exists($imagedir )) mkdir($imagedir );
45 check_file_dir_name($what);
46 $filename = "$imagedir/$what.jpg";
48 if ($_POST["form_delete"]) {
49 unlink($filename);
51 else {
52 // Check if the upload worked.
54 if (! $errmsg) {
55 if (! is_uploaded_file($_FILES['userfile']['tmp_name']))
56 $errmsg = "Upload failed! Make sure the path/filename is valid " .
57 "and the file is less than 4,000,000 bytes.";
60 // Copy the image to its destination.
62 if (! $errmsg) {
64 /***************************************************************
65 $tmp = exec("/usr/bin/convert -resize 150x150 " .
66 ($_POST["form_normalize"] ? "-equalize " : "") .
67 $_FILES['userfile']['tmp_name'] .
68 " $filename 2>&1");
69 if ($tmp)
70 $errmsg = "This is not a valid image, or its format is unsupported.";
71 ***************************************************************/
73 if (!move_uploaded_file($_FILES['userfile']['tmp_name'], $filename)) {
74 $errmsg = "Internal error accessing uploaded file!";
79 // Write JavaScript for final disposition by the browser.
81 echo "<script LANGUAGE=\"JavaScript\">\n";
82 if ($errmsg) {
83 $errmsg = strtr($errmsg, "\r\n'", " ");
84 echo "window.alert('$errmsg')\n";
85 echo "window.history.back()\n";
86 } else {
87 echo "opener.location.reload()\n";
88 echo "window.close()\n";
90 echo "</script>\n</body>\n</html>\n";
92 exit;
96 <center>
98 <p><b>Upload Image File</b></p>
100 </center>
102 <form method="post" name="main" action="upload_dialog.php?patientid=<?php echo attr($patientid) ?>&file=<?php echo attr($what) ?>" enctype="multipart/form-data">
103 <input type="hidden" name="MAX_FILE_SIZE" value="4000000">
105 <center>
107 <!-- Table required so input field does not start on a new line -->
108 <table border="0">
109 <tr>
110 <td style="font-size:11pt">
111 Send this file:
112 </td>
113 <td>
114 <input type="file" name="userfile" />
115 </td>
116 </tr>
117 </table>
120 <input type="submit" name="form_submit" value="Upload" />
121 <input type="button" value="Cancel" onclick="window.close()" />
122 <input type="submit" name="form_delete" value="Delete" />
124 </center>
126 </form>
128 </body>
129 </html>