/** * {@inheritDoc} */ public function execute($request) { /** @var $request \Payum\Core\Request\Capture */ if (false == $this->supports($request)) { throw RequestNotSupportedException::createActionNotSupported($this, $request); } $model = new ArrayObject($request->getModel()); if (null !== $model['EXECCODE']) { return; } $cardFields = array('CARDCODE', 'CARDCVV', 'CARDVALIDITYDATE', 'CARDFULLNAME'); if (false == $model->validateNotEmpty($cardFields, false) && false == $model['ALIAS']) { try { $creditCardRequest = new ObtainCreditCard(); $this->payment->execute($creditCardRequest); $card = $creditCardRequest->obtain(); $model['CARDVALIDITYDATE'] = new SensitiveValue($card->getExpireAt()->format('m-y')); $model['CARDCODE'] = $card->getNumber(); $model['CARDFULLNAME'] = $card->getHolder(); $model['CARDCVV'] = $card->getSecurityCode(); } catch (RequestNotSupportedException $e) { throw new LogicException('Credit card details has to be set explicitly or there has to be an action that supports ObtainCreditCard request.'); } } //instruction must have an alias set (e.g oneclick payment) or credit card info. if (false == ($model['ALIAS'] || $model->validateNotEmpty($cardFields, false))) { throw new LogicException('Either credit card fields or its alias has to be set.'); } $response = $this->api->payment($model->toUnsafeArray()); $model->replace((array) $response->getContentJson()); }
/** * {@inheritDoc} * * @param Capture $request */ public function execute($request) { RequestNotSupportedException::assertSupports($this, $request); $model = new ArrayObject($request->getModel()); if (null !== $model['EXECCODE']) { return; } if (false == $model['CLIENTUSERAGENT']) { $this->gateway->execute($httpRequest = new GetHttpRequest()); $model['CLIENTUSERAGENT'] = $httpRequest->userAgent; } if (false == $model['CLIENTIP']) { $this->gateway->execute($httpRequest = new GetHttpRequest()); $model['CLIENTIP'] = $httpRequest->clientIp; } $cardFields = array('CARDCODE', 'CARDCVV', 'CARDVALIDITYDATE', 'CARDFULLNAME'); if (false == $model->validateNotEmpty($cardFields, false) && false == $model['ALIAS']) { try { $this->gateway->execute($creditCardRequest = new ObtainCreditCard()); $card = $creditCardRequest->obtain(); $model['CARDVALIDITYDATE'] = new SensitiveValue($card->getExpireAt()->format('m-y')); $model['CARDCODE'] = $card->getNumber(); $model['CARDFULLNAME'] = $card->getHolder(); $model['CARDCVV'] = $card->getSecurityCode(); } catch (RequestNotSupportedException $e) { throw new LogicException('Credit card details has to be set explicitly or there has to be an action that supports ObtainCreditCard request.'); } } //instruction must have an alias set (e.g oneclick payment) or credit card info. if (false == ($model['ALIAS'] || $model->validateNotEmpty($cardFields, false))) { throw new LogicException('Either credit card fields or its alias has to be set.'); } $result = $this->api->payment($model->toUnsafeArray()); $model->replace((array) $result); }