12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Model\Oauth;
- /**
- * Nonce model
- * @author Magento Core Team <core@magentocommerce.com>
- * @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;
- }
- }
|