Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement CsrfAwareActionInterface for Webhook #516

Open
wants to merge 1 commit into
base: master-2.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion Controller/Payment/Webhook.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Razorpay\Magento\Controller\Payment;

use Magento\Framework\App\Action\HttpGetActionInterface;
use Magento\Framework\App\Action\HttpPostActionInterface;
use Razorpay\Api\Api;
use Razorpay\Api\Errors;
use Razorpay\Magento\Model\Config;
Expand All @@ -20,7 +22,10 @@
*
* ...
*/
class Webhook extends \Razorpay\Magento\Controller\BaseController
class Webhook extends \Razorpay\Magento\Controller\BaseController implements
CsrfAwareActionInterface,
HttpPostActionInterface,
HttpGetActionInterface
{
/**
* @var Razorpay\Api\Api
Expand Down Expand Up @@ -327,4 +332,20 @@ protected function setWebhookData($post, $entityId, $webhookVerifiedStatus, $pay

$this->logger->info('Webhook data saved for id:' . $order->getIncrementId() . 'event:' . $post['event']);
}

/**
* @inheritdoc
*/
public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException
{
return null;
}

/**
* @inheritdoc
*/
public function validateForCsrf(RequestInterface $request): ?bool
{
return true;
}
}