source: trunk/admin/batch_manager_global.php @ 28502

Last change on this file since 28502 was 28502, checked in by mistic100, 10 years ago

feature 3077 : use Selectize on batch_manager_global

File size: 19.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2014 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
24/**
25 * Management of elements set. Elements can belong to a category or to the
26 * user caddie.
27 *
28 */
29
30if (!defined('PHPWG_ROOT_PATH'))
31{
32  die('Hacking attempt!');
33}
34
35include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
36
37// +-----------------------------------------------------------------------+
38// | Check Access and exit when user status is not ok                      |
39// +-----------------------------------------------------------------------+
40
41check_status(ACCESS_ADMINISTRATOR);
42
43trigger_action('loc_begin_element_set_global');
44
45check_input_parameter('del_tags', $_POST, true, PATTERN_ID);
46check_input_parameter('associate', $_POST, false, PATTERN_ID);
47check_input_parameter('move', $_POST, false, PATTERN_ID);
48check_input_parameter('dissociate', $_POST, false, PATTERN_ID);
49
50// +-----------------------------------------------------------------------+
51// |                            current selection                          |
52// +-----------------------------------------------------------------------+
53
54$collection = array();
55if (isset($_POST['setSelected']))
56{
57  $collection = $page['cat_elements_id'];
58}
59else if (isset($_POST['selection']))
60{
61  $collection = $_POST['selection'];
62}
63
64// +-----------------------------------------------------------------------+
65// |                       global mode form submission                     |
66// +-----------------------------------------------------------------------+
67
68// $page['prefilter'] is a shortcut to test if the current filter contains a
69// given prefilter. The idea is to make conditions simpler to write in the
70// code.
71$page['prefilter'] = 'none';
72if (isset($_SESSION['bulk_manager_filter']['prefilter']))
73{
74  $page['prefilter'] = $_SESSION['bulk_manager_filter']['prefilter'];
75}
76
77$redirect_url = get_root_url().'admin.php?page='.$_GET['page'];
78
79if (isset($_POST['submit']))
80{
81  // if the user tries to apply an action, it means that there is at least 1
82  // photo in the selection
83  if (count($collection) == 0)
84  {
85    $page['errors'][] = l10n('Select at least one photo');
86  }
87
88  $action = $_POST['selectAction'];
89
90  if (!in_array($action, array('remove_from_caddie','add_to_caddie','delete_derivatives','generate_derivatives')))
91  {
92    invalidate_user_cache();
93  }
94
95  if ('remove_from_caddie' == $action)
96  {
97    $query = '
98DELETE
99  FROM '.CADDIE_TABLE.'
100  WHERE element_id IN ('.implode(',', $collection).')
101    AND user_id = '.$user['id'].'
102;';
103    pwg_query($query);
104
105    // remove from caddie action available only in caddie so reload content
106    redirect($redirect_url);
107  }
108
109  if ('add_tags' == $action)
110  {
111    if (empty($_POST['add_tags']))
112    {
113      $page['errors'][] = l10n('Select at least one tag');
114    }
115    else
116    {
117      $tag_ids = get_tag_ids($_POST['add_tags']);
118      add_tags($tag_ids, $collection);
119
120      if ('no_tag' == $page['prefilter'])
121      {
122        redirect($redirect_url);
123      }
124    }
125  }
126
127  if ('del_tags' == $action)
128  {
129     if (isset($_POST['del_tags']) and count($_POST['del_tags']) > 0)
130     {
131    $query = '
132DELETE
133  FROM '.IMAGE_TAG_TABLE.'
134  WHERE image_id IN ('.implode(',', $collection).')
135    AND tag_id IN ('.implode(',', $_POST['del_tags']).')
136;';
137    pwg_query($query);
138    }
139     else
140     {
141      $page['errors'][] = l10n('Select at least one tag');
142     }
143  }
144
145  if ('associate' == $action)
146  {
147    associate_images_to_categories(
148      $collection,
149      array($_POST['associate'])
150      );
151
152    $_SESSION['page_infos'] = array(
153      l10n('Information data registered in database')
154      );
155
156    // let's refresh the page because we the current set might be modified
157    if ('no_album' == $page['prefilter'])
158    {
159      redirect($redirect_url);
160    }
161
162    if ('no_virtual_album' == $page['prefilter'])
163    {
164      $category_info = get_cat_info($_POST['associate']);
165      if (empty($category_info['dir']))
166      {
167        redirect($redirect_url);
168      }
169    }
170  }
171
172  if ('move' == $action)
173  {
174    move_images_to_categories($collection, array($_POST['move']));
175
176    $_SESSION['page_infos'] = array(
177      l10n('Information data registered in database')
178      );
179
180    // let's refresh the page because we the current set might be modified
181    if ('no_album' == $page['prefilter'])
182    {
183      redirect($redirect_url);
184    }
185
186    if ('no_virtual_album' == $page['prefilter'])
187    {
188      $category_info = get_cat_info($_POST['move']);
189      if (empty($category_info['dir']))
190      {
191        redirect($redirect_url);
192      }
193    }
194
195    if (isset($_SESSION['bulk_manager_filter']['category'])
196        and $_POST['move'] != $_SESSION['bulk_manager_filter']['category'])
197    {
198      redirect($redirect_url);
199    }
200  }
201
202  if ('dissociate' == $action)
203  {
204    // physical links must not be broken, so we must first retrieve image_id
205    // which create virtual links with the category to "dissociate from".
206    $query = '
207SELECT id
208  FROM '.IMAGE_CATEGORY_TABLE.'
209    INNER JOIN '.IMAGES_TABLE.' ON image_id = id
210  WHERE category_id = '.$_POST['dissociate'].'
211    AND id IN ('.implode(',', $collection).')
212    AND (
213      category_id != storage_category_id
214      OR storage_category_id IS NULL
215    )
216;';
217    $dissociables = array_from_query($query, 'id');
218
219    if (!empty($dissociables))
220    {
221      $query = '
222DELETE
223  FROM '.IMAGE_CATEGORY_TABLE.'
224  WHERE category_id = '.$_POST['dissociate'].'
225    AND image_id IN ('.implode(',', $dissociables).')
226';
227      pwg_query($query);
228
229      $_SESSION['page_infos'] = array(
230        l10n('Information data registered in database')
231        );
232
233      // let's refresh the page because the current set might be modified
234      redirect($redirect_url);
235    }
236  }
237
238  // author
239  if ('author' == $action)
240  {
241    if (isset($_POST['remove_author']))
242    {
243      $_POST['author'] = null;
244    }
245
246    $datas = array();
247    foreach ($collection as $image_id)
248    {
249      $datas[] = array(
250        'id' => $image_id,
251        'author' => $_POST['author']
252        );
253    }
254
255    mass_updates(
256      IMAGES_TABLE,
257      array('primary' => array('id'), 'update' => array('author')),
258      $datas
259      );
260  }
261
262  // title
263  if ('title' == $action)
264  {
265    if (isset($_POST['remove_title']))
266    {
267      $_POST['title'] = null;
268    }
269
270    $datas = array();
271    foreach ($collection as $image_id)
272    {
273      $datas[] = array(
274        'id' => $image_id,
275        'name' => $_POST['title']
276        );
277    }
278
279    mass_updates(
280      IMAGES_TABLE,
281      array('primary' => array('id'), 'update' => array('name')),
282      $datas
283      );
284  }
285
286  // date_creation
287  if ('date_creation' == $action)
288  {
289    if (isset($_POST['remove_date_creation']) || empty($_POST['date_creation']))
290    {
291      $date_creation = null;
292    }
293    else
294    {
295      $date_creation = $_POST['date_creation'];
296    }
297
298    $datas = array();
299    foreach ($collection as $image_id)
300    {
301      $datas[] = array(
302        'id' => $image_id,
303        'date_creation' => $date_creation
304        );
305    }
306
307    mass_updates(
308      IMAGES_TABLE,
309      array('primary' => array('id'), 'update' => array('date_creation')),
310      $datas
311      );
312  }
313
314  // privacy_level
315  if ('level' == $action)
316  {
317    $datas = array();
318    foreach ($collection as $image_id)
319    {
320      $datas[] = array(
321        'id' => $image_id,
322        'level' => $_POST['level']
323        );
324    }
325
326    mass_updates(
327      IMAGES_TABLE,
328      array('primary' => array('id'), 'update' => array('level')),
329      $datas
330      );
331
332    if (isset($_SESSION['bulk_manager_filter']['level']))
333    {
334      if ($_POST['level'] < $_SESSION['bulk_manager_filter']['level'])
335      {
336        redirect($redirect_url);
337      }
338    }
339  }
340
341  // add_to_caddie
342  if ('add_to_caddie' == $action)
343  {
344    fill_caddie($collection);
345  }
346
347  // delete
348  if ('delete' == $action)
349  {
350    if (isset($_POST['confirm_deletion']) and 1 == $_POST['confirm_deletion'])
351    {
352      $deleted_count = delete_elements($collection, true);
353      if ($deleted_count > 0)
354      {
355        $_SESSION['page_infos'][] = l10n_dec(
356          '%d photo was deleted', '%d photos were deleted',
357          $deleted_count
358          );
359
360        $redirect_url = get_root_url().'admin.php?page='.$_GET['page'];
361        redirect($redirect_url);
362      }
363      else
364      {
365        $page['errors'][] = l10n('No photo can be deleted');
366      }
367    }
368    else
369    {
370      $page['errors'][] = l10n('You need to confirm deletion');
371    }
372  }
373
374  // synchronize metadata
375  if ('metadata' == $action)
376  {
377    sync_metadata($collection);
378    $page['infos'][] = l10n('Metadata synchronized from file');
379  }
380
381  if ('delete_derivatives' == $action && !empty($_POST['del_derivatives_type']))
382  {
383    $query='SELECT path,representative_ext FROM '.IMAGES_TABLE.'
384  WHERE id IN ('.implode(',', $collection).')';
385    $result = pwg_query($query);
386    while ($info = pwg_db_fetch_assoc($result))
387    {
388      foreach( $_POST['del_derivatives_type'] as $type)
389      {
390        delete_element_derivatives($info, $type);
391      }
392    }
393  }
394
395  if ('generate_derivatives' == $action)
396  {
397    if ($_POST['regenerateSuccess'] != '0')
398    {
399      $page['infos'][] = l10n('%s photos have been regenerated', $_POST['regenerateSuccess']);
400    }
401    if ($_POST['regenerateError'] != '0')
402    {
403      $page['warnings'][] = l10n('%s photos can not be regenerated', $_POST['regenerateError']);
404    }
405  }
406
407  trigger_action('element_set_global_action', $action, $collection);
408}
409
410// +-----------------------------------------------------------------------+
411// |                             template init                             |
412// +-----------------------------------------------------------------------+
413$template->set_filenames(array('batch_manager_global' => 'batch_manager_global.tpl'));
414
415$base_url = get_root_url().'admin.php';
416
417$prefilters = array(
418  array('ID' => 'caddie', 'NAME' => l10n('Caddie')),
419  array('ID' => 'favorites', 'NAME' => l10n('Your favorites')),
420  array('ID' => 'last_import', 'NAME' => l10n('Last import')),
421  array('ID' => 'no_album', 'NAME' => l10n('With no album')),
422  array('ID' => 'no_tag', 'NAME' => l10n('With no tag')),
423  array('ID' => 'duplicates', 'NAME' => l10n('Duplicates')),
424  array('ID' => 'all_photos', 'NAME' => l10n('All'))
425);
426
427if ($conf['enable_synchronization'])
428{
429  $prefilters[] = array('ID' => 'no_virtual_album', 'NAME' => l10n('With no virtual album'));
430}
431
432$prefilters = trigger_event('get_batch_manager_prefilters', $prefilters);
433usort($prefilters, 'UC_name_compare');
434
435$template->assign(
436  array(
437    'prefilters' => $prefilters,
438    'filter' => $_SESSION['bulk_manager_filter'],
439    'selection' => $collection,
440    'all_elements' => $page['cat_elements_id'],
441    'START' => $page['start'],
442    'U_DISPLAY'=>$base_url.get_query_string_diff(array('display')),
443    'F_ACTION'=>$base_url.get_query_string_diff(array('cat','start','tag','filter')),
444   )
445 );
446
447// +-----------------------------------------------------------------------+
448// |                            caddie options                             |
449// +-----------------------------------------------------------------------+
450$template->assign('IN_CADDIE', 'caddie' == $page['prefilter']);
451
452
453// +-----------------------------------------------------------------------+
454// |                           global mode form                            |
455// +-----------------------------------------------------------------------+
456
457// privacy level
458foreach ($conf['available_permission_levels'] as $level)
459{
460  $level_options[$level] = l10n(sprintf('Level %d', $level));
461
462  if (0 == $level)
463  {
464    $level_options[$level] = l10n('Everybody');
465  }
466}
467$template->assign(
468  array(
469    'filter_level_options'=> $level_options,
470    'filter_level_options_selected' => isset($_SESSION['bulk_manager_filter']['level'])
471    ? $_SESSION['bulk_manager_filter']['level']
472    : 0,
473    )
474  );
475
476// tags
477if (!empty($_SESSION['bulk_manager_filter']['tags']))
478{
479  $query = '
480SELECT
481    id,
482    name
483  FROM '.TAGS_TABLE.'
484  WHERE id IN ('.implode(',', $_SESSION['bulk_manager_filter']['tags']).')
485;';
486  $template->assign('filter_tags', get_taglist($query));
487}
488
489// Virtualy associate a picture to a category
490$query = '
491SELECT id,name,uppercats,global_rank
492  FROM '.CATEGORIES_TABLE.'
493;';
494$categories = array_from_query($query);
495usort($categories, 'global_rank_compare');
496display_select_categories($categories, array(), 'category_full_name_options', true);
497
498$template->assign('category_parent_options', $template->get_template_vars('category_full_name_options'));
499$template->assign('category_parent_options_selected', array());
500
501// in the filter box, which category to select by default
502$selected_category = array();
503
504if (isset($_SESSION['bulk_manager_filter']['category']))
505{
506  $selected_category = array($_SESSION['bulk_manager_filter']['category']);
507}
508else
509{
510  // we need to know the category in which the last photo was added
511  $query = '
512SELECT
513    category_id,
514    id_uppercat
515  FROM '.IMAGES_TABLE.' AS i
516    JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON image_id = i.id
517    JOIN '.CATEGORIES_TABLE.' AS c ON category_id = c.id
518  ORDER BY i.id DESC
519  LIMIT 1
520;';
521  $result = pwg_query($query);
522  if (pwg_db_num_rows($result) > 0)
523  {
524    $row = pwg_db_fetch_assoc($result);
525    $selected_category = array($row['category_id']);
526  }
527}
528
529$template->assign( 'filter_category_selected', $selected_category);
530
531// Dissociate from a category : categories listed for dissociation can only
532// represent virtual links. We can't create orphans. Links to physical
533// categories can't be broken.
534if (count($page['cat_elements_id']) > 0)
535{
536  $query = '
537SELECT
538    DISTINCT(category_id) AS id,
539    c.name,
540    c.uppercats,
541    c.global_rank
542  FROM '.IMAGE_CATEGORY_TABLE.' AS ic
543    JOIN '.CATEGORIES_TABLE.' AS c ON c.id = ic.category_id
544    JOIN '.IMAGES_TABLE.' AS i ON i.id = ic.image_id
545  WHERE ic.image_id IN ('.implode(',', $page['cat_elements_id']).')
546    AND (
547      ic.category_id != i.storage_category_id
548      OR i.storage_category_id IS NULL
549    )
550;';
551  display_select_cat_wrapper($query, array(), 'dissociate_options', true);
552}
553
554if (count($page['cat_elements_id']) > 0)
555{
556  // remove tags
557  $template->assign('associated_tags', get_common_tags($page['cat_elements_id'], -1));
558}
559
560// creation date
561$template->assign('DATE_CREATION',
562  empty($_POST['date_creation']) ? date('Y-m-d').' 00:00:00' : $_POST['date_creation']
563  );
564
565// image level options
566$template->assign(
567    array(
568      'level_options'=> get_privacy_level_options(),
569      'level_options_selected' => 0,
570    )
571  );
572
573// metadata
574include_once( PHPWG_ROOT_PATH.'admin/site_reader_local.php');
575$site_reader = new LocalSiteReader('./');
576$used_metadata = implode( ', ', $site_reader->get_metadata_attributes());
577
578$template->assign(
579    array(
580      'used_metadata' => $used_metadata,
581    )
582  );
583
584//derivatives
585$del_deriv_map = array();
586foreach(ImageStdParams::get_defined_type_map() as $params)
587{
588  $del_deriv_map[$params->type] = l10n($params->type);
589}
590$gen_deriv_map = $del_deriv_map;
591$del_deriv_map[IMG_CUSTOM] = l10n(IMG_CUSTOM);
592$template->assign(
593    array(
594      'del_derivatives_types' => $del_deriv_map,
595      'generate_derivatives_types' => $gen_deriv_map,
596    )
597  );
598
599// +-----------------------------------------------------------------------+
600// |                        global mode thumbnails                         |
601// +-----------------------------------------------------------------------+
602
603// how many items to display on this page
604if (!empty($_GET['display']))
605{
606  if ('all' == $_GET['display'])
607  {
608    $page['nb_images'] = count($page['cat_elements_id']);
609  }
610  else
611  {
612    $page['nb_images'] = intval($_GET['display']);
613  }
614}
615else
616{
617  $page['nb_images'] = 20;
618}
619
620$nb_thumbs_page = 0;
621
622if (count($page['cat_elements_id']) > 0)
623{
624  $nav_bar = create_navigation_bar(
625    $base_url.get_query_string_diff(array('start')),
626    count($page['cat_elements_id']),
627    $page['start'],
628    $page['nb_images']
629    );
630  $template->assign('navbar', $nav_bar);
631
632  $is_category = false;
633  if (isset($_SESSION['bulk_manager_filter']['category'])
634      and !isset($_SESSION['bulk_manager_filter']['category_recursive']))
635  {
636    $is_category = true;
637  }
638
639  if (isset($_SESSION['bulk_manager_filter']['prefilter'])
640      and 'duplicates' == $_SESSION['bulk_manager_filter']['prefilter'])
641  {
642    $conf['order_by'] = ' ORDER BY file, id';
643  }
644
645  $query = '
646SELECT id,path,representative_ext,file,filesize,level,name,width,height,rotation
647  FROM '.IMAGES_TABLE;
648
649  if ($is_category)
650  {
651    $category_info = get_cat_info($_SESSION['bulk_manager_filter']['category']);
652
653    $conf['order_by'] = $conf['order_by_inside_category'];
654    if (!empty($category_info['image_order']))
655    {
656      $conf['order_by'] = ' ORDER BY '.$category_info['image_order'];
657    }
658
659    $query.= '
660    JOIN '.IMAGE_CATEGORY_TABLE.' ON id = image_id';
661  }
662
663  $query.= '
664  WHERE id IN ('.implode(',', $page['cat_elements_id']).')';
665
666  if ($is_category)
667  {
668    $query.= '
669    AND category_id = '.$_SESSION['bulk_manager_filter']['category'];
670  }
671
672  $query.= '
673  '.$conf['order_by'].'
674  LIMIT '.$page['nb_images'].' OFFSET '.$page['start'].'
675;';
676  $result = pwg_query($query);
677
678  $thumb_params = ImageStdParams::get_by_type(IMG_THUMB);
679  // template thumbnail initialization
680  while ($row = pwg_db_fetch_assoc($result))
681  {
682    $nb_thumbs_page++;
683    $src_image = new SrcImage($row);
684
685    $ttitle = render_element_name($row);
686    if ($ttitle != get_name_from_file($row['file']))
687    {
688      $ttitle.= ' ('.$row['file'].')';
689    }
690
691    $template->append(
692      'thumbnails', array_merge($row,
693      array(
694        'thumb' => new DerivativeImage($thumb_params, $src_image),
695        'TITLE' => $ttitle,
696        'FILE_SRC' => DerivativeImage::url(IMG_LARGE, $src_image),
697        'U_EDIT' => get_root_url().'admin.php?page=photo-'.$row['id'],
698        )
699      ));
700  }
701  $template->assign('thumb_params', $thumb_params);
702}
703
704$template->assign(
705  array(
706    'nb_thumbs_page' => $nb_thumbs_page,
707    'nb_thumbs_set' => count($page['cat_elements_id']),
708    )
709  );
710
711trigger_action('loc_end_element_set_global');
712
713//----------------------------------------------------------- sending html code
714$template->assign_var_from_handle('ADMIN_CONTENT', 'batch_manager_global');
715?>
Note: See TracBrowser for help on using the repository browser.