paymentData = $paymentData; $this->encryptor = $encryptor; parent::__construct( $context, $registry, $extensionFactory, $customAttributeFactory, $resource, $resourceCollection, $data ); } /** * Retrieve data * * @param string $key * @param mixed $index * @return mixed */ public function getData($key = '', $index = null) { if ('cc_number' === $key) { $ccNumber = parent::getData('cc_number'); $ccNumberEnc = parent::getData('cc_number_enc'); if (empty($ccNumber) && !empty($ccNumberEnc)) { $this->setData('cc_number', $this->decrypt($ccNumberEnc)); } } if ('cc_cid' === $key) { $ccCid = parent::getData('cc_cid'); $ccCidEnc = parent::getData('cc_cid_enc'); if (empty($ccCid) && !empty($ccCidEnc)) { $this->setData('cc_cid', $this->decrypt($ccCidEnc)); } } return parent::getData($key, $index); } /** * Retrieve payment method model object * * @return \Magento\Payment\Model\MethodInterface * @throws \Magento\Framework\Exception\LocalizedException */ public function getMethodInstance() { if (!$this->hasMethodInstance()) { if (!$this->getMethod()) { throw new \Magento\Framework\Exception\LocalizedException( __('The payment method you requested is not available.') ); } try { $instance = $this->paymentData->getMethodInstance($this->getMethod()); } catch (\UnexpectedValueException $e) { $instance = $this->paymentData->getMethodInstance(Substitution::CODE); } $instance->setInfoInstance($this); $this->setMethodInstance($instance); } return $this->getData('method_instance'); } /** * Encrypt data * * @param string $data * @return string */ public function encrypt($data) { return $this->encryptor->encrypt($data); } /** * Decrypt data * * @param string $data * @return string */ public function decrypt($data) { return $this->encryptor->decrypt($data); } /** * Additional information setter * Updates data inside the 'additional_information' array * or all 'additional_information' if key is data array * * @param string|array $key * @param mixed $value * @return $this * @throws \Magento\Framework\Exception\LocalizedException */ public function setAdditionalInformation($key, $value = null) { if (is_object($value)) { throw new \Magento\Framework\Exception\LocalizedException(__('The payment disallows storing objects.')); } $this->initAdditionalInformation(); if (is_array($key) && $value === null) { $this->additionalInformation = $key; } else { $this->additionalInformation[$key] = $value; } return $this->setData('additional_information', $this->additionalInformation); } /** * Getter for entire additional_information value or one of its element by key * * @param string $key * @return array|null|mixed */ public function getAdditionalInformation($key = null) { $this->initAdditionalInformation(); if (null === $key) { return $this->additionalInformation; } return $this->additionalInformation[$key] ?? null; } /** * Unsetter for entire additional_information value or one of its element by key * * @param string $key * @return $this */ public function unsAdditionalInformation($key = null) { if ($key && isset($this->additionalInformation[$key])) { unset($this->additionalInformation[$key]); return $this->setData('additional_information', $this->additionalInformation); } elseif (null === $key) { $this->additionalInformation = []; return $this->unsetData('additional_information'); } return $this; } /** * Check whether there is additional information by specified key * * @param mixed|null $key * @return bool */ public function hasAdditionalInformation($key = null) { $this->initAdditionalInformation(); return null === $key ? !empty($this->additionalInformation) : array_key_exists( $key, $this->additionalInformation ); } /** * Initialize additional information container with data from model if property empty * * @return void */ protected function initAdditionalInformation() { $additionalInfo = $this->getData('additional_information'); if (empty($this->additionalInformation) && $additionalInfo) { $this->additionalInformation = $additionalInfo; } } }