Spaces:
No application file
No application file
File size: 4,716 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
<?php
namespace Mautic\FormBundle\Controller\Api;
use Doctrine\Persistence\ManagerRegistry;
use Mautic\ApiBundle\Controller\CommonApiController;
use Mautic\ApiBundle\Helper\EntityResultHelper;
use Mautic\CoreBundle\Factory\MauticFactory;
use Mautic\CoreBundle\Factory\ModelFactory;
use Mautic\CoreBundle\Helper\AppVersion;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Translation\Translator;
use Mautic\FormBundle\Entity\Form;
use Mautic\FormBundle\Entity\Submission;
use Mautic\FormBundle\Model\SubmissionModel;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\RouterInterface;
/**
* @extends CommonApiController<Submission>
*/
class SubmissionApiController extends CommonApiController
{
public function __construct(CorePermissions $security, Translator $translator, EntityResultHelper $entityResultHelper, RouterInterface $router, FormFactoryInterface $formFactory, AppVersion $appVersion, RequestStack $requestStack, ManagerRegistry $doctrine, ModelFactory $modelFactory, EventDispatcherInterface $dispatcher, CoreParametersHelper $coreParametersHelper, MauticFactory $factory)
{
$formSubmissionModel = $modelFactory->getModel('form.submission');
\assert($formSubmissionModel instanceof SubmissionModel);
$this->model = $formSubmissionModel;
$this->entityClass = Submission::class;
$this->entityNameOne = 'submission';
$this->entityNameMulti = 'submissions';
$this->permissionBase = 'form:forms';
$this->serializerGroups = ['submissionDetails', 'formList', 'ipAddressList', 'leadBasicList', 'pageList'];
parent::__construct($security, $translator, $entityResultHelper, $router, $formFactory, $appVersion, $requestStack, $doctrine, $modelFactory, $dispatcher, $coreParametersHelper, $factory);
}
/**
* Obtains a list of entities as defined by the API URL.
*
* @param int $formId
*
* @return Response
*/
public function getEntitiesAction(Request $request, UserHelper $userHelper, $formId = null)
{
$form = $this->getFormOrResponseWithError($formId);
if ($form instanceof Response) {
return $form;
}
$this->extraGetEntitiesArguments = array_merge(
$this->extraGetEntitiesArguments,
[
'form' => $form,
'flatten_results' => true,
'return_entities' => true,
]
);
return parent::getEntitiesAction($request, $userHelper);
}
/**
* Obtains a list of entities for specific form and contact.
*
* @param int $formId
* @param int $contactId
*
* @return Response
*/
public function getEntitiesForContactAction(Request $request, UserHelper $userHelper, $formId, $contactId)
{
$filter = [
'filter' => [
'where' => [
[
'col' => 's.lead_id',
'expr' => 'eq',
'val' => (int) $contactId,
],
],
],
];
$this->extraGetEntitiesArguments = array_merge($this->extraGetEntitiesArguments, $filter);
return $this->getEntitiesAction($request, $userHelper, $formId);
}
/**
* Obtains a specific entity as defined by the API URL.
*
* @return Response
*/
public function getEntityAction(Request $request, $formId = null, $submissionId = null)
{
$form = $this->getFormOrResponseWithError($formId);
if ($form instanceof Response) {
return $form;
}
return parent::getEntityAction($request, $submissionId);
}
/**
* Tries to fetch the form and returns Response if
* - Form not found
* - User doesn't have permission to view it.
*
* Returns Form on success
*
* @param int $formId
*
* @return Response|Form
*/
protected function getFormOrResponseWithError($formId)
{
$formModel = $this->getModel('form');
$form = $formModel->getEntity($formId);
if (!$form) {
return $this->notFound();
}
if (!$this->checkEntityAccess($form)) {
return $this->accessDenied();
}
return $form;
}
}
|