Spaces:
No application file
No application file
File size: 1,070 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 |
<?php
namespace Mautic\SmsBundle\Controller;
use Mautic\SmsBundle\Callback\HandlerContainer;
use Mautic\SmsBundle\Exception\CallbackHandlerNotFound;
use Mautic\SmsBundle\Helper\ReplyHelper;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class ReplyController extends AbstractController
{
public function __construct(
private HandlerContainer $callbackHandler,
private ReplyHelper $replyHelper
) {
}
/**
* @return Response
*
* @throws \Exception
*/
public function callbackAction(Request $request, $transport)
{
define('MAUTIC_NON_TRACKABLE_REQUEST', 1);
try {
$handler = $this->callbackHandler->getHandler($transport);
} catch (CallbackHandlerNotFound) {
throw new NotFoundHttpException();
}
return $this->replyHelper->handleRequest($handler, $request);
}
}
|