Ejemplo n.º 1
0
 /**
  * @test
  */
 public function preFilledQueueContainsRootPageAfterInitialize()
 {
     $this->importDataSetFromFixture('can_clear_queue_after_initialize.xml');
     $itemCount = $this->indexQueue->getAllItemsCount();
     $this->assertItemsInQueue(1);
     $this->assertFalse($this->indexQueue->containsItem('pages', 1));
     $this->assertTrue($this->indexQueue->containsItem('pages', 4711));
     // after initialize the prefilled queue item should be lost and the root page should be added again
     $site = Site::getFirstAvailableSite();
     $this->indexQueue->initialize($site, 'pages');
     $this->assertItemsInQueue(1);
     $this->assertTrue($this->indexQueue->containsItem('pages', 1));
     $this->assertFalse($this->indexQueue->containsItem('pages', 4711));
 }
Ejemplo n.º 2
0
 /**
  * In this testcase we check if the pages queue will be initialized as expected
  * when we have a page with mounted pages
  *
  *
  *      1
  *      |
  *      ------- 10 (Mounted)
  *                        |
  *                         ------------ 20 (Childpage of mountpoint)
  *
  * @test
  */
 public function initializerIsFillingQueueWithMountPages()
 {
     $this->importDataSetFromFixture('can_add_mount_pages.xml');
     $this->assertEmptyQueue();
     $this->initializePageIndexQueue();
     $this->assertItemsInQueue(4);
     // @todo: verify, is this really as expected? since mount_pid_ol is not set
     // in the case when mount_pid_ol is set 4 pages get added
     $this->assertTrue($this->indexQueue->containsItem('pages', 1));
     $this->assertTrue($this->indexQueue->containsItem('pages', 10));
     $this->assertTrue($this->indexQueue->containsItem('pages', 20));
     $this->assertFalse($this->indexQueue->containsItem('pages', 2));
 }
Ejemplo n.º 3
0
 /**
  * Hooks into TCE Main and watches all record creations and updates. If it
  * detects that the new/updated record belongs to a table configured for
  * indexing through Solr, we add the record to the index queue.
  *
  * @param string $status Status of the current operation, 'new' or 'update'
  * @param string $table The table the record belongs to
  * @param mixed $uid The record's uid, [integer] or [string] (like 'NEW...')
  * @param array $fields The record's data
  * @param DataHandler $tceMain TYPO3 Core Engine parent object
  * @return void
  */
 public function processDatamap_afterDatabaseOperations($status, $table, $uid, array $fields, DataHandler $tceMain)
 {
     $recordTable = $table;
     $recordUid = $uid;
     $recordPageId = 0;
     if ($status == 'new') {
         $recordUid = $tceMain->substNEWwithIDs[$recordUid];
     }
     if (Util::isDraftRecord($table, $recordUid)) {
         // skip workspaces: index only LIVE workspace
         return;
     }
     if ($status == 'update' && !isset($fields['pid'])) {
         $recordPageId = $tceMain->getPID($recordTable, $recordUid);
         if ($recordTable == 'pages' && Util::isRootPage($recordUid)) {
             $recordPageId = $uid;
         }
     } else {
         $recordPageId = $fields['pid'];
     }
     // when a content element changes we need to updated the page instead
     if ($recordTable == 'tt_content') {
         $recordTable = 'pages';
         $recordUid = $recordPageId;
     }
     $this->solrConfiguration = Util::getSolrConfigurationFromPageId($recordPageId);
     $monitoredTables = $this->getMonitoredTables($recordPageId);
     if (in_array($recordTable, $monitoredTables, true)) {
         $record = $this->getRecord($recordTable, $recordUid);
         if (!empty($record)) {
             // only update/insert the item if we actually found a record
             if (Util::isLocalizedRecord($recordTable, $record)) {
                 // if it's a localization overlay, update the original record instead
                 $recordUid = $record[$GLOBALS['TCA'][$recordTable]['ctrl']['transOrigPointerField']];
                 if ($recordTable == 'pages_language_overlay') {
                     $recordTable = 'pages';
                 }
                 $tableEnableFields = implode(', ', $GLOBALS['TCA'][$recordTable]['ctrl']['enablecolumns']);
                 $l10nParentRecord = BackendUtility::getRecord($recordTable, $recordUid, $tableEnableFields, '', false);
                 if (!$this->isEnabledRecord($recordTable, $l10nParentRecord)) {
                     // the l10n parent record must be visible to have it's translation indexed
                     return;
                 }
             }
             // Clear existing index queue items to prevent mount point duplicates.
             if ($recordTable == 'pages') {
                 $this->indexQueue->deleteItem('pages', $recordUid);
             }
             if ($this->isEnabledRecord($recordTable, $record)) {
                 $configurationName = null;
                 if ($recordTable !== 'pages') {
                     $configurationName = $this->getIndexingConfigurationName($recordTable, $recordUid);
                 }
                 $this->indexQueue->updateItem($recordTable, $recordUid, $configurationName);
             }
             if ($recordTable == 'pages') {
                 $this->updateCanonicalPages($recordUid);
                 $this->updateMountPages($recordUid);
                 if ($this->isRecursiveUpdateRequired($recordUid, $fields)) {
                     $treePageIds = $this->getSubPageIds($recordUid);
                     foreach ($treePageIds as $treePageId) {
                         $this->indexQueue->updateItem('pages', $treePageId);
                     }
                 }
             }
         } else {
             // TODO move this part to the garbage collector
             // check if the item should be removed from the index because it no longer matches the conditions
             if ($this->indexQueue->containsItem($recordTable, $recordUid)) {
                 $this->removeFromIndexAndQueue($recordTable, $recordUid);
             }
         }
     }
 }