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(), \ACL::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; } $recordAdapter = $story->set_metadatas($metadatas); $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(), \ACL::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(), \ACL::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(), \ACL::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); } }