source: trunk/admin/batch_manager.php @ 17289

Last change on this file since 17289 was 17289, checked in by rvelices, 12 years ago

batch manager improvements/fixes:

  • when refreshing photo set, start is set to 0 (otherwise if the new set is smaller that start, it looks like it is empty)
  • correct positioning of thumbnails (width/height) is done in template instead of javascript (immediate instead on ready + no reflows)
  • less space lost on batch manager page
  • fix wrong page title in batch manager because of global variable $title overriden
  • fix language keys in element_set_ranks (capital/lowercase issue)
File size: 10.7 KB
RevLine 
[8394]1<?php
2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[8394]4// +-----------------------------------------------------------------------+
[12922]5// | Copyright(C) 2008-2012 Piwigo Team                  http://piwigo.org |
[8394]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');
[8413]36include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
[8394]37
38// +-----------------------------------------------------------------------+
39// | Check Access and exit when user status is not ok                      |
40// +-----------------------------------------------------------------------+
41
42check_status(ACCESS_ADMINISTRATOR);
43
44check_input_parameter('selection', $_POST, true, PATTERN_ID);
45
46// +-----------------------------------------------------------------------+
47// |                      initialize current set                           |
48// +-----------------------------------------------------------------------+
49
50if (isset($_POST['submitFilter']))
51{
52  // echo '<pre>'; print_r($_POST); echo '</pre>';
[17289]53  unset($_REQUEST['start']); // new photo set must reset the page
[8394]54  $_SESSION['bulk_manager_filter'] = array();
55
56  if (isset($_POST['filter_prefilter_use']))
57  {
[10354]58    $_SESSION['bulk_manager_filter']['prefilter'] = $_POST['filter_prefilter'];
[8394]59  }
60
61  if (isset($_POST['filter_category_use']))
62  {
63    $_SESSION['bulk_manager_filter']['category'] = $_POST['filter_category'];
64
65    if (isset($_POST['filter_category_recursive']))
66    {
67      $_SESSION['bulk_manager_filter']['category_recursive'] = true;
68    }
69  }
70
[11853]71  if (isset($_POST['filter_tags_use']))
72  {
73    $_SESSION['bulk_manager_filter']['tags'] = get_tag_ids($_POST['filter_tags'], false);
[12630]74
75    if (isset($_POST['tag_mode']) and in_array($_POST['tag_mode'], array('AND', 'OR')))
76    {
77      $_SESSION['bulk_manager_filter']['tag_mode'] = $_POST['tag_mode'];
78    }
[11853]79  }
80
[8394]81  if (isset($_POST['filter_level_use']))
82  {
83    if (in_array($_POST['filter_level'], $conf['available_permission_levels']))
84    {
85      $_SESSION['bulk_manager_filter']['level'] = $_POST['filter_level'];
[13646]86     
87      if (isset($_POST['filter_level_include_lower']))
88      {
89        $_SESSION['bulk_manager_filter']['level_include_lower'] = true;
90      }
[8394]91    }
92  }
93}
94
95if (isset($_GET['cat']))
96{
97  if ('caddie' == $_GET['cat'])
98  {
99    $_SESSION['bulk_manager_filter'] = array(
100      'prefilter' => 'caddie'
101      );
102  }
103
[8423]104  if ('recent' == $_GET['cat'])
105  {
106    $_SESSION['bulk_manager_filter'] = array(
107      'prefilter' => 'last import'
108      );
109  }
110
[8394]111  if (is_numeric($_GET['cat']))
112  {
113    $_SESSION['bulk_manager_filter'] = array(
114      'category' => $_GET['cat']
115      );
116  }
117}
118
119if (!isset($_SESSION['bulk_manager_filter']))
120{
121  $_SESSION['bulk_manager_filter'] = array(
122    'prefilter' => 'caddie'
123    );
124}
125
126// echo '<pre>'; print_r($_SESSION['bulk_manager_filter']); echo '</pre>';
127
128// depending on the current filter (in session), we find the appropriate
129// photos
130$filter_sets = array();
131if (isset($_SESSION['bulk_manager_filter']['prefilter']))
132{
133  if ('caddie' == $_SESSION['bulk_manager_filter']['prefilter'])
134  {
135    $query = '
136SELECT element_id
137  FROM '.CADDIE_TABLE.'
138  WHERE user_id = '.$user['id'].'
139;';
140    array_push(
141      $filter_sets,
142      array_from_query($query, 'element_id')
143      );
144  }
145
146  if ('last import'== $_SESSION['bulk_manager_filter']['prefilter'])
147  {
148    $query = '
149SELECT MAX(date_available) AS date
150  FROM '.IMAGES_TABLE.'
151;';
152    $row = pwg_db_fetch_assoc(pwg_query($query));
153    if (!empty($row['date']))
154    {
155      $query = '
156SELECT id
157  FROM '.IMAGES_TABLE.'
158  WHERE date_available BETWEEN '.pwg_db_get_recent_period_expression(1, $row['date']).' AND \''.$row['date'].'\'
159;';
160      array_push(
161        $filter_sets,
162        array_from_query($query, 'id')
163        );
164    }
165  }
[8403]166
167  if ('with no virtual album' == $_SESSION['bulk_manager_filter']['prefilter'])
168  {
169    // we are searching elements not linked to any virtual category
170    $query = '
171 SELECT id
172   FROM '.IMAGES_TABLE.'
173 ;';
174    $all_elements = array_from_query($query, 'id');
[9068]175
[8403]176    $query = '
177 SELECT id
178   FROM '.CATEGORIES_TABLE.'
179   WHERE dir IS NULL
180 ;';
181    $virtual_categories = array_from_query($query, 'id');
182    if (!empty($virtual_categories))
183    {
184      $query = '
185 SELECT DISTINCT(image_id)
186   FROM '.IMAGE_CATEGORY_TABLE.'
187   WHERE category_id IN ('.implode(',', $virtual_categories).')
188 ;';
189      $linked_to_virtual = array_from_query($query, 'image_id');
190    }
191
192    array_push(
193      $filter_sets,
194      array_diff($all_elements, $linked_to_virtual)
195      );
196  }
[8404]197
[8419]198  if ('with no album' == $_SESSION['bulk_manager_filter']['prefilter'])
199  {
200    $query = '
201SELECT
202    id
203  FROM '.IMAGES_TABLE.'
204    LEFT JOIN '.IMAGE_CATEGORY_TABLE.' ON id = image_id
205  WHERE category_id is null
206;';
207    array_push(
208      $filter_sets,
209      array_from_query($query, 'id')
210      );
211  }
212
[8422]213  if ('with no tag' == $_SESSION['bulk_manager_filter']['prefilter'])
214  {
215    $query = '
216SELECT
217    id
218  FROM '.IMAGES_TABLE.'
219    LEFT JOIN '.IMAGE_TAG_TABLE.' ON id = image_id
220  WHERE tag_id is null
221;';
222    array_push(
223      $filter_sets,
224      array_from_query($query, 'id')
225      );
226  }
227
228
[8404]229  if ('duplicates' == $_SESSION['bulk_manager_filter']['prefilter'])
230  {
231    // we could use the group_concat MySQL function to retrieve the list of
232    // image_ids but it would not be compatible with PostgreSQL, so let's
233    // perform 2 queries instead. We hope there are not too many duplicates.
[9068]234
[8404]235    $query = '
236SELECT file
237  FROM '.IMAGES_TABLE.'
238  GROUP BY file
239  HAVING COUNT(*) > 1
240;';
241    $duplicate_files = array_from_query($query, 'file');
[9068]242
[8404]243    $query = '
244SELECT id
245  FROM '.IMAGES_TABLE.'
246  WHERE file IN (\''.implode("','", $duplicate_files).'\')
247;';
248
249    array_push(
250      $filter_sets,
251      array_from_query($query, 'id')
252      );
253  }
[9912]254
255  if ('all photos' == $_SESSION['bulk_manager_filter']['prefilter'])
256  {
257    $query = '
258SELECT id
259  FROM '.IMAGES_TABLE.'
[14689]260  '.$conf['order_by'];
[9912]261
[14689]262    $filter_sets[] = array_from_query($query, 'id');
[9912]263  }
[10354]264
[10380]265  $filter_sets = trigger_event('perform_batch_manager_prefilters', $filter_sets, $_SESSION['bulk_manager_filter']['prefilter']);
[8394]266}
267
268if (isset($_SESSION['bulk_manager_filter']['category']))
269{
270  $categories = array();
[9068]271
[8394]272  if (isset($_SESSION['bulk_manager_filter']['category_recursive']))
273  {
274    $categories = get_subcat_ids(array($_SESSION['bulk_manager_filter']['category']));
275  }
276  else
277  {
278    $categories = array($_SESSION['bulk_manager_filter']['category']);
279  }
[9068]280
[8394]281  $query = '
282 SELECT DISTINCT(image_id)
283   FROM '.IMAGE_CATEGORY_TABLE.'
284   WHERE category_id IN ('.implode(',', $categories).')
285 ;';
286  array_push(
287    $filter_sets,
288    array_from_query($query, 'image_id')
289    );
290}
291
292if (isset($_SESSION['bulk_manager_filter']['level']))
293{
[13646]294  $operator = '=';
295  if (isset($_SESSION['bulk_manager_filter']['level_include_lower']))
296  {
297    $operator = '<=';
298  }
299 
[8394]300  $query = '
301SELECT id
302  FROM '.IMAGES_TABLE.'
[13646]303  WHERE level '.$operator.' '.$_SESSION['bulk_manager_filter']['level'].'
[14689]304  '.$conf['order_by'];
305
306  $filter_sets[] = array_from_query($query, 'id');
[8394]307}
308
[11853]309if (!empty($_SESSION['bulk_manager_filter']['tags']))
310{
[12630]311  array_push(
[11853]312    $filter_sets,
[12630]313    get_image_ids_for_tags(
314      $_SESSION['bulk_manager_filter']['tags'],
315      $_SESSION['bulk_manager_filter']['tag_mode'],
316      null,
317      null,
318      false // we don't apply permissions in administration screens
319      )
320    );
[11853]321}
322
[8394]323$current_set = array_shift($filter_sets);
324foreach ($filter_sets as $set)
325{
326  $current_set = array_intersect($current_set, $set);
327}
328$page['cat_elements_id'] = $current_set;
329
330// +-----------------------------------------------------------------------+
331// |                       first element to display                        |
332// +-----------------------------------------------------------------------+
333
334// $page['start'] contains the number of the first element in its
335// category. For exampe, $page['start'] = 12 means we must show elements #12
336// and $page['nb_images'] next elements
337
[17289]338if (!isset($_REQUEST['start'])
339    or !is_numeric($_REQUEST['start'])
340    or $_REQUEST['start'] < 0
341    or (isset($_REQUEST['display']) and 'all' == $_REQUEST['display']))
[8394]342{
343  $page['start'] = 0;
344}
345else
346{
[17289]347  $page['start'] = $_REQUEST['start'];
[8394]348}
349
350// +-----------------------------------------------------------------------+
[8413]351// |                                 Tabs                                  |
[8394]352// +-----------------------------------------------------------------------+
[16928]353$manager_link = get_root_url().'admin.php?page=batch_manager&amp;mode=';
[8394]354
[9068]355if (isset($_GET['mode']))
[8394]356{
[8413]357  $page['tab'] = $_GET['mode'];
[8394]358}
[8413]359else
360{
[16928]361  $page['tab'] = 'global';
[8413]362}
363
[16928]364$tabsheet = new tabsheet();
365$tabsheet->set_id('batch_manager');
366$tabsheet->select($page['tab']);
367$tabsheet->assign();
[8413]368
369// +-----------------------------------------------------------------------+
[11039]370// |                              tags                                     |
371// +-----------------------------------------------------------------------+
372
373$query = '
[11853]374SELECT id, name
[11039]375  FROM '.TAGS_TABLE.'
376;';
[12259]377$template->assign('tags', get_taglist($query, false));
[11039]378
379// +-----------------------------------------------------------------------+
[8413]380// |                         open specific mode                            |
381// +-----------------------------------------------------------------------+
382
[16928]383include(PHPWG_ROOT_PATH.'admin/batch_manager_'.$page['tab'].'.php');
[9068]384?>
Note: See TracBrowser for help on using the repository browser.