2010-12-30 15:36:02 +01:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
2011-01-18 01:02:52 +01:00
|
|
|
// | Piwigo - a PHP based photo gallery |
|
2010-12-30 15:36:02 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2011-01-18 01:02:52 +01:00
|
|
|
// | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
|
2010-12-30 15:36:02 +01:00
|
|
|
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
|
|
|
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
|
|
// | the Free Software Foundation |
|
|
|
|
// | |
|
|
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
|
// | General Public License for more details. |
|
|
|
|
// | |
|
|
|
|
// | You should have received a copy of the GNU General Public License |
|
|
|
|
// | along with this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Management of elements set. Elements can belong to a category or to the
|
|
|
|
* user caddie.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
|
|
{
|
|
|
|
die('Hacking attempt!');
|
|
|
|
}
|
|
|
|
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
2010-12-31 16:06:36 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
2010-12-30 15:36:02 +01:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Check Access and exit when user status is not ok |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
check_status(ACCESS_ADMINISTRATOR);
|
|
|
|
|
|
|
|
check_input_parameter('selection', $_POST, true, PATTERN_ID);
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | initialize current set |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
if (isset($_POST['submitFilter']))
|
|
|
|
{
|
|
|
|
// echo '<pre>'; print_r($_POST); echo '</pre>';
|
2011-02-02 21:55:25 +01:00
|
|
|
|
2010-12-30 15:36:02 +01:00
|
|
|
$_SESSION['bulk_manager_filter'] = array();
|
|
|
|
|
|
|
|
if (isset($_POST['filter_prefilter_use']))
|
|
|
|
{
|
2011-04-13 15:16:38 +02:00
|
|
|
$_SESSION['bulk_manager_filter']['prefilter'] = $_POST['filter_prefilter'];
|
2010-12-30 15:36:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['filter_category_use']))
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter']['category'] = $_POST['filter_category'];
|
|
|
|
|
|
|
|
if (isset($_POST['filter_category_recursive']))
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter']['category_recursive'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['filter_level_use']))
|
|
|
|
{
|
|
|
|
if (in_array($_POST['filter_level'], $conf['available_permission_levels']))
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter']['level'] = $_POST['filter_level'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_GET['cat']))
|
|
|
|
{
|
|
|
|
if ('caddie' == $_GET['cat'])
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter'] = array(
|
|
|
|
'prefilter' => 'caddie'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-01-01 15:50:30 +01:00
|
|
|
if ('recent' == $_GET['cat'])
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter'] = array(
|
|
|
|
'prefilter' => 'last import'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-12-30 15:36:02 +01:00
|
|
|
if (is_numeric($_GET['cat']))
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter'] = array(
|
|
|
|
'category' => $_GET['cat']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($_SESSION['bulk_manager_filter']))
|
|
|
|
{
|
|
|
|
$_SESSION['bulk_manager_filter'] = array(
|
|
|
|
'prefilter' => 'caddie'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// echo '<pre>'; print_r($_SESSION['bulk_manager_filter']); echo '</pre>';
|
|
|
|
|
|
|
|
// depending on the current filter (in session), we find the appropriate
|
|
|
|
// photos
|
|
|
|
$filter_sets = array();
|
|
|
|
if (isset($_SESSION['bulk_manager_filter']['prefilter']))
|
|
|
|
{
|
|
|
|
if ('caddie' == $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT element_id
|
|
|
|
FROM '.CADDIE_TABLE.'
|
|
|
|
WHERE user_id = '.$user['id'].'
|
|
|
|
;';
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'element_id')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ('last import'== $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT MAX(date_available) AS date
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
;';
|
|
|
|
$row = pwg_db_fetch_assoc(pwg_query($query));
|
|
|
|
if (!empty($row['date']))
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE date_available BETWEEN '.pwg_db_get_recent_period_expression(1, $row['date']).' AND \''.$row['date'].'\'
|
|
|
|
;';
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'id')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2010-12-31 12:58:14 +01:00
|
|
|
|
|
|
|
if ('with no virtual album' == $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
// we are searching elements not linked to any virtual category
|
|
|
|
$query = '
|
|
|
|
SELECT id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
;';
|
|
|
|
$all_elements = array_from_query($query, 'id');
|
2011-02-02 21:55:25 +01:00
|
|
|
|
2010-12-31 12:58:14 +01:00
|
|
|
$query = '
|
|
|
|
SELECT id
|
|
|
|
FROM '.CATEGORIES_TABLE.'
|
|
|
|
WHERE dir IS NULL
|
|
|
|
;';
|
|
|
|
$virtual_categories = array_from_query($query, 'id');
|
|
|
|
if (!empty($virtual_categories))
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT DISTINCT(image_id)
|
|
|
|
FROM '.IMAGE_CATEGORY_TABLE.'
|
|
|
|
WHERE category_id IN ('.implode(',', $virtual_categories).')
|
|
|
|
;';
|
|
|
|
$linked_to_virtual = array_from_query($query, 'image_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_diff($all_elements, $linked_to_virtual)
|
|
|
|
);
|
|
|
|
}
|
2010-12-31 13:34:01 +01:00
|
|
|
|
2010-12-31 17:43:59 +01:00
|
|
|
if ('with no album' == $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT
|
|
|
|
id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
LEFT JOIN '.IMAGE_CATEGORY_TABLE.' ON id = image_id
|
|
|
|
WHERE category_id is null
|
|
|
|
;';
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'id')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-01-01 15:35:52 +01:00
|
|
|
if ('with no tag' == $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT
|
|
|
|
id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
LEFT JOIN '.IMAGE_TAG_TABLE.' ON id = image_id
|
|
|
|
WHERE tag_id is null
|
|
|
|
;';
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'id')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-31 13:34:01 +01:00
|
|
|
if ('duplicates' == $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
// we could use the group_concat MySQL function to retrieve the list of
|
|
|
|
// image_ids but it would not be compatible with PostgreSQL, so let's
|
|
|
|
// perform 2 queries instead. We hope there are not too many duplicates.
|
2011-02-02 21:55:25 +01:00
|
|
|
|
2010-12-31 13:34:01 +01:00
|
|
|
$query = '
|
|
|
|
SELECT file
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
GROUP BY file
|
|
|
|
HAVING COUNT(*) > 1
|
|
|
|
;';
|
|
|
|
$duplicate_files = array_from_query($query, 'file');
|
2011-02-02 21:55:25 +01:00
|
|
|
|
2010-12-31 13:34:01 +01:00
|
|
|
$query = '
|
|
|
|
SELECT id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE file IN (\''.implode("','", $duplicate_files).'\')
|
|
|
|
;';
|
|
|
|
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'id')
|
|
|
|
);
|
|
|
|
}
|
2011-03-29 11:46:33 +02:00
|
|
|
|
|
|
|
if ('all photos' == $_SESSION['bulk_manager_filter']['prefilter'])
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
;';
|
|
|
|
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'id')
|
|
|
|
);
|
|
|
|
}
|
2011-04-13 15:16:38 +02:00
|
|
|
|
2011-04-15 14:06:55 +02:00
|
|
|
$filter_sets = trigger_event('perform_batch_manager_prefilters', $filter_sets, $_SESSION['bulk_manager_filter']['prefilter']);
|
2010-12-30 15:36:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_SESSION['bulk_manager_filter']['category']))
|
|
|
|
{
|
|
|
|
$categories = array();
|
2011-02-02 21:55:25 +01:00
|
|
|
|
2010-12-30 15:36:02 +01:00
|
|
|
if (isset($_SESSION['bulk_manager_filter']['category_recursive']))
|
|
|
|
{
|
|
|
|
$categories = get_subcat_ids(array($_SESSION['bulk_manager_filter']['category']));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$categories = array($_SESSION['bulk_manager_filter']['category']);
|
|
|
|
}
|
2011-02-02 21:55:25 +01:00
|
|
|
|
2010-12-30 15:36:02 +01:00
|
|
|
$query = '
|
|
|
|
SELECT DISTINCT(image_id)
|
|
|
|
FROM '.IMAGE_CATEGORY_TABLE.'
|
|
|
|
WHERE category_id IN ('.implode(',', $categories).')
|
|
|
|
;';
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'image_id')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_SESSION['bulk_manager_filter']['level']))
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT id
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE level >= '.$_SESSION['bulk_manager_filter']['level'].'
|
|
|
|
;';
|
|
|
|
array_push(
|
|
|
|
$filter_sets,
|
|
|
|
array_from_query($query, 'id')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$current_set = array_shift($filter_sets);
|
|
|
|
foreach ($filter_sets as $set)
|
|
|
|
{
|
|
|
|
$current_set = array_intersect($current_set, $set);
|
|
|
|
}
|
|
|
|
$page['cat_elements_id'] = $current_set;
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | first element to display |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
// $page['start'] contains the number of the first element in its
|
|
|
|
// category. For exampe, $page['start'] = 12 means we must show elements #12
|
|
|
|
// and $page['nb_images'] next elements
|
|
|
|
|
|
|
|
if (!isset($_GET['start'])
|
|
|
|
or !is_numeric($_GET['start'])
|
|
|
|
or $_GET['start'] < 0
|
|
|
|
or (isset($_GET['display']) and 'all' == $_GET['display']))
|
|
|
|
{
|
|
|
|
$page['start'] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$page['start'] = $_GET['start'];
|
|
|
|
}
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
2010-12-31 16:06:36 +01:00
|
|
|
// | Tabs |
|
2010-12-30 15:36:02 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2010-12-31 16:06:36 +01:00
|
|
|
$tabs = array(
|
|
|
|
array(
|
|
|
|
'code' => 'global',
|
|
|
|
'label' => l10n('global mode'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'code' => 'unit',
|
|
|
|
'label' => l10n('unit mode'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$tab_codes = array_map(
|
|
|
|
create_function('$a', 'return $a["code"];'),
|
|
|
|
$tabs
|
|
|
|
);
|
2010-12-30 15:36:02 +01:00
|
|
|
|
2011-02-02 21:55:25 +01:00
|
|
|
if (isset($_GET['mode']))
|
2010-12-30 15:36:02 +01:00
|
|
|
{
|
2010-12-31 16:06:36 +01:00
|
|
|
$page['tab'] = $_GET['mode'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$page['tab'] = $tabs[0]['code'];
|
2010-12-30 15:36:02 +01:00
|
|
|
}
|
2010-12-31 16:06:36 +01:00
|
|
|
|
2011-02-02 21:55:25 +01:00
|
|
|
if (in_array($page['tab'], $tab_codes))
|
2010-12-31 16:06:36 +01:00
|
|
|
{
|
2011-02-02 21:55:25 +01:00
|
|
|
$tabsheet = new tabsheet();
|
|
|
|
foreach ($tabs as $tab)
|
|
|
|
{
|
|
|
|
$tabsheet->add(
|
|
|
|
$tab['code'],
|
|
|
|
$tab['label'],
|
|
|
|
get_root_url().'admin.php?page='.$_GET['page'].'&mode='.$tab['code']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$tabsheet->select($page['tab']);
|
|
|
|
$tabsheet->assign();
|
2010-12-31 16:06:36 +01:00
|
|
|
|
2011-05-25 11:00:46 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | tags |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT
|
|
|
|
id AS tag_id,
|
|
|
|
name AS tag_name
|
|
|
|
FROM '.TAGS_TABLE.'
|
|
|
|
;';
|
|
|
|
$template->assign('tags', get_taglist($query));
|
|
|
|
|
2010-12-31 16:06:36 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | open specific mode |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2011-02-02 21:55:25 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'admin/batch_manager_'.$page['tab'].'.php');
|
|
|
|
}
|
|
|
|
?>
|