source: extensions/community/add_photos.php @ 30452

Last change on this file since 30452 was 29970, checked in by plg, 10 years ago

compatibility with Piwigo 2.7

For now, we keep uploadify (Flash) on Community because it is more compatible
with old browsers like IE8/IE9. Once the new HTML5 upload form will be more
mature, we will replace uploadify on Community too.

File size: 17.8 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2011 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
24if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
25
26global $template, $conf, $user;
27
28include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
29include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
30include_once(COMMUNITY_PATH.'include/functions_community.inc.php');
31
32define('PHOTOS_ADD_BASE_URL', make_index_url(array('section' => 'add_photos')));
33
34$user_permissions = $user['community_permissions'];
35
36if (!$user_permissions['community_enabled'])
37{
38  redirect(make_index_url());
39}
40
41// +-----------------------------------------------------------------------+
42// |                             process form                              |
43// +-----------------------------------------------------------------------+
44
45$page['errors'] = array();
46$page['infos'] = array();
47
48// this is for "browser uploader", for Flash Uploader the problem is solved
49// with function community_uploadify_privacy_level (see main.inc.php)
50$_POST['level'] = 16;
51
52if (isset($_GET['processed']))
53{
54  $hacking_attempt = false;
55 
56  // is the user authorized to upload in this album?
57  if (!in_array($_POST['category'], $user_permissions['upload_categories']))
58  {
59    echo 'Hacking attempt, you have no permission to upload in this album';
60    $hacking_attempt = true;
61  }
62
63  if ($hacking_attempt)
64  {
65    if (isset($_SESSION['uploads'][ $_POST['upload_id'] ]))
66    {
67      delete_elements($_SESSION['uploads'][ $_POST['upload_id'] ], true);
68    }
69    exit();
70  }
71}
72
73include_once(COMMUNITY_PATH.'include/photos_add_direct_process.inc.php');
74
75// +-----------------------------------------------------------------------+
76// | limits                                                                |
77// +-----------------------------------------------------------------------+
78
79// has the user reached its limits?
80$user['community_usage'] = community_get_user_limits($user['id']);
81// echo '<pre>'; print_r($user['community_usage']); echo '</pre>';
82
83// +-----------------------------------------------------------------------+
84// | set properties, moderate, notify                                      |
85// +-----------------------------------------------------------------------+
86
87if (isset($image_ids) and count($image_ids) > 0)
88{
89  $query = '
90SELECT
91    id,
92    file,
93    filesize
94  FROM '.IMAGES_TABLE.'
95  WHERE id IN ('.implode(',', $image_ids).')
96  ORDER BY id DESC
97;';
98  $images = array_from_query($query);
99
100  $nb_images_deleted = 0;
101 
102  // upload has just happened, maybe the user is over quota
103  if ($user_permissions['storage'] > 0 and $user['community_usage']['storage'] > $user_permissions['storage'])
104  {
105    foreach ($images as $image)
106    {
107      array_push(
108        $page['errors'],
109        sprintf(l10n('Photo %s rejected.'), $image['file'])
110        .' '.sprintf(l10n('Disk usage quota reached (%uMB)'), $user_permissions['storage'])
111        );
112     
113      delete_elements(array($image['id']), true);
114      foreach ($page['thumbnails'] as $tn_idx => $thumbnail)
115      {
116        if ($thumbnail['file'] == $image['file'])
117        {
118          unset($page['thumbnails'][$idx]);
119        }
120      }
121
122      $user['community_usage'] = community_get_user_limits($user['id']);
123     
124      if ($user['community_usage']['storage'] <= $user_permissions['storage'])
125      {
126        // we stop the deletions
127        break;
128      }
129    }
130  }
131
132  if ($user_permissions['nb_photos'] > 0 and $user['community_usage']['nb_photos'] > $user_permissions['nb_photos'])
133  {
134    foreach ($images as $image)
135    {
136      array_push(
137        $page['errors'],
138        sprintf(l10n('Photo %s rejected.'), $image['file'])
139        .' '.sprintf(l10n('Maximum number of photos reached (%u)'), $user_permissions['nb_photos'])
140        );
141     
142      delete_elements(array($image['id']), true);
143      foreach ($page['thumbnails'] as $tn_idx => $thumbnail)
144      {
145        if ($thumbnail['file'] == $image['file'])
146        {
147          unset($page['thumbnails'][$idx]);
148        }
149      }
150
151      $user['community_usage'] = community_get_user_limits($user['id']);
152     
153      if ($user['community_usage']['nb_photos'] <= $user_permissions['nb_photos'])
154      {
155        // we stop the deletions
156        break;
157      }
158    }
159  }
160     
161 
162  // reinitialize the informations to display on the result page
163  $page['infos'] = array();
164
165  if (isset($_POST['set_photo_properties']))
166  {
167    $data = array();
168   
169    $data['name'] = $_POST['name'];
170    $data['author'] = $_POST['author'];
171   
172    if ($conf['allow_html_descriptions'])
173    {
174      $data['comment'] = @$_POST['description'];
175    }
176    else
177    {
178      $data['comment'] = strip_tags(@$_POST['description']);
179    }
180
181    $updates = array();
182    foreach ($image_ids as $image_id)
183    {
184      $update = $data;
185      $update['id'] = $image_id;
186
187      array_push($updates, $update);
188    }
189
190    mass_updates(
191      IMAGES_TABLE,
192      array(
193        'primary' => array('id'),
194        'update' => array_diff(array_keys($updates[0]), array('id'))
195        ),
196      $updates
197      );
198  }
199
200  if (count($page['thumbnails']) > 0)
201  {
202    // $category_id is set in the photos_add_direct_process.inc.php included script
203    $category_infos = get_cat_info($category_id);
204    $category_name = get_cat_display_name($category_infos['upper_names']);
205
206    array_push(
207      $page['infos'],
208      sprintf(
209        l10n('%d photos uploaded into album "%s"'),
210        count($page['thumbnails']),
211        '<em>'.$category_name.'</em>'
212        )
213      );
214  }
215
216  // should the photos be moderated?
217  //
218  // if one of the user community permissions is not moderated on the path
219  // to gallery root, then the upload is not moderated. For example, if the
220  // user is allowed to upload to events/parties with no admin moderation,
221  // then he's not moderated when uploading in
222  // events/parties/happyNewYear2011
223  $moderate = true;
224  if (is_admin())
225  {
226    $moderate = false;
227  }
228  else
229  { 
230    $query = '
231SELECT
232    cp.category_id,
233    c.uppercats
234  FROM '.COMMUNITY_PERMISSIONS_TABLE.' AS cp
235    LEFT JOIN '.CATEGORIES_TABLE.' AS c ON category_id = c.id
236  WHERE cp.id IN ('.implode(',', $user_permissions['permission_ids']).')
237    AND cp.moderated = \'false\'
238;';
239    $result = pwg_query($query);
240    while ($row = pwg_db_fetch_assoc($result))
241    {
242      if (empty($row['category_id']))
243      {
244        $moderate = false;
245      }
246      elseif (preg_match('/^'.$row['uppercats'].'(,|$)/', $category_infos['uppercats']))
247      {
248        $moderate = false;
249      }
250    }
251  }
252 
253  if ($moderate)
254  {
255    $inserts = array();
256
257    $query = '
258SELECT
259    id,
260    date_available
261  FROM '.IMAGES_TABLE.'
262  WHERE id IN ('.implode(',', $image_ids).')
263;';
264    $result = pwg_query($query);
265    while ($row = pwg_db_fetch_assoc($result))
266    {
267      array_push(
268        $inserts,
269        array(
270          'image_id' => $row['id'],
271          'added_on' => $row['date_available'],
272          'state' => 'moderation_pending',
273          )
274        );
275    }
276
277    if (count($inserts) > 0)
278    {
279      mass_inserts(
280        COMMUNITY_PENDINGS_TABLE,
281        array_keys($inserts[0]),
282        $inserts
283        );
284     
285      // find the url to the medium size
286      $page['thumbnails'] = array();
287
288      $query = '
289SELECT *
290  FROM '.IMAGES_TABLE.'
291  WHERE id IN ('.implode(',', $image_ids).')
292;';
293      $result = pwg_query($query);
294      while ($row = pwg_db_fetch_assoc($result))
295      {
296        $src_image = new SrcImage($row);
297       
298        $page['thumbnails'][] = array(
299          'file' => $row['file'],
300          'src' => DerivativeImage::url(IMG_THUMB, $src_image),
301          'title' => $row['name'],
302          'link' => $image_url = DerivativeImage::url(IMG_MEDIUM, $src_image),
303          'lightbox' => true,
304          );
305      }
306     
307      array_push(
308        $page['infos'],
309        l10n('Your photos are waiting for validation, administrators have been notified')
310        );
311    }
312  }
313  else
314  {
315    // the level of a user upload photo with no moderation is 0
316    $query = '
317UPDATE '.IMAGES_TABLE.'
318  SET level = 0
319  WHERE id IN ('.implode(',', $image_ids).')
320;';
321    pwg_query($query);
322
323    // the link on thumbnail must go to picture.php
324    foreach ($page['thumbnails'] as $idx => $thumbnail)
325    {
326      if (preg_match('/page=photo-(\d+)/', $thumbnail['link'], $matches))
327      {
328        $page['thumbnails'][$idx]['link'] = make_picture_url(
329          array(
330            'image_id' => $matches[1],
331            'image_file' => $thumbnail['file'],
332            'category' => $category_infos,
333            )
334          );
335      }
336    }
337  }
338
339  invalidate_user_cache();
340 
341  if (count($page['thumbnails']))
342  {
343    // let's notify administrators
344    include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
345
346    $keyargs_content = array(
347      get_l10n_args('Hi administrators,', ''),
348      get_l10n_args('', ''),
349      get_l10n_args('Album: %s', get_cat_display_name($category_infos['upper_names'], null, false)),
350      get_l10n_args('User: %s', $user['username']),
351      get_l10n_args('Email: %s', $user['email']),
352      );
353
354    if ($moderate)
355    {
356      $keyargs_content[] = get_l10n_args('', '');
357     
358      array_push(
359        $keyargs_content,
360        get_l10n_args(
361          'Validation page: %s',
362          get_absolute_root_url().'admin.php?page=plugin-community-pendings'
363          )
364        );
365    }
366
367    pwg_mail_notification_admins(
368      get_l10n_args('%d photos uploaded by %s', array(count($image_ids), $user['username'])),
369      $keyargs_content,
370      false
371      );
372  }
373}
374
375// +-----------------------------------------------------------------------+
376// |                             prepare form                              |
377// +-----------------------------------------------------------------------+
378
379$template->set_filenames(array('add_photos' => dirname(__FILE__).'/add_photos.tpl'));
380
381// +-----------------------------------------------------------------------+
382// | Uploaded photos                                                       |
383// +-----------------------------------------------------------------------+
384
385if (isset($page['thumbnails']))
386{
387  $template->assign(
388    array(
389      'thumbnails' => $page['thumbnails'],
390      )
391    );
392
393  // only display the batch link if we have more than 1 photo
394  if (count($page['thumbnails']) > 1)
395  {
396    $template->assign(
397      array(
398        'batch_link' => $page['batch_link'],
399        'batch_label' => sprintf(
400          l10n('Manage this set of %d photos'),
401          count($page['thumbnails'])
402          ),
403        )
404      );
405  }
406}
407
408include_once(PHPWG_ROOT_PATH.'admin/include/photos_add_direct_prepare.inc.php');
409
410if (isset($conf['upload_form_all_types']) and $conf['upload_form_all_types'])
411{
412  $upload_file_types = $conf['file_ext'];
413}
414else
415{
416  $upload_file_types = $conf['picture_ext'];
417}
418
419$unique_exts = array_unique(array_map('strtolower', $upload_file_types));
420
421$is_windows = true;
422if (stripos($_SERVER['HTTP_USER_AGENT'], 'Win') === false)
423{
424  $is_windows = false;
425}
426
427$uploadify_exts = array();
428foreach ($unique_exts as $ext)
429{
430  $uploadify_exts[] = $ext;
431
432  // Windows is not case sensitive and there is a bug with Firefox on
433  // Windows: the list of extensions is truncated and last extensions are
434  // not taken into account, so we have to make it as short as possible.
435  if (!$is_windows)
436  {
437    $uploadify_exts[] = strtoupper($ext);
438  }
439}
440
441$upload_modes = array('html', 'multiple');
442$upload_mode = isset($conf['upload_mode']) ? $conf['upload_mode'] : 'multiple';
443
444if (isset($_GET['upload_mode']) and $upload_mode != $_GET['upload_mode'] and in_array($_GET['upload_mode'], $upload_modes))
445{
446  $upload_mode = $_GET['upload_mode'];
447  conf_update_param('upload_mode', $upload_mode);
448}
449
450// what is the upload switch mode
451$index_of_upload_mode = array_flip($upload_modes);
452$upload_mode_index = $index_of_upload_mode[$upload_mode];
453$upload_switch = $upload_modes[ ($upload_mode_index + 1) % 2 ];
454
455$template->assign(
456  array(
457    'uploadify_path' => COMMUNITY_PATH.'uploadify',
458    'upload_file_types' => implode(', ', $unique_exts),
459    'uploadify_fileTypeExts' => implode(';', prepend_append_array_items($uploadify_exts, '*.', '')),
460    'upload_mode' => $upload_mode,
461    'form_action' => PHOTOS_ADD_BASE_URL.'&amp;upload_mode='.$upload_mode.'&amp;processed=1',
462    'switch_url' => PHOTOS_ADD_BASE_URL.'&amp;upload_mode='.$upload_switch,
463    'upload_id' => md5(rand()),
464    'session_id' => session_id(),
465    'another_upload_link' => PHOTOS_ADD_BASE_URL.'&amp;upload_mode='.$upload_mode,
466    )
467  );
468
469$quota_available = array(
470  'summary' => array(),
471  'details' => array(),
472  );
473
474// there is a limit on storage for this user
475if ($user_permissions['storage'] > 0)
476{
477  $remaining_storage = $user_permissions['storage'] - $user['community_usage']['storage'];
478 
479  if ($remaining_storage <= 0)
480  {
481    // limit reached
482    $setup_errors[] = sprintf(
483      l10n('Disk usage quota reached (%uMB)'),
484      $user_permissions['storage']
485      );
486  }
487  else
488  {
489    $quota_available['summary'][] = $remaining_storage.'MB';
490   
491    $quota_available['details'][] = sprintf(
492      l10n('%s out of %s'),
493      $remaining_storage.'MB',
494      $user_permissions['storage']
495      );
496   
497    $template->assign(
498      array(
499        'limit_storage' => $remaining_storage*1024*1024,
500        'limit_storage_total_mb' => $user_permissions['storage'],
501        )
502      );
503  }
504}
505
506// there is a limit on number of photos for this user
507if ($user_permissions['nb_photos'] > 0)
508{
509  $remaining_nb_photos = $user_permissions['nb_photos'] - $user['community_usage']['nb_photos'];
510 
511  if ($remaining_nb_photos <= 0)
512  {
513    // limit reached
514    $setup_errors[] = sprintf(
515      l10n('Maximum number of photos reached (%u)'),
516      $user_permissions['nb_photos']
517      );
518  }
519  else
520  {
521    $quota_available['summary'][] = l10n_dec('%d photo', '%d photos', $remaining_nb_photos);
522   
523    $quota_available['details'][] = sprintf(
524      l10n('%s out of %s'),
525      l10n_dec('%d photo', '%d photos', $remaining_nb_photos),
526      $user_permissions['nb_photos']
527      );
528   
529    $template->assign('limit_nb_photos', $remaining_nb_photos);
530  }
531}
532
533if (count($quota_available['details']) > 0)
534{
535  $template->assign(
536    array(
537      'quota_summary' => sprintf(
538        l10n('Available %s.'),
539        implode(', ', $quota_available['summary'])
540        ),
541      'quota_details' => sprintf(
542        l10n('Available quota %s.'),
543        implode(', ', $quota_available['details'])
544        ),
545      )
546    );
547}
548
549$template->assign(
550  array(
551    'setup_errors'=> $setup_errors,
552    )
553  );
554
555// we have to change the list of uploadable albums
556$upload_categories = $user_permissions['upload_categories'];
557if (count($upload_categories) == 0)
558{
559  $upload_categories = array(-1);
560}
561
562$query = '
563SELECT id,name,uppercats,global_rank
564  FROM '.CATEGORIES_TABLE.'
565  WHERE id IN ('.implode(',', $upload_categories).')
566;';
567
568display_select_cat_wrapper(
569  $query,
570  $selected_category,
571  'category_options'
572  );
573
574$create_subcategories = false;
575if ($user_permissions['create_whole_gallery'] or count($user_permissions['create_categories']) > 0)
576{
577  $create_subcategories = true;
578}
579
580$create_categories = $user_permissions['create_categories'];
581if (count($user_permissions['create_categories']) == 0)
582{
583  $create_categories = array(-1);
584}
585
586$query = '
587SELECT id,name,uppercats,global_rank
588  FROM '.CATEGORIES_TABLE.'
589  WHERE id IN ('.implode(',', $create_categories).')
590;';
591
592display_select_cat_wrapper(
593  $query,
594  $selected_category,
595  'category_parent_options'
596  );
597
598$template->assign(
599  array(
600    'create_subcategories' => $create_subcategories,
601    'create_whole_gallery' => $user_permissions['create_whole_gallery'],
602    )
603  );
604
605if (isset($conf['community_ask_for_properties']) and $conf['community_ask_for_properties'])
606{
607  $template->assign(
608    array(
609      'community_ask_for_properties' => true,
610      )
611    );
612}
613
614// +-----------------------------------------------------------------------+
615// |                             display page                              |
616// +-----------------------------------------------------------------------+
617
618if (count($page['errors']) != 0)
619{
620  $template->assign('errors', $page['errors']);
621}
622
623if (count($page['infos']) != 0)
624{
625  $template->assign('infos', $page['infos']);
626}
627
628$title = l10n('Upload Photos');
629$page['body_id'] = 'theUploadPage';
630
631$template->assign_var_from_handle('PLUGIN_INDEX_CONTENT_BEGIN', 'add_photos');
632
633$template->clear_assign(array('U_MODE_POSTED', 'U_MODE_CREATED'));
634
635$template->assign(
636  array(
637    'TITLE' => '<a href="'.get_gallery_home_url().'">'.l10n('Home').'</a>'.$conf['level_separator'].$title,
638    )
639  );
640?>
Note: See TracBrowser for help on using the repository browser.