123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Model;
- use Magento\Framework\App\Filesystem\DirectoryList;
- use Magento\Framework\Filesystem\Directory\WriteInterface;
- /**
- * PayPal specific model for certificate based authentication
- */
- class Cert extends \Magento\Framework\Model\AbstractModel
- {
- /**
- * Certificate base path
- */
- const BASEPATH_PAYPAL_CERT = 'cert/paypal/';
- /**
- * @var WriteInterface
- */
- protected $varDirectory;
- /**
- * @var \Magento\Framework\Encryption\EncryptorInterface
- */
- protected $encryptor;
- /**
- * @param \Magento\Framework\Model\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param \Magento\Framework\Filesystem $filesystem
- * @param \Magento\Framework\Encryption\EncryptorInterface $encryptor
- * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
- * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\Model\Context $context,
- \Magento\Framework\Registry $registry,
- \Magento\Framework\Filesystem $filesystem,
- \Magento\Framework\Encryption\EncryptorInterface $encryptor,
- \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
- \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
- array $data = []
- ) {
- $this->varDirectory = $filesystem->getDirectoryWrite(DirectoryList::VAR_DIR);
- $this->encryptor = $encryptor;
- parent::__construct($context, $registry, $resource, $resourceCollection, $data);
- }
- /**
- * Initialize resource model
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Paypal\Model\ResourceModel\Cert::class);
- }
- /**
- * Load model by website id
- *
- * @param int $websiteId
- * @param bool $strictLoad
- * @return $this
- */
- public function loadByWebsite($websiteId, $strictLoad = true)
- {
- $this->setWebsiteId($websiteId);
- $this->_getResource()->loadByWebsite($this, $strictLoad);
- return $this;
- }
- /**
- * Get path to PayPal certificate file, if file does not exist try to create it
- *
- * @return string
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function getCertPath()
- {
- if (!$this->getContent()) {
- throw new \Magento\Framework\Exception\LocalizedException(__('The PayPal certificate does not exist.'));
- }
- $certFileName = sprintf('cert_%s_%s.pem', $this->getWebsiteId(), strtotime($this->getUpdatedAt()));
- $certFile = self::BASEPATH_PAYPAL_CERT . $certFileName;
- if (!$this->varDirectory->isExist($certFile)) {
- $this->_createCertFile($certFile);
- }
- return $this->varDirectory->getAbsolutePath($certFile);
- }
- /**
- * Create physical certificate file based on DB data
- *
- * @param string $file
- * @return void
- */
- protected function _createCertFile($file)
- {
- if ($this->varDirectory->isDirectory(self::BASEPATH_PAYPAL_CERT)) {
- $this->_removeOutdatedCertFile();
- }
- $this->varDirectory->writeFile($file, $this->encryptor->decrypt($this->getContent()));
- }
- /**
- * Check and remove outdated certificate file by website
- *
- * @return void
- */
- protected function _removeOutdatedCertFile()
- {
- $pattern = sprintf('cert_%s*', $this->getWebsiteId());
- $entries = $this->varDirectory->search($pattern, self::BASEPATH_PAYPAL_CERT);
- foreach ($entries as $entry) {
- $this->varDirectory->delete($entry);
- }
- }
- /**
- * Delete assigned certificate file after delete object
- *
- * @return $this
- */
- public function afterDelete()
- {
- $this->_removeOutdatedCertFile();
- return $this;
- }
- }
|