source: trunk/admin/include/functions_upload.inc.php @ 25018

Last change on this file since 25018 was 25018, checked in by mistic100, 11 years ago

remove all array_push (50% slower than []) + some changes missing for feature:2978

File size: 13.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2013 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
25include_once(PHPWG_ROOT_PATH.'admin/include/image.class.php');
26
27// add default event handler for image and thumbnail resize
28add_event_handler('upload_image_resize', 'pwg_image_resize', EVENT_HANDLER_PRIORITY_NEUTRAL, 7);
29add_event_handler('upload_thumbnail_resize', 'pwg_image_resize', EVENT_HANDLER_PRIORITY_NEUTRAL, 9);
30
31function get_upload_form_config()
32{
33  // default configuration for upload
34  $upload_form_config = array(
35    'original_resize' => array(
36      'default' => false,
37      'can_be_null' => false,
38      ),
39
40    'original_resize_maxwidth' => array(
41      'default' => 2000,
42      'min' => 500,
43      'max' => 20000,
44      'pattern' => '/^\d+$/',
45      'can_be_null' => false,
46      'error_message' => l10n('The original maximum width must be a number between %d and %d'),
47      ),
48
49    'original_resize_maxheight' => array(
50      'default' => 2000,
51      'min' => 300,
52      'max' => 20000,
53      'pattern' => '/^\d+$/',
54      'can_be_null' => false,
55      'error_message' => l10n('The original maximum height must be a number between %d and %d'),
56      ),
57
58    'original_resize_quality' => array(
59      'default' => 95,
60      'min' => 50,
61      'max' => 98,
62      'pattern' => '/^\d+$/',
63      'can_be_null' => false,
64      'error_message' => l10n('The original image quality must be a number between %d and %d'),
65      ),
66    );
67
68  return $upload_form_config;
69}
70
71function save_upload_form_config($data, &$errors=array(), &$form_errors=array())
72{
73  if (!is_array($data) or empty($data))
74  {
75    return false;
76  }
77
78  $upload_form_config = get_upload_form_config();
79  $updates = array();
80
81  foreach ($data as $field => $value)
82  {
83    if (!isset($upload_form_config[$field]))
84    {
85      continue;
86    }
87    if (is_bool($upload_form_config[$field]['default']))
88    {
89      if (isset($value))
90      {
91        $value = true;
92      }
93      else
94      {
95        $value = false;
96      }
97
98      $updates[] = array(
99        'param' => $field,
100        'value' => boolean_to_string($value)
101        );
102    }
103    elseif ($upload_form_config[$field]['can_be_null'] and empty($value))
104    {
105      $updates[] = array(
106        'param' => $field,
107        'value' => 'false'
108        );
109    }
110    else
111    {
112      $min = $upload_form_config[$field]['min'];
113      $max = $upload_form_config[$field]['max'];
114      $pattern = $upload_form_config[$field]['pattern'];
115
116      if (preg_match($pattern, $value) and $value >= $min and $value <= $max)
117      {
118         $updates[] = array(
119          'param' => $field,
120          'value' => $value
121          );
122      }
123      else
124      {
125        $errors[] = sprintf(
126          $upload_form_config[$field]['error_message'],
127          $min, $max
128          );
129       
130        $form_errors[$field] = '['.$min.' .. '.$max.']';
131      }
132    }
133  }
134
135  if (count($errors) == 0)
136  {
137    mass_updates(
138      CONFIG_TABLE,
139      array(
140        'primary' => array('param'),
141        'update' => array('value')
142        ),
143      $updates
144      );
145    return true;
146  }
147
148  return false;
149}
150
151function add_uploaded_file($source_filepath, $original_filename=null, $categories=null, $level=null, $image_id=null, $original_md5sum=null)
152{
153  // 1) move uploaded file to upload/2010/01/22/20100122003814-449ada00.jpg
154  //
155  // 2) keep/resize original
156  //
157  // 3) register in database
158
159  // TODO
160  // * check md5sum (already exists?)
161
162  global $conf, $user;
163
164  if (isset($original_md5sum))
165  {
166    $md5sum = $original_md5sum;
167  }
168  else
169  {
170    $md5sum = md5_file($source_filepath);
171  }
172
173  $file_path = null;
174
175  if (isset($image_id))
176  {
177    // this photo already exists, we update it
178    $query = '
179SELECT
180    path
181  FROM '.IMAGES_TABLE.'
182  WHERE id = '.$image_id.'
183;';
184    $result = pwg_query($query);
185    while ($row = pwg_db_fetch_assoc($result))
186    {
187      $file_path = $row['path'];
188    }
189
190    if (!isset($file_path))
191    {
192      die('['.__FUNCTION__.'] this photo does not exist in the database');
193    }
194
195    // delete all physical files related to the photo (thumbnail, web site, HD)
196    delete_element_files(array($image_id));
197  }
198  else
199  {
200    // this photo is new
201
202    // current date
203    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
204    list($year, $month, $day) = preg_split('/[^\d]/', $dbnow, 4);
205
206    // upload directory hierarchy
207    $upload_dir = sprintf(
208      PHPWG_ROOT_PATH.$conf['upload_dir'].'/%s/%s/%s',
209      $year,
210      $month,
211      $day
212      );
213
214    // compute file path
215    $date_string = preg_replace('/[^\d]/', '', $dbnow);
216    $random_string = substr($md5sum, 0, 8);
217    $filename_wo_ext = $date_string.'-'.$random_string;
218    $file_path = $upload_dir.'/'.$filename_wo_ext.'.';
219
220    list($width, $height, $type) = getimagesize($source_filepath);
221    if (IMAGETYPE_PNG == $type)
222    {
223      $file_path.= 'png';
224    }
225    elseif (IMAGETYPE_GIF == $type)
226    {
227      $file_path.= 'gif';
228    }
229    else
230    {
231      $file_path.= 'jpg';
232    }
233
234    prepare_directory($upload_dir);
235  }
236
237  if (is_uploaded_file($source_filepath))
238  {
239    move_uploaded_file($source_filepath, $file_path);
240  }
241  else
242  {
243    rename($source_filepath, $file_path);
244  }
245  @chmod($file_path, 0644);
246
247  if (pwg_image::get_library() != 'gd')
248  {
249    if ($conf['original_resize'])
250    {
251      $need_resize = need_resize($file_path, $conf['original_resize_maxwidth'], $conf['original_resize_maxheight']);
252
253      if ($need_resize)
254      {
255        $img = new pwg_image($file_path);
256
257        $img->pwg_resize(
258          $file_path,
259          $conf['original_resize_maxwidth'],
260          $conf['original_resize_maxheight'],
261          $conf['original_resize_quality'],
262          $conf['upload_form_automatic_rotation'],
263          false
264          );
265
266        $img->destroy();
267      }
268    }
269  }
270
271  // we need to save the rotation angle in the database to compute
272  // width/height of "multisizes"
273  $rotation_angle = pwg_image::get_rotation_angle($file_path);
274  $rotation = pwg_image::get_rotation_code_from_angle($rotation_angle);
275 
276  $file_infos = pwg_image_infos($file_path);
277
278  if (isset($image_id))
279  {
280    $update = array(
281      'file' => pwg_db_real_escape_string(isset($original_filename) ? $original_filename : basename($file_path)),
282      'filesize' => $file_infos['filesize'],
283      'width' => $file_infos['width'],
284      'height' => $file_infos['height'],
285      'md5sum' => $md5sum,
286      'added_by' => $user['id'],
287      'rotation' => $rotation,
288      );
289
290    if (isset($level))
291    {
292      $update['level'] = $level;
293    }
294
295    single_update(
296      IMAGES_TABLE,
297      $update,
298      array('id' => $image_id)
299      );
300  }
301  else
302  {
303    // database registration
304    $file = pwg_db_real_escape_string(isset($original_filename) ? $original_filename : basename($file_path));
305    $insert = array(
306      'file' => $file,
307      'name' => get_name_from_file($file),
308      'date_available' => $dbnow,
309      'path' => preg_replace('#^'.preg_quote(PHPWG_ROOT_PATH).'#', '', $file_path),
310      'filesize' => $file_infos['filesize'],
311      'width' => $file_infos['width'],
312      'height' => $file_infos['height'],
313      'md5sum' => $md5sum,
314      'added_by' => $user['id'],
315      'rotation' => $rotation,
316      );
317
318    if (isset($level))
319    {
320      $insert['level'] = $level;
321    }
322
323    single_insert(IMAGES_TABLE, $insert);
324
325    $image_id = pwg_db_insert_id(IMAGES_TABLE);
326  }
327
328  if (isset($categories) and count($categories) > 0)
329  {
330    associate_images_to_categories(
331      array($image_id),
332      $categories
333      );
334  }
335
336  // update metadata from the uploaded file (exif/iptc)
337  if ($conf['use_exif'] and !function_exists('read_exif_data'))
338  {
339    $conf['use_exif'] = false;
340  }
341  sync_metadata(array($image_id));
342
343  invalidate_user_cache();
344
345  // cache thumbnail
346  $query = '
347SELECT
348    id,
349    path
350  FROM '.IMAGES_TABLE.'
351  WHERE id = '.$image_id.'
352;';
353  $image_infos = pwg_db_fetch_assoc(pwg_query($query));
354
355  set_make_full_url();
356  // in case we are on uploadify.php, we have to replace the false path
357  $thumb_url = preg_replace('#admin/include/i#', 'i', DerivativeImage::thumb_url($image_infos));
358  unset_make_full_url();
359 
360  fetchRemote($thumb_url, $dest);
361 
362
363  return $image_id;
364}
365
366function prepare_directory($directory)
367{
368  if (!is_dir($directory)) {
369    if (substr(PHP_OS, 0, 3) == 'WIN')
370    {
371      $directory = str_replace('/', DIRECTORY_SEPARATOR, $directory);
372    }
373    umask(0000);
374    $recursive = true;
375    if (!@mkdir($directory, 0777, $recursive))
376    {
377      die('[prepare_directory] cannot create directory "'.$directory.'"');
378    }
379  }
380
381  if (!is_writable($directory))
382  {
383    // last chance to make the directory writable
384    @chmod($directory, 0777);
385
386    if (!is_writable($directory))
387    {
388      die('[prepare_directory] directory "'.$directory.'" has no write access');
389    }
390  }
391
392  secure_directory($directory);
393}
394
395function need_resize($image_filepath, $max_width, $max_height)
396{
397  // TODO : the resize check should take the orientation into account. If a
398  // rotation must be applied to the resized photo, then we should test
399  // invert width and height.
400  list($width, $height) = getimagesize($image_filepath);
401
402  if ($width > $max_width or $height > $max_height)
403  {
404    return true;
405  }
406
407  return false;
408}
409
410function pwg_image_infos($path)
411{
412  list($width, $height) = getimagesize($path);
413  $filesize = floor(filesize($path)/1024);
414
415  return array(
416    'width'  => $width,
417    'height' => $height,
418    'filesize' => $filesize,
419    );
420}
421
422function is_valid_image_extension($extension)
423{
424  return in_array(strtolower($extension), array('jpg', 'jpeg', 'png', 'gif'));
425}
426
427function file_upload_error_message($error_code)
428{
429  switch ($error_code) {
430    case UPLOAD_ERR_INI_SIZE:
431      return sprintf(
432        l10n('The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'),
433        get_ini_size('upload_max_filesize', false)
434        );
435    case UPLOAD_ERR_FORM_SIZE:
436      return l10n('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form');
437    case UPLOAD_ERR_PARTIAL:
438      return l10n('The uploaded file was only partially uploaded');
439    case UPLOAD_ERR_NO_FILE:
440      return l10n('No file was uploaded');
441    case UPLOAD_ERR_NO_TMP_DIR:
442      return l10n('Missing a temporary folder');
443    case UPLOAD_ERR_CANT_WRITE:
444      return l10n('Failed to write file to disk');
445    case UPLOAD_ERR_EXTENSION:
446      return l10n('File upload stopped by extension');
447    default:
448      return l10n('Unknown upload error');
449  }
450}
451
452function get_ini_size($ini_key, $in_bytes=true)
453{
454  $size = ini_get($ini_key);
455
456  if ($in_bytes)
457  {
458    $size = convert_shorthand_notation_to_bytes($size);
459  }
460
461  return $size;
462}
463
464function convert_shorthand_notation_to_bytes($value)
465{
466  $suffix = substr($value, -1);
467  $multiply_by = null;
468
469  if ('K' == $suffix)
470  {
471    $multiply_by = 1024;
472  }
473  else if ('M' == $suffix)
474  {
475    $multiply_by = 1024*1024;
476  }
477  else if ('G' == $suffix)
478  {
479    $multiply_by = 1024*1024*1024;
480  }
481
482  if (isset($multiply_by))
483  {
484    $value = substr($value, 0, -1);
485    $value*= $multiply_by;
486  }
487
488  return $value;
489}
490
491function add_upload_error($upload_id, $error_message)
492{
493  $_SESSION['uploads_error'][$upload_id][] = $error_message;
494}
495
496function ready_for_upload_message()
497{
498  global $conf;
499
500  $relative_dir = preg_replace('#^'.PHPWG_ROOT_PATH.'#', '', $conf['upload_dir']);
501
502  if (!is_dir($conf['upload_dir']))
503  {
504    if (!is_writable(dirname($conf['upload_dir'])))
505    {
506      return sprintf(
507        l10n('Create the "%s" directory at the root of your Piwigo installation'),
508        $relative_dir
509        );
510    }
511  }
512  else
513  {
514    if (!is_writable($conf['upload_dir']))
515    {
516      @chmod($conf['upload_dir'], 0777);
517
518      if (!is_writable($conf['upload_dir']))
519      {
520        return sprintf(
521          l10n('Give write access (chmod 777) to "%s" directory at the root of your Piwigo installation'),
522          $relative_dir
523          );
524      }
525    }
526  }
527
528  return null;
529}
530?>
Note: See TracBrowser for help on using the repository browser.