. * * 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\Modules\Crm\Tools\Campaign\Api; use Espo\Core\Acl; use Espo\Core\Acl\Table; use Espo\Core\Api\Action; use Espo\Core\Api\Request; use Espo\Core\Api\Response; use Espo\Core\Api\ResponseComposer; use Espo\Core\Exceptions\BadRequest; use Espo\Core\Exceptions\Forbidden; use Espo\Modules\Crm\Entities\Campaign; use Espo\Modules\Crm\Tools\Campaign\MailMergeService; /** * Generates mail merge PDFs. */ class PostGenerateMailMerge implements Action { public function __construct( private MailMergeService $service, private Acl $acl ) {} public function process(Request $request): Response { $id = $request->getRouteParam('id'); $link = $request->getParsedBody()->link ?? null; if (!$id) { throw new BadRequest(); } if (!$link) { throw new BadRequest("No `link`."); } if (!$this->acl->checkScope(Campaign::ENTITY_TYPE, Table::ACTION_READ)) { throw new Forbidden(); } $attachmentId = $this->service->generate($id, $link); return ResponseComposer::json(['id' => $attachmentId]); } }