![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/plugins/MauticCrmBundle/Controller/ |
<?php namespace MauticPlugin\MauticCrmBundle\Controller; use Mautic\CoreBundle\Controller\CommonController; use Mautic\PluginBundle\Helper\IntegrationHelper; use MauticPlugin\MauticCrmBundle\Integration\HubspotIntegration; use Psr\Log\LoggerInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; class PublicController extends CommonController { public function contactDataAction(Request $request, LoggerInterface $mauticLogger, IntegrationHelper $integrationHelper): Response { $content = $request->getContent(); if (!empty($content)) { $data = json_decode($content, true); // 2nd param to get as array } else { return new Response('ERROR'); } $integration = 'Hubspot'; $integrationObject = $integrationHelper->getIntegrationObject($integration); \assert($integrationObject instanceof HubspotIntegration); foreach ($data as $info) { $object = explode('.', $info['subscriptionType']); $id = $info['objectId']; try { switch ($object[0]) { case 'contact': $executed = []; $integrationObject->getLeads($id, null, $executed); break; case 'company': $integrationObject->getCompanies($id); break; } } catch (\Exception $ex) { $mauticLogger->log('error', 'ERROR on Hubspot webhook: '.$ex->getMessage()); } } return new Response('OK'); } }