File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/gocardless/src/Message/CompleteAuthorizeRequest.php
Back
<?php /** * GoCardless Complete Authorize Request */ namespace Omnipay\GoCardless\Message; use Omnipay\Common\Exception\InvalidResponseException; use Omnipay\GoCardless\Gateway; /** * This completes and confirms that the auth is going to be used. It has a 3 hour * life from the moment we create the pre-auth request. * * * @package Omnipay\GoCardless\Message * @link https://developer.gocardless.com/#confirm-a-new-pre-auth */ class CompleteAuthorizeRequest extends AbstractRequest { public function getData() { $data = array(); $data['resource_uri'] = $this->httpRequest->get('resource_uri'); $data['resource_id'] = $this->httpRequest->get('resource_id'); $data['resource_type'] = $this->httpRequest->get('resource_type'); if ($this->httpRequest->get('state')) { $data['state'] = $this->httpRequest->get('state'); } if ($this->generateSignature($data) !== $this->httpRequest->get('signature')) { throw new InvalidResponseException; } unset($data['resource_uri']); return $data; } public function sendData($data) { $httpRequest = $this->httpClient->post( $this->getEndpoint().'/api/v1/confirm', array('Accept' => 'application/json'), Gateway::generateQueryString($data) ); $httpResponse = $httpRequest->setAuth($this->getAppId(), $this->getAppSecret())->send(); return $this->response = new CompleteAuthorizeResponse( $this, $httpResponse->json(), $this->httpRequest->get('resource_id') ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings