![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-paypal/Model/ |
<?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; } }