Files
Phraseanet/lib/classes/set/selection.php
Nicolas Le Goff d82adbf109 Bump year to 2015
2015-01-20 14:08:25 +01:00

165 lines
4.5 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2015 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Alchemy\Phrasea\Application;
use Entities\Basket;
/**
*
*
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class set_selection extends set_abstract
{
protected $app;
/**
*
* @return set_selection
*/
public function __construct(Application $app)
{
$this->app = $app;
$this->elements = array();
return $this;
}
/**
*
* @param Basket $Basket
* @return set_selection
*/
public function load_basket(Basket $Basket)
{
foreach ($Basket->getElements() as $basket_element) {
$this->add_element($basket_element->getRecord($this->app));
}
return $this;
}
/**
*
* @param array $rights
* @param array $sbas_rights
*
* @return set_selection
*/
public function grep_authorized(Array $rights = array(), Array $sbas_rights = array())
{
$to_remove = array();
foreach ($this->elements as $id => $record) {
$base_id = $record->get_base_id();
$sbas_id = $record->get_sbas_id();
$record_id = $record->get_record_id();
if (! $rights) {
if ($this->app['authentication']->getUser()->ACL()->has_hd_grant($record)) {
continue;
}
if ($this->app['authentication']->getUser()->ACL()->has_preview_grant($record)) {
continue;
}
if ( ! $this->app['authentication']->getUser()->ACL()->has_access_to_base($base_id)) {
$to_remove[] = $id;
continue;
}
} else {
foreach ($rights as $right) {
if ( ! $this->app['authentication']->getUser()->ACL()->has_right_on_base($base_id, $right)) {
$to_remove[] = $id;
continue;
}
}
foreach ($sbas_rights as $right) {
if ( ! $this->app['authentication']->getUser()->ACL()->has_right_on_sbas($sbas_id, $right)) {
$to_remove[] = $id;
continue;
}
}
}
try {
$connsbas = $record->get_databox()->get_connection();
$sql = 'SELECT record_id
FROM record
WHERE ((status ^ ' . $this->app['authentication']->getUser()->ACL()->get_mask_xor($base_id) . ')
& ' . $this->app['authentication']->getUser()->ACL()->get_mask_and($base_id) . ')=0
AND record_id = :record_id';
$stmt = $connsbas->prepare($sql);
$stmt->execute(array(':record_id' => $record_id));
$num_rows = $stmt->rowCount();
$stmt->closeCursor();
if ($num_rows == 0) {
$to_remove[] = $id;
}
} catch (\Exception $e) {
}
}
foreach ($to_remove as $id) {
unset($this->elements[$id]);
}
return $this;
}
/**
*
* @param array $lst
* @param Boolean $flatten_groupings
*
* @return set_selection
*/
public function load_list(Array $lst, $flatten_groupings = false)
{
foreach ($lst as $basrec) {
$basrec = explode('_', $basrec);
if (count($basrec) == 2) {
try {
$record = new record_adapter($this->app, (int) $basrec[0], (int) $basrec[1], count($this->elements));
} catch (\Exception $e) {
continue;
}
if ($record->is_grouping() && $flatten_groupings === true) {
foreach ($record->get_children() as $rec) {
$this->add_element($rec);
}
} else {
$this->add_element($record);
}
}
}
return $this;
}
/**
*
* @return array
*/
public function get_distinct_sbas_ids()
{
$ret = array();
foreach ($this->elements as $record) {
$sbas_id = phrasea::sbasFromBas($this->app, $record->get_base_id());
$ret[$sbas_id] = $sbas_id;
}
return $ret;
}
}