. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Controllers; use Espo\Core\Exceptions\BadRequest; use Espo\Core\Exceptions\Error; use Espo\Core\Exceptions\Forbidden; use Espo\Core\Acl; use Espo\Core\Api\Request; use Espo\Core\Exceptions\NotFound; use Espo\Entities\Template as TemplateEntity; use Espo\Tools\Pdf\MassService; use stdClass; class Pdf { private MassService $service; private Acl $acl; public function __construct(MassService $service, Acl $acl) { $this->service = $service; $this->acl = $acl; } /** * @throws BadRequest * @throws Forbidden * @throws Error * @throws NotFound */ public function postActionMassPrint(Request $request): stdClass { $data = $request->getParsedBody(); if (empty($data->idList) || !is_array($data->idList)) { throw new BadRequest(); } if (empty($data->entityType)) { throw new BadRequest(); } if (empty($data->templateId)) { throw new BadRequest(); } if (!$this->acl->checkScope(TemplateEntity::ENTITY_TYPE)) { throw new Forbidden(); } if (!$this->acl->checkScope($data->entityType)) { throw new Forbidden(); } $id = $this->service->generate($data->entityType, $data->idList, $data->templateId); return (object) [ 'id' => $id, ]; } }