123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cms\Model\ResourceModel;
- use Magento\Cms\Api\Data\PageInterface;
- use Magento\Cms\Model\Page as CmsPage;
- use Magento\Framework\DB\Select;
- use Magento\Framework\EntityManager\EntityManager;
- use Magento\Framework\EntityManager\MetadataPool;
- use Magento\Framework\Exception\LocalizedException;
- use Magento\Framework\Model\AbstractModel;
- use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
- use Magento\Framework\Model\ResourceModel\Db\Context;
- use Magento\Framework\Stdlib\DateTime;
- use Magento\Store\Model\Store;
- use Magento\Store\Model\StoreManagerInterface;
- /**
- * Cms page mysql resource
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class Page extends AbstractDb
- {
- /**
- * Store model
- *
- * @var null|Store
- */
- protected $_store = null;
- /**
- * Store manager
- *
- * @var StoreManagerInterface
- */
- protected $_storeManager;
- /**
- * @var DateTime
- */
- protected $dateTime;
- /**
- * @var EntityManager
- */
- protected $entityManager;
- /**
- * @var MetadataPool
- */
- protected $metadataPool;
- /**
- * @param Context $context
- * @param StoreManagerInterface $storeManager
- * @param DateTime $dateTime
- * @param EntityManager $entityManager
- * @param MetadataPool $metadataPool
- * @param string $connectionName
- */
- public function __construct(
- Context $context,
- StoreManagerInterface $storeManager,
- DateTime $dateTime,
- EntityManager $entityManager,
- MetadataPool $metadataPool,
- $connectionName = null
- ) {
- parent::__construct($context, $connectionName);
- $this->_storeManager = $storeManager;
- $this->dateTime = $dateTime;
- $this->entityManager = $entityManager;
- $this->metadataPool = $metadataPool;
- }
- /**
- * Initialize resource model
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init('cms_page', 'page_id');
- }
- /**
- * @inheritDoc
- */
- public function getConnection()
- {
- return $this->metadataPool->getMetadata(PageInterface::class)->getEntityConnection();
- }
- /**
- * Process page data before saving
- *
- * @param AbstractModel $object
- * @return $this
- * @throws LocalizedException
- */
- protected function _beforeSave(AbstractModel $object)
- {
- /*
- * For two attributes which represent timestamp data in DB
- * we should make converting such as:
- * If they are empty we need to convert them into DB
- * type NULL so in DB they will be empty and not some default value
- */
- foreach (['custom_theme_from', 'custom_theme_to'] as $field) {
- $value = !$object->getData($field) ? null : $this->dateTime->formatDate($object->getData($field));
- $object->setData($field, $value);
- }
- if (!$this->isValidPageIdentifier($object)) {
- throw new LocalizedException(
- __(
- "The page URL key can't use capital letters or disallowed symbols. "
- . "Remove the letters and symbols and try again."
- )
- );
- }
- if ($this->isNumericPageIdentifier($object)) {
- throw new LocalizedException(
- __("The page URL key can't use only numbers. Add letters or words and try again.")
- );
- }
- return parent::_beforeSave($object);
- }
- /**
- * @param AbstractModel $object
- * @param string $value
- * @param string|null $field
- * @return bool|int|string
- * @throws LocalizedException
- * @throws \Exception
- */
- private function getPageId(AbstractModel $object, $value, $field = null)
- {
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- if (!is_numeric($value) && $field === null) {
- $field = 'identifier';
- } elseif (!$field) {
- $field = $entityMetadata->getIdentifierField();
- }
- $pageId = $value;
- if ($field != $entityMetadata->getIdentifierField() || $object->getStoreId()) {
- $select = $this->_getLoadSelect($field, $value, $object);
- $select->reset(Select::COLUMNS)
- ->columns($this->getMainTable() . '.' . $entityMetadata->getIdentifierField())
- ->limit(1);
- $result = $this->getConnection()->fetchCol($select);
- $pageId = count($result) ? $result[0] : false;
- }
- return $pageId;
- }
- /**
- * Load an object
- *
- * @param CmsPage|AbstractModel $object
- * @param mixed $value
- * @param string $field field to load by (defaults to model id)
- * @return $this
- */
- public function load(AbstractModel $object, $value, $field = null)
- {
- $pageId = $this->getPageId($object, $value, $field);
- if ($pageId) {
- $this->entityManager->load($object, $pageId);
- }
- return $this;
- }
- /**
- * Retrieve select object for load object data
- *
- * @param string $field
- * @param mixed $value
- * @param CmsPage|AbstractModel $object
- * @return Select
- */
- protected function _getLoadSelect($field, $value, $object)
- {
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- $linkField = $entityMetadata->getLinkField();
- $select = parent::_getLoadSelect($field, $value, $object);
- if ($object->getStoreId()) {
- $storeIds = [
- Store::DEFAULT_STORE_ID,
- (int)$object->getStoreId(),
- ];
- $select->join(
- ['cms_page_store' => $this->getTable('cms_page_store')],
- $this->getMainTable() . '.' . $linkField . ' = cms_page_store.' . $linkField,
- []
- )
- ->where('is_active = ?', 1)
- ->where('cms_page_store.store_id IN (?)', $storeIds)
- ->order('cms_page_store.store_id DESC')
- ->limit(1);
- }
- return $select;
- }
- /**
- * Retrieve load select with filter by identifier, store and activity
- *
- * @param string $identifier
- * @param int|array $store
- * @param int $isActive
- * @return Select
- */
- protected function _getLoadByIdentifierSelect($identifier, $store, $isActive = null)
- {
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- $linkField = $entityMetadata->getLinkField();
- $select = $this->getConnection()->select()
- ->from(['cp' => $this->getMainTable()])
- ->join(
- ['cps' => $this->getTable('cms_page_store')],
- 'cp.' . $linkField . ' = cps.' . $linkField,
- []
- )
- ->where('cp.identifier = ?', $identifier)
- ->where('cps.store_id IN (?)', $store);
- if ($isActive !== null) {
- $select->where('cp.is_active = ?', $isActive);
- }
- return $select;
- }
- /**
- * Check whether page identifier is numeric
- *
- * @param AbstractModel $object
- * @return bool
- */
- protected function isNumericPageIdentifier(AbstractModel $object)
- {
- return preg_match('/^[0-9]+$/', $object->getData('identifier'));
- }
- /**
- * Check whether page identifier is valid
- *
- * @param AbstractModel $object
- * @return bool
- */
- protected function isValidPageIdentifier(AbstractModel $object)
- {
- return preg_match('/^[a-z0-9][a-z0-9_\/-]+(\.[a-z0-9_-]+)?$/', $object->getData('identifier'));
- }
- /**
- * Check if page identifier exist for specific store
- * return page id if page exists
- *
- * @param string $identifier
- * @param int $storeId
- * @return int
- */
- public function checkIdentifier($identifier, $storeId)
- {
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- $stores = [Store::DEFAULT_STORE_ID, $storeId];
- $select = $this->_getLoadByIdentifierSelect($identifier, $stores, 1);
- $select->reset(Select::COLUMNS)
- ->columns('cp.' . $entityMetadata->getIdentifierField())
- ->order('cps.store_id DESC')
- ->limit(1);
- return $this->getConnection()->fetchOne($select);
- }
- /**
- * Retrieves cms page title from DB by passed identifier.
- *
- * @param string $identifier
- * @return string|false
- */
- public function getCmsPageTitleByIdentifier($identifier)
- {
- $stores = [Store::DEFAULT_STORE_ID];
- if ($this->_store) {
- $stores[] = (int)$this->getStore()->getId();
- }
- $select = $this->_getLoadByIdentifierSelect($identifier, $stores);
- $select->reset(Select::COLUMNS)
- ->columns('cp.title')
- ->order('cps.store_id DESC')
- ->limit(1);
- return $this->getConnection()->fetchOne($select);
- }
- /**
- * Retrieves cms page title from DB by passed id.
- *
- * @param string $id
- * @return string|false
- */
- public function getCmsPageTitleById($id)
- {
- $connection = $this->getConnection();
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- $select = $connection->select()
- ->from($this->getMainTable(), 'title')
- ->where($entityMetadata->getIdentifierField() . ' = :page_id');
- return $connection->fetchOne($select, ['page_id' => (int)$id]);
- }
- /**
- * Retrieves cms page identifier from DB by passed id.
- *
- * @param string $id
- * @return string|false
- */
- public function getCmsPageIdentifierById($id)
- {
- $connection = $this->getConnection();
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- $select = $connection->select()
- ->from($this->getMainTable(), 'identifier')
- ->where($entityMetadata->getIdentifierField() . ' = :page_id');
- return $connection->fetchOne($select, ['page_id' => (int)$id]);
- }
- /**
- * Get store ids to which specified item is assigned
- *
- * @param int $pageId
- * @return array
- */
- public function lookupStoreIds($pageId)
- {
- $connection = $this->getConnection();
- $entityMetadata = $this->metadataPool->getMetadata(PageInterface::class);
- $linkField = $entityMetadata->getLinkField();
- $select = $connection->select()
- ->from(['cps' => $this->getTable('cms_page_store')], 'store_id')
- ->join(
- ['cp' => $this->getMainTable()],
- 'cps.' . $linkField . ' = cp.' . $linkField,
- []
- )
- ->where('cp.' . $entityMetadata->getIdentifierField() . ' = :page_id');
- return $connection->fetchCol($select, ['page_id' => (int)$pageId]);
- }
- /**
- * Set store model
- *
- * @param Store $store
- * @return $this
- */
- public function setStore($store)
- {
- $this->_store = $store;
- return $this;
- }
- /**
- * Retrieve store model
- *
- * @return Store
- */
- public function getStore()
- {
- return $this->_storeManager->getStore($this->_store);
- }
- /**
- * @inheritDoc
- */
- public function save(AbstractModel $object)
- {
- $this->entityManager->save($object);
- return $this;
- }
- /**
- * @inheritDoc
- */
- public function delete(AbstractModel $object)
- {
- $this->entityManager->delete($object);
- return $this;
- }
- }
|