Files
Phraseanet/lib/Alchemy/Phrasea/Controller/RecordsRequest.php
Romain Neutron e233e5afa6 Merge branch '3.8'
Conflicts:
	lib/Alchemy/Phrasea/Command/Developer/JavascriptBuilder.php
	lib/Alchemy/Phrasea/Controller/Prod/Basket.php
	lib/Alchemy/Phrasea/Core/Provider/TaskManagerServiceProvider.php
	lib/classes/Exception/Feed/ItemNotFound.php
	lib/classes/Exception/Feed/PublisherNotFound.php
	lib/classes/Feed/Abstract.php
	lib/classes/Feed/Adapter.php
	lib/classes/Feed/Aggregate.php
	lib/classes/Feed/Collection.php
	lib/classes/Feed/CollectionInterface.php
	lib/classes/Feed/Entry/Adapter.php
	lib/classes/Feed/Entry/Collection.php
	lib/classes/Feed/Entry/Interface.php
	lib/classes/Feed/Entry/Item.php
	lib/classes/Feed/Entry/ItemInterface.php
	lib/classes/Feed/Interface.php
	lib/classes/Feed/Link.php
	lib/classes/Feed/LinkInterface.php
	lib/classes/Feed/Publisher/Adapter.php
	lib/classes/Feed/Publisher/Interface.php
	lib/classes/Feed/Token.php
	lib/classes/Feed/TokenAggregate.php
	lib/classes/Feed/XML/Abstract.php
	lib/classes/Feed/XML/Atom.php
	lib/classes/Feed/XML/Cooliris.php
	lib/classes/Feed/XML/Interface.php
	lib/classes/Feed/XML/RSS.php
	lib/classes/Feed/XML/RSS/ImageInterface.php
	lib/classes/http/request.php
	lib/classes/module/console/schedulerStart.php
	lib/classes/module/console/schedulerState.php
	lib/classes/module/console/schedulerStop.php
	lib/classes/module/console/taskState.php
	lib/classes/module/console/tasklist.php
	lib/classes/module/console/taskrun.php
	lib/classes/registry.php
	lib/classes/registryInterface.php
	lib/classes/set/order.php
	lib/classes/system/url.php
	lib/classes/task/Scheduler.php
	lib/classes/task/appboxAbstract.php
	lib/classes/task/databoxAbstract.php
	lib/classes/task/manager.php
	lib/classes/task/period/RecordMover.php
	lib/classes/task/period/apibridge.php
	lib/classes/task/period/archive.php
	lib/classes/task/period/cindexer.php
	lib/classes/task/period/emptyColl.php
	lib/classes/task/period/ftp.php
	lib/classes/task/period/ftpPull.php
	lib/classes/task/period/subdef.php
	lib/classes/task/period/test.php
	lib/classes/task/period/writemeta.php
	lib/conf.d/PhraseaFixture/AbstractWZ.php
	lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php
	lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php
	lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php
	lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php
	lib/conf.d/PhraseaFixture/Story/LoadOneStory.php
	lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php
	lib/conf.d/PhraseaFixture/UsrLists/UsrList.php
	lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php
	lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php
	lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php
	lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php
	lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php
2014-01-06 15:38:14 +01:00

273 lines
7.7 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2014 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Controller;
use Alchemy\Phrasea\Model\Entities\Basket;
use Doctrine\Common\Collections\ArrayCollection;
use Alchemy\Phrasea\Application;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class RecordsRequest extends ArrayCollection
{
protected $isSingleStory = false;
protected $received;
protected $basket;
protected $databoxes;
protected $collections;
const FLATTEN_NO = false;
const FLATTEN_YES = true;
const FLATTEN_YES_PRESERVE_STORIES = 'preserve';
/**
* Constructor
*
* @param array $elements
* @param ArrayCollection $received
* @param Basket $basket
* @param Boolean $flatten
*/
public function __construct(array $elements, ArrayCollection $received, Basket $basket = null, $flatten = self::FLATTEN_NO)
{
parent::__construct($elements);
$this->received = $received;
$this->basket = $basket;
$this->isSingleStory = ($flatten !== self::FLATTEN_YES && 1 === count($this) && $this->first()->is_grouping());
if (self::FLATTEN_NO !== $flatten) {
$to_remove = [];
foreach ($this as $key => $record) {
if ($record->is_grouping()) {
if (self::FLATTEN_YES === $flatten) {
$to_remove[] = $key;
}
foreach ($record->get_children() as $child) {
$this->set($child->get_serialize_key(), $child);
}
}
}
foreach ($to_remove as $key) {
$this->remove($key);
}
}
$i = 0;
$records = $this->toArray();
array_walk($records, function ($record) use (&$i) {
$record->set_number($i++);
});
}
/**
* Return all distinct databoxes related to the contained records
*
* @return array
*/
public function databoxes()
{
if (!$this->databoxes) {
$this->databoxes = [];
foreach ($this as $record) {
if (false === array_key_exists($record->get_databox()->get_sbas_id(), $this->databoxes)) {
$this->databoxes[$record->get_databox()->get_sbas_id()] = $record->get_databox();
}
}
$this->databoxes = array_values($this->databoxes);
}
return $this->databoxes;
}
/**
* Return all distinct collections related to the contained records
*
* @return array
*/
public function collections()
{
if (!$this->collections) {
$this->collections = [];
foreach ($this as $record) {
if (false === array_key_exists($record->get_base_id(), $this->collections)) {
$this->collections[$record->get_base_id()] = $record->get_collection();
}
}
$this->collections = array_values($this->collections);
}
return $this->collections;
}
/**
* Return all received records
*
* @return ArrayCollection
*/
public function received()
{
return $this->received;
}
/**
* Return basket entity if provided, null otherwise
*
* @return Basket|null
*/
public function basket()
{
return $this->basket;
}
/**
* Filter contents and return only stories
*
* @return ArrayCollection
*/
public function stories()
{
return new ArrayCollection(
array_filter($this->toArray(), function (\record_adapter $record) {
return $record->is_grouping();
})
);
}
/**
* Return true if the request contains a single story
*
* @return Boolean
*/
public function isSingleStory()
{
return $this->isSingleStory;
}
/**
* Return the first story if a single story is contained, null otherwise
*
* @return record_adapter|null
*/
public function singleStory()
{
if ($this->isSingleStory()) {
return $this->first();
}
return null;
}
/**
* Return a serialized list of elements
*
* @return string
*/
public function serializedList()
{
if ($this->isSingleStory()) {
return $this->singleStory()->get_serialize_key();
}
$basrec = [];
foreach ($this as $record) {
$basrec[] = $record->get_serialize_key();
}
return implode(';', $basrec);
}
/**
* Create a new RecordRequest from current request
*
* @param Application $app
* @param Request $request
* @param boolean $flattenStories
* @param array $rightsColl
* @param array $rightsDatabox
* @return RecordsRequest
*/
public static function fromRequest(Application $app, Request $request, $flattenStories = self::FLATTEN_NO, array $rightsColl = [], array $rightsDatabox = [])
{
$elements = $received = [];
$basket = null;
if ($request->get('ssel')) {
$basket = $app['converter.basket']->convert($request->get('ssel'));
$app['acl.basket']->hasAccess($basket, $app['authentication']->getUser());
foreach ($basket->getElements() as $basket_element) {
$received[$basket_element->getRecord($app)->get_serialize_key()] = $basket_element->getRecord($app);
}
} elseif ($request->get('story')) {
$repository = $app['EM']->getRepository('Alchemy\Phrasea\Model\Entities\StoryWZ');
$storyWZ = $repository->findByUserAndId(
$app, $app['authentication']->getUser()
, $request->get('story')
);
$received[$storyWZ->getRecord($app)->get_serialize_key()] = $storyWZ->getRecord($app);
} else {
foreach (explode(";", $request->get('lst')) as $bas_rec) {
$basrec = explode('_', $bas_rec);
if (count($basrec) != 2) {
continue;
}
try {
$record = new \record_adapter($app, (int) $basrec[0], (int) $basrec[1]);
$received[$record->get_serialize_key()] = $record;
unset($record);
} catch (NotFoundHttpException $e) {
continue;
}
}
}
$elements = $received;
$to_remove = [];
foreach ($elements as $id => $record) {
if (!$app['acl']->get($app['authentication']->getUser())->has_access_to_record($record)) {
$to_remove[] = $id;
continue;
}
foreach ($rightsColl as $right) {
if (!$app['acl']->get($app['authentication']->getUser())->has_right_on_base($record->get_base_id(), $right)) {
$to_remove[] = $id;
continue;
}
}
foreach ($rightsDatabox as $right) {
if (!$app['acl']->get($app['authentication']->getUser())->has_right_on_sbas($record->get_sbas_id(), $right)) {
$to_remove[] = $id;
continue;
}
}
}
foreach ($to_remove as $id) {
unset($elements[$id]);
}
return new static($elements, new ArrayCollection($received), $basket, $flattenStories);
}
}