Spaces:
No application file
No application file
File size: 5,047 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 |
<?php
namespace MauticPlugin\MauticFocusBundle\Controller;
use Mautic\CacheBundle\Cache\CacheProvider;
use Mautic\CoreBundle\Controller\AjaxController as CommonAjaxController;
use Mautic\CoreBundle\Helper\InputHelper;
use MauticPlugin\MauticFocusBundle\Helper\IframeAvailabilityChecker;
use MauticPlugin\MauticFocusBundle\Model\FocusModel;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
class AjaxController extends CommonAjaxController
{
/**
* This method produces HTTP request checking headers which are blocking availability for iframe inheritance for other pages.
*/
public function checkIframeAvailabilityAction(Request $request, IframeAvailabilityChecker $availabilityChecker): JsonResponse
{
$url = $request->query->get('website');
return $availabilityChecker->check($url, $request->getScheme());
}
public function generatePreviewAction(Request $request): JsonResponse
{
$responseContent = ['html' => '', 'style' => ''];
$focus = $request->request->all();
if (isset($focus['focus'])) {
$focusArray = InputHelper::_($focus['focus']);
if (!empty($focusArray['style']) && !empty($focusArray['type'])) {
/** @var FocusModel $model */
$model = $this->getModel('focus');
$focusArray['id'] = 'preview';
$responseContent['html'] = $model->getContent($focusArray, true);
$responseContent['style'] = $focusArray['style']; // Required by JS in response
}
}
return $this->sendJsonResponse($responseContent);
}
public function getViewsCountAction(Request $request, CacheProvider $cacheProvider): JsonResponse
{
$focusId = (int) InputHelper::clean($request->query->get('focusId'));
if (0 === $focusId) {
return $this->sendJsonResponse([
'success' => 0,
'message' => $this->translator->trans('mautic.core.error.badrequest'),
], 400);
}
$cacheTimeout = (int) $this->coreParametersHelper->get('cached_data_timeout');
$cacheItem = $cacheProvider->getItem('focus.viewsCount.'.$focusId);
if ($cacheItem->isHit()) {
$cacheItemValue = $cacheItem->get();
$viewsCount = $cacheItemValue['views'];
$uniqueViewsCount = $cacheItemValue['uniqueViews'];
} else {
/** @var FocusModel $model */
$model = $this->getModel('focus');
$focus = $model->getEntity($focusId);
if (null === $focus) {
return $this->sendJsonResponse([
'success' => 0,
'message' => $this->translator->trans('mautic.api.call.notfound'),
], 404);
}
$viewsCount = $model->getViewsCount($focus);
$uniqueViewsCount = $model->getUniqueViewsCount($focus);
$cacheItem->set([
'views' => $viewsCount,
'uniqueViews' => $uniqueViewsCount,
]);
$cacheItem->tag("focus.{$focusId}");
$cacheItem->expiresAfter($cacheTimeout * 60);
$cacheProvider->save($cacheItem);
}
return $this->sendJsonResponse([
'success' => 1,
'views' => $viewsCount,
'uniqueViews' => $uniqueViewsCount,
]);
}
public function getClickThroughCountAction(Request $request, CacheProvider $cacheProvider): JsonResponse
{
$focusId = (int) InputHelper::clean($request->query->get('focusId'));
if (0 === $focusId) {
return $this->sendJsonResponse([
'success' => 0,
'message' => $this->translator->trans('mautic.core.error.badrequest'),
], 400);
}
$cacheTimeout = (int) $this->coreParametersHelper->get('cached_data_timeout');
$cacheItem = $cacheProvider->getItem('focus.clickThroughCount.'.$focusId);
if ($cacheItem->isHit()) {
$clickThroughCount = $cacheItem->get();
} else {
/** @var FocusModel $model */
$model = $this->getModel('focus');
$focus = $model->getEntity($focusId);
if (null === $focus) {
return $this->sendJsonResponse([
'success' => 0,
'message' => $this->translator->trans('mautic.api.call.notfound'),
], 404);
}
$clickThroughCount = $model->getClickThroughCount($focus);
$cacheItem->set($clickThroughCount);
$cacheItem->tag("focus.{$focusId}");
$cacheItem->expiresAfter($cacheTimeout * 60);
$cacheProvider->save($cacheItem);
}
return $this->sendJsonResponse([
'success' => 1,
'clickThrough' => $clickThroughCount,
]);
}
}
|