*/ class PointGroupsApiController extends CommonApiController { /** * @var PointGroupModel */ protected $model; /** @phpstan-ignore-next-line the parent class uses the deprecated MauticFactory */ 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, PointGroupModel $pointGroupModel, private LeadModel $leadModel) { $this->model = $pointGroupModel; $this->entityClass = Group::class; $this->entityNameOne = 'pointGroup'; $this->entityNameMulti = 'pointGroups'; $this->serializerGroups = ['pointGroupDetails', 'pointGroupList', 'publishDetails']; parent::__construct($security, $translator, $entityResultHelper, $router, $formFactory, $appVersion, $requestStack, $doctrine, $modelFactory, $dispatcher, $coreParametersHelper, $factory); } public function getContactPointGroupsAction(int $contactId): Response { $contact = $this->leadModel->getEntity($contactId); if (null === $contact) { return $this->notFound($this->translator->trans('mautic.lead.event.api.lead.not.found')); } if (!$this->checkEntityAccess($contact)) { return $this->accessDenied(); } $groupScores = $contact->getGroupScores(); $view = $this->view( [ 'total' => count($groupScores), 'groupScores' => $groupScores, ], Response::HTTP_OK ); $context = $view->getContext()->setGroups(['groupContactScoreDetails', 'pointGroupDetails']); $view->setContext($context); return $this->handleView($view); } public function getContactPointGroupAction(int $contactId, int $groupId): Response { $contact = $this->leadModel->getEntity($contactId); if (null === $contact) { return $this->notFound($this->translator->trans('mautic.lead.event.api.lead.not.found')); } if (!$this->checkEntityAccess($contact)) { return $this->accessDenied(); } $pointGroup = $this->model->getEntity($groupId); if (null === $pointGroup) { return $this->notFound($this->translator->trans('mautic.lead.event.api.point.group.not.found')); } $groupScore = $contact->getGroupScore($pointGroup); $view = $this->view( [ 'groupScore' => $groupScore, ], Response::HTTP_OK ); $context = $view->getContext()->setGroups(['groupContactScoreDetails', 'pointGroupDetails']); $view->setContext($context); return $this->handleView($view); } public function adjustGroupPointsAction(Request $request, IpLookupHelper $ipLookupHelper, int $contactId, int $groupId, string $operator, int $value): Response { $contact = $this->leadModel->getEntity($contactId); if (null === $contact) { return $this->notFound($this->translator->trans('mautic.lead.event.api.lead.not.found')); } if (!$this->checkEntityAccess($contact)) { return $this->accessDenied(); } $pointGroup = $this->model->getEntity($groupId); if (null === $pointGroup) { return $this->notFound($this->translator->trans('mautic.lead.event.api.point.group.not.found')); } if (!PointGroupModel::isAllowedPointOperation($operator)) { return $this->badRequest($this->translator->trans('mautic.lead.event.api.operation.not.allowed')); } $oldScore = $contact->getGroupScore($pointGroup)?->getScore(); $contact = $this->model->adjustPoints($contact, $pointGroup, $value, $operator); $newScore = $contact->getGroupScore($pointGroup)->getScore(); $delta = $newScore - ($oldScore ?? 0); $eventName = InputHelper::clean($request->request->get('eventName', $this->translator->trans('mautic.point.event.manual_change'))); $actionName = InputHelper::clean($request->request->get('actionName', $this->translator->trans('mautic.lead.event.api'))); $contact->addPointsChangeLogEntry( type: 'API', name: $eventName, action: $actionName, pointChanges: $delta, ip: $ipLookupHelper->getIpAddress(), group: $pointGroup ); $this->leadModel->saveEntity($contact, false); $view = $this->view(['groupScore' => $contact->getGroupScore($pointGroup)], Response::HTTP_OK); $context = $view->getContext()->setGroups(['groupContactScoreDetails', 'pointGroupDetails']); $view->setContext($context); return $this->handleView($view); } }