![]() 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-integration/Model/Oauth/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth; /** * Nonce model * @author Magento Core Team <[email protected]> * @method string getNonce() * @method \Magento\Integration\Model\Oauth\Nonce setNonce() setNonce(string $nonce) * @method int getConsumerId() * @method \Magento\Integration\Model\Oauth\Nonce setConsumerId() setConsumerId(int $consumerId) * @method string getTimestamp() * @method \Magento\Integration\Model\Oauth\Nonce setTimestamp() setTimestamp(string $timestamp) */ class Nonce extends \Magento\Framework\Model\AbstractModel { /** * Oauth data * * @var \Magento\Integration\Helper\Oauth\Data */ protected $_oauthData; /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Integration\Helper\Oauth\Data $oauthData * @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\Integration\Helper\Oauth\Data $oauthData, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [] ) { parent::__construct($context, $registry, $resource, $resourceCollection, $data); $this->_oauthData = $oauthData; } /** * Initialize resource model * * @return void */ protected function _construct() { $this->_init(\Magento\Integration\Model\ResourceModel\Oauth\Nonce::class); } /** * The "After save" actions * * @return $this */ public function afterSave() { parent::afterSave(); if ($this->_oauthData->isCleanupProbability()) { $this->getResource()->deleteOldEntries($this->_oauthData->getCleanupExpirationPeriod()); } return $this; } /** * Load given a composite key consisting of a nonce string and a consumer id * * @param string $nonce - The nonce string * @param int $consumerId - The consumer id * @return $this */ public function loadByCompositeKey($nonce, $consumerId) { $data = $this->getResource()->selectByCompositeKey($nonce, $consumerId); $this->setData($data); return $this; } }