mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00

- Squashed Pull request #1730 - Squashed Pull request #1741 - Squashed Pull request #1742 - Squash merge branch 4.0 - Squashed Pull request #1744 - Squashed Pull request #1746 - Squashed merge branch 4.0 - Squashed merge branch 4.0 - Squashed merge branch 4.0 - Squashed merge branch 4.0 - Squashed Pull request #1758 - Avoid using imagine/imagine alias as it is causing install issues - Squashed merge branch 4.0 - Squashed Pull request #1763 - Squashed merge branch 4.0 - Squash of 6 commits - Squashed merge branch 4.0 - This is a combination of 2 commits. - Squashed Pull request #1775 - Squashed Pull request #1777 - Squashed Pull request #1779 - Squashed Pull request #1780 - Squashed Pull request #1782 - Adds a Pull request template - Squased Pull request #1783 - Squash Pull request #1786 - Squashed Pull request #1796 - Squashed merge branch 4.0 - Squash Pull request #1791 - Squashed merge branch 4.0 - Squashed Pull request #1808 - Squashed Pull request #1811 - Squashed Pull request #1809
220 lines
7.2 KiB
PHP
220 lines
7.2 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2016 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace Alchemy\Phrasea\Controller\Prod;
|
|
|
|
use Alchemy\Phrasea\Application\Helper\DispatcherAware;
|
|
use Alchemy\Phrasea\Application\Helper\EntityManagerAware;
|
|
use Alchemy\Phrasea\Controller\Controller;
|
|
use Alchemy\Phrasea\Controller\RecordsRequest;
|
|
use Alchemy\Phrasea\Controller\Exception as ControllerException;
|
|
use Alchemy\Phrasea\Core\Event\RecordEdit;
|
|
use Alchemy\Phrasea\Core\PhraseaEvents;
|
|
use Alchemy\Phrasea\Model\Entities\StoryWZ;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
|
|
class StoryController extends Controller
|
|
{
|
|
use DispatcherAware;
|
|
use EntityManagerAware;
|
|
|
|
public function displayCreateFormAction()
|
|
{
|
|
return $this->render('prod/Story/Create.html.twig', []);
|
|
}
|
|
|
|
public function postCreateFormAction(Request $request)
|
|
{
|
|
$collection = \collection::getByBaseId($this->app, $request->request->get('base_id'));
|
|
|
|
if (!$this->getAclForUser()->has_right_on_base($collection->get_base_id(), 'canaddrecord')) {
|
|
throw new AccessDeniedHttpException('You can not create a story on this collection');
|
|
}
|
|
|
|
$story = \record_adapter::createStory($this->app, $collection);
|
|
$records = RecordsRequest::fromRequest($this->app, $request, true);
|
|
|
|
foreach ($records as $record) {
|
|
if ($story->hasChild($record)) {
|
|
continue;
|
|
}
|
|
|
|
$story->appendChild($record);
|
|
}
|
|
|
|
$metadatas = [];
|
|
|
|
foreach ($collection->get_databox()->get_meta_structure() as $meta) {
|
|
if ($meta->get_thumbtitle()) {
|
|
$value = $request->request->get('name');
|
|
} else {
|
|
continue;
|
|
}
|
|
|
|
$metadatas[] = [
|
|
'meta_struct_id' => $meta->get_id(),
|
|
'meta_id' => null,
|
|
'value' => $value,
|
|
];
|
|
|
|
break;
|
|
}
|
|
|
|
$story->set_metadatas($metadatas)->rebuild_subdefs();
|
|
|
|
$storyWZ = new StoryWZ();
|
|
$storyWZ->setUser($this->getAuthenticatedUser());
|
|
$storyWZ->setRecord($story);
|
|
|
|
$manager = $this->getEntityManager();
|
|
$manager->persist($storyWZ);
|
|
$manager->flush();
|
|
|
|
if ($request->getRequestFormat() == 'json') {
|
|
$data = [
|
|
'success' => true,
|
|
'message' => $this->app->trans('Story created'),
|
|
'WorkZone' => $storyWZ->getId(),
|
|
'story' => [
|
|
'sbas_id' => $story->getDataboxId(),
|
|
'record_id' => $story->getRecordId(),
|
|
],
|
|
];
|
|
|
|
return $this->app->json($data);
|
|
}
|
|
|
|
return $this->app->redirectPath('prod_stories_story', [
|
|
'sbas_id' => $storyWZ->getSbasId(),
|
|
'record_id' => $storyWZ->getRecordId(),
|
|
]);
|
|
}
|
|
|
|
public function showAction($sbas_id, $record_id)
|
|
{
|
|
$story = new \record_adapter($this->app, $sbas_id, $record_id);
|
|
|
|
return $this->renderResponse('prod/WorkZone/Story.html.twig', ['Story' => $story]);
|
|
}
|
|
|
|
public function addElementsAction(Request $request, $sbas_id, $record_id)
|
|
{
|
|
$Story = new \record_adapter($this->app, $sbas_id, $record_id);
|
|
|
|
if (!$this->getAclForUser()->has_right_on_base($Story->getBaseId(), 'canmodifrecord')) {
|
|
throw new AccessDeniedHttpException('You can not add document to this Story');
|
|
}
|
|
|
|
$n = 0;
|
|
|
|
$records = RecordsRequest::fromRequest($this->app, $request, true);
|
|
|
|
foreach ($records as $record) {
|
|
if ($Story->hasChild($record)) {
|
|
continue;
|
|
}
|
|
|
|
$Story->appendChild($record);
|
|
$n++;
|
|
}
|
|
|
|
$this->dispatch(PhraseaEvents::RECORD_EDIT, new RecordEdit($Story));
|
|
|
|
$data = [
|
|
'success' => true,
|
|
'message' => $this->app->trans('%quantity% records added', ['%quantity%' => $n]),
|
|
];
|
|
|
|
if ($request->getRequestFormat() == 'json') {
|
|
return $this->app->json($data);
|
|
}
|
|
|
|
return $this->app->redirectPath('prod_stories_story', ['sbas_id' => $sbas_id, 'record_id' => $record_id]);
|
|
}
|
|
|
|
public function removeElementAction(Request $request, $sbas_id, $record_id, $child_sbas_id, $child_record_id)
|
|
{
|
|
$story = new \record_adapter($this->app, $sbas_id, $record_id);
|
|
$record = new \record_adapter($this->app, $child_sbas_id, $child_record_id);
|
|
|
|
if (!$this->getAclForUser()->has_right_on_base($story->getBaseId(), 'canmodifrecord')) {
|
|
throw new AccessDeniedHttpException('You can not add document to this Story');
|
|
}
|
|
|
|
$story->removeChild($record);
|
|
|
|
$data = [
|
|
'success' => true,
|
|
'message' => $this->app->trans('Record removed from story'),
|
|
];
|
|
|
|
|
|
$this->dispatch(PhraseaEvents::RECORD_EDIT, new RecordEdit($story));
|
|
|
|
if ($request->getRequestFormat() == 'json') {
|
|
return $this->app->json($data);
|
|
}
|
|
|
|
return $this->app->redirectPath('prod_stories_story', ['sbas_id' => $sbas_id, 'record_id' => $record_id]);
|
|
}
|
|
|
|
public function displayReorderFormAction($sbas_id, $record_id)
|
|
{
|
|
$story = new \record_adapter($this->app, $sbas_id, $record_id);
|
|
|
|
if (!$story->isStory()) {
|
|
throw new \Exception('This is not a story');
|
|
}
|
|
|
|
return $this->renderResponse('prod/Story/Reorder.html.twig', [
|
|
'story' => $story,
|
|
]);
|
|
}
|
|
|
|
public function reorderAction(Request $request, $sbas_id, $record_id)
|
|
{
|
|
try {
|
|
$story = new \record_adapter($this->app, $sbas_id, $record_id);
|
|
|
|
if (!$story->isStory()) {
|
|
throw new \Exception('This is not a story');
|
|
}
|
|
|
|
if (!$this->getAclForUser()->has_right_on_base($story->getBaseId(), 'canmodifrecord')) {
|
|
throw new ControllerException($this->app->trans('You can not edit this story'));
|
|
}
|
|
|
|
$sql = 'UPDATE regroup SET ord = :ord WHERE rid_parent = :parent_id AND rid_child = :children_id';
|
|
$stmt = $story->getDatabox()->get_connection()->prepare($sql);
|
|
|
|
foreach ($request->request->get('element') as $record_id => $ord) {
|
|
$params = [
|
|
':ord' => $ord,
|
|
':parent_id' => $story->getRecordId(),
|
|
':children_id' => $record_id
|
|
];
|
|
$stmt->execute($params);
|
|
}
|
|
|
|
$stmt->closeCursor();
|
|
|
|
$this->dispatch(PhraseaEvents::RECORD_EDIT, new RecordEdit($story));
|
|
$ret = ['success' => true, 'message' => $this->app->trans('Story updated')];
|
|
} catch (ControllerException $e) {
|
|
$ret = ['success' => false, 'message' => $e->getMessage()];
|
|
} catch (\Exception $e) {
|
|
$ret = ['success' => false, 'message' => $this->app->trans('An error occured')];
|
|
}
|
|
|
|
return $this->app->json($ret);
|
|
}
|
|
}
|