Ojs\ApiBundle\Controller\Journal\JournalArticleRestController::patchArticleAction PHP Method

patchArticleAction() public method

Update existing journal_article from the submitted data or create a new journal_article at a specific location.
public patchArticleAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View
$request Symfony\Component\HttpFoundation\Request the request object
$id integer the journal_article id
return Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View
    public function patchArticleAction(Request $request, $id)
    {
        $journal = $this->get('ojs.journal_service')->getSelectedJournal();
        if (!$this->isGranted('EDIT', $journal, 'articles')) {
            throw new AccessDeniedException();
        }
        try {
            $journalService = $this->container->get('ojs.journal_service');
            $entity = $this->container->get('ojs_api.journal_article.handler')->patch($this->getOr404($id), $request->request->all());
            $routeOptions = array('id' => $entity->getId(), 'journalId' => $journalService->getSelectedJournal()->getId(), '_format' => $request->get('_format'));
            return $this->routeRedirectView('api_1_get_article', $routeOptions, Codes::HTTP_NO_CONTENT);
        } catch (InvalidFormException $exception) {
            return $exception->getForm();
        }
    }