diff --git a/Document/Index/ArticleGhostIndexer.php b/Document/Index/ArticleGhostIndexer.php index 0731d8d2a..8c529593d 100644 --- a/Document/Index/ArticleGhostIndexer.php +++ b/Document/Index/ArticleGhostIndexer.php @@ -87,7 +87,7 @@ public function index(ArticleDocument $document): void } $article = $this->createOrUpdateArticle($document, $document->getLocale()); - $this->createOrUpdateShadows($document); + $this->updateShadows($document); $this->createOrUpdateGhosts($document); $this->dispatchIndexEvent($document, $article); $this->manager->persist($article); diff --git a/Document/Index/ArticleIndexer.php b/Document/Index/ArticleIndexer.php index f4b9a8146..2fd4eecf2 100644 --- a/Document/Index/ArticleIndexer.php +++ b/Document/Index/ArticleIndexer.php @@ -327,6 +327,15 @@ private function getBlockContentFieldsRecursive(array $blocks, ArticleDocument $ return $contentFields; } + protected function findViewDocument(ArticleDocument $document, string $locale): ?ArticleViewDocumentInterface + { + $articleId = $this->getViewDocumentId($document->getUuid(), $locale); + /** @var ArticleViewDocumentInterface $article */ + $article = $this->manager->find($this->documentFactory->getClass('article'), $articleId); + + return $article; + } + /** * Returns view-document from index or create a new one. */ @@ -335,9 +344,7 @@ protected function findOrCreateViewDocument( string $locale, string $localizationState ): ?ArticleViewDocumentInterface { - $articleId = $this->getViewDocumentId($document->getUuid(), $locale); - /** @var ArticleViewDocumentInterface $article */ - $article = $this->manager->find($this->documentFactory->getClass('article'), $articleId); + $article = $this->findViewDocument($document, $locale); if ($article) { // Only index ghosts when the article isn't a ghost himself. @@ -351,7 +358,7 @@ protected function findOrCreateViewDocument( } $article = $this->documentFactory->create('article'); - $article->setId($articleId); + $article->setId($this->getViewDocumentId($document->getUuid(), $locale)); $article->setUuid($document->getUuid()); $article->setLocale($locale); @@ -505,11 +512,12 @@ public function index(ArticleDocument $document): void $this->dispatchIndexEvent($document, $article); $this->manager->persist($article); - $this->createOrUpdateShadows($document); + $this->updateShadows($document); } protected function indexShadow(ArticleDocument $document): void { + /** @var ArticleDocument $shadowDocument */ $shadowDocument = $this->documentManager->find( $document->getUuid(), $document->getOriginalLocale(), @@ -519,12 +527,11 @@ protected function indexShadow(ArticleDocument $document): void ); $article = $this->createOrUpdateArticle($shadowDocument, $document->getOriginalLocale(), LocalizationState::SHADOW); - $this->dispatchIndexEvent($shadowDocument, $article); $this->manager->persist($article); } - protected function createOrUpdateShadows(ArticleDocument $document): void + protected function updateShadows(ArticleDocument $document): void { if ($document->isShadowLocaleEnabled()) { return; @@ -534,6 +541,12 @@ protected function createOrUpdateShadows(ArticleDocument $document): void try { /** @var ArticleDocument $shadowDocument */ $shadowDocument = $this->documentManager->find($document->getUuid(), $shadowLocale); + + // update shadow only if original document exists + if (!$this->findViewDocument($shadowDocument, $document->getLocale())) { + continue; + } + $this->indexShadow($shadowDocument); } catch (DocumentManagerException $documentManagerException) { // @ignoreException diff --git a/Document/Subscriber/ArticleSubscriber.php b/Document/Subscriber/ArticleSubscriber.php index 7e68fa468..1aec28abe 100644 --- a/Document/Subscriber/ArticleSubscriber.php +++ b/Document/Subscriber/ArticleSubscriber.php @@ -495,7 +495,7 @@ public function handleRemoveLocaleLive(RemoveLocaleEvent $event) return; } - $this->liveIndexer->replaceWithGhostData($document, $event->getLocale()); + $this->liveIndexer->remove($document, $event->getLocale()); $this->liveIndexer->flush(); } diff --git a/Resources/translations/admin.de.json b/Resources/translations/admin.de.json index 1411b8748..fc756ab3b 100644 --- a/Resources/translations/admin.de.json +++ b/Resources/translations/admin.de.json @@ -28,5 +28,6 @@ "sulu_activity.description.articles.translation_copied": "{userFullName} hat die Sprachvariante für \"{context_sourceLocale}\" des Artikels \"{resourceTitle}\" nach \"{resourceLocale}\" kopiert", "sulu_activity.description.articles.translation_removed": "{userFullName} hat die Sprachvariante für \"{resourceLocale}\" des Artikels \"{resourceTitle}\" gelöscht", "sulu_activity.description.articles.translation_restored": "{userFullName} hat die Sprachvariante für \"{resourceLocale}\" des Artikels \"{resourceTitle}\" wiederhergestellt", - "sulu_activity.description.articles.version_restored": "{userFullName} hat die Version \"{context_version}\" des Artikels \"{resourceTitle}\" wiederhergestellt" + "sulu_activity.description.articles.version_restored": "{userFullName} hat die Version \"{context_version}\" des Artikels \"{resourceTitle}\" wiederhergestellt", + "sulu_activity.description.articles.route_removed": "{userFullName} hat die Route \"{resourceTitle}\" gelöscht." } diff --git a/Resources/translations/admin.en.json b/Resources/translations/admin.en.json index 7fb46e75b..5fb8e0d0b 100644 --- a/Resources/translations/admin.en.json +++ b/Resources/translations/admin.en.json @@ -28,5 +28,6 @@ "sulu_activity.description.articles.translation_copied": "{userFullName} has copied the \"{context_sourceLocale}\" translation of the article \"{resourceTitle}\" into \"{resourceLocale}\"", "sulu_activity.description.articles.translation_removed": "{userFullName} has removed the \"{resourceLocale}\" translation of the article \"{resourceTitle}\"", "sulu_activity.description.articles.translation_restored": "{userFullName} has restored the \"{resourceLocale}\" translation of the article \"{resourceTitle}\"", - "sulu_activity.description.articles.version_restored": "{userFullName} has restored the version \"{context_version}\" of the article \"{resourceTitle}\"" + "sulu_activity.description.articles.version_restored": "{userFullName} has restored the version \"{context_version}\" of the article \"{resourceTitle}\"", + "sulu_activity.description.articles.route_removed": "{userFullName} has removed the route \"{resourceTitle}\"." } diff --git a/Tests/Application/config/webspaces/sulu.io.xml b/Tests/Application/config/webspaces/sulu.io.xml index cf19acdff..21b61c439 100644 --- a/Tests/Application/config/webspaces/sulu.io.xml +++ b/Tests/Application/config/webspaces/sulu.io.xml @@ -9,6 +9,7 @@ + default diff --git a/Tests/Functional/Document/Index/ArticleIndexerTest.php b/Tests/Functional/Document/Index/ArticleIndexerTest.php index e66e875ce..1f1a65a49 100644 --- a/Tests/Functional/Document/Index/ArticleIndexerTest.php +++ b/Tests/Functional/Document/Index/ArticleIndexerTest.php @@ -264,6 +264,91 @@ public function testIndexShadow() $this->assertEquals($contentData['article'], 'Test content - CHANGED!'); } + public function testUnpublishedShadows(): void + { + $article = $this->createArticle( + [ + 'article' => 'Test content', + ], + 'Test Article', + 'default_with_route' + ); + $secondLocale = 'de'; + $thirdLocale = 'fr'; + + $this->updateArticle( + $article['id'], + $secondLocale, + [ + 'id' => $article['id'], + 'article' => 'Test Inhalt', + ], + 'Test Artikel Deutsch', + 'default_with_route' + ); + $this->updateArticle( + $article['id'], + $secondLocale, + [ + 'id' => $article['id'], + 'shadowOn' => true, + 'shadowBaseLanguage' => $this->locale, + ], + null, + null + ); + + $this->updateArticle( + $article['id'], + $thirdLocale, + [ + 'id' => $article['id'], + 'article' => 'Test French Content', + ], + 'Test Artikel French', + 'default_with_route' + ); + $this->updateArticle( + $article['id'], + $thirdLocale, + [ + 'id' => $article['id'], + 'shadowOn' => true, + 'shadowBaseLanguage' => $this->locale, + ], + null, + null + ); + + self::assertNotNull($this->findViewDocument($article['id'], $this->locale)); + self::assertNotNull($this->findViewDocument($article['id'], $secondLocale)); + self::assertNotNull($this->findViewDocument($article['id'], $thirdLocale)); + + $this->unpublishArticle($article['id'], $this->locale); + $this->unpublishArticle($article['id'], $secondLocale); + $this->unpublishArticle($article['id'], $thirdLocale); + + self::assertNull($this->findViewDocument($article['id'], $this->locale)); + self::assertNull($this->findViewDocument($article['id'], $secondLocale)); + self::assertNull($this->findViewDocument($article['id'], $thirdLocale)); + + // publish the shadow + $this->updateArticle( + $article['id'], + $secondLocale, + [ + 'id' => $article['id'], + ], + null, + null + ); + + // only the DE shadow should be published + self::assertNull($this->findViewDocument($article['id'], $this->locale)); + self::assertNotNull($this->findViewDocument($article['id'], $secondLocale)); + self::assertNull($this->findViewDocument($article['id'], $thirdLocale)); + } + public function testIndexPageTreeRoute() { $page = $this->createPage(); @@ -542,6 +627,18 @@ private function updateArticle( return \json_decode($this->client->getResponse()->getContent(), true); } + private function unpublishArticle($uuid, $locale = null) + { + $this->client->jsonRequest( + 'POST', + '/api/articles/' . $uuid . '?locale=' . ($locale ?: $this->locale) . '&action=unpublish' + ); + + $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); + + return \json_decode($this->client->getResponse()->getContent(), true); + } + /** * Create article page. * diff --git a/Tests/Unit/Document/Subscriber/ArticleSubscriberTest.php b/Tests/Unit/Document/Subscriber/ArticleSubscriberTest.php index 4d2a4602b..f6509564f 100644 --- a/Tests/Unit/Document/Subscriber/ArticleSubscriberTest.php +++ b/Tests/Unit/Document/Subscriber/ArticleSubscriberTest.php @@ -31,6 +31,7 @@ use Sulu\Component\DocumentManager\Event\PublishEvent; use Sulu\Component\DocumentManager\Event\RemoveDraftEvent; use Sulu\Component\DocumentManager\Event\RemoveEvent; +use Sulu\Component\DocumentManager\Event\RemoveLocaleEvent; use Sulu\Component\DocumentManager\Event\ReorderEvent; class ArticleSubscriberTest extends TestCase @@ -654,4 +655,63 @@ public function testPersistPageDataOnReorder() $this->articleSubscriber->persistPageDataOnReorder($event->reveal()); } + + public function testHandleRemoveLocaleWithInvalidDocument() + { + $event = $this->prophesize(RemoveLocaleEvent::class); + $document = $this->prophesize(\stdClass::class); // Not an ArticleDocument + $event->getDocument()->willReturn($document->reveal()); + + // Ensure the indexer methods are not called + $this->indexer->replaceWithGhostData()->shouldNotBeCalled(); + $this->indexer->flush()->shouldNotBeCalled(); + + // Call the method and make sure it doesn't throw exceptions + $this->articleSubscriber->handleRemoveLocale($event->reveal()); + } + + public function testHandleRemoveLocale() + { + $event = $this->prophesize(RemoveLocaleEvent::class); + $document = $this->prophesize(ArticleDocument::class); + $event->getDocument()->willReturn($document->reveal()); + $event->getLocale()->willReturn('en'); + + // Ensure the indexer methods are called + $this->indexer->replaceWithGhostData($document->reveal(), 'en')->shouldBeCalled(); + $this->indexer->flush()->shouldBeCalled(); + + // Call the method + $this->articleSubscriber->handleRemoveLocale($event->reveal()); + } + + public function testHandleRemoveLocaleLiveWithInvalidDocument() + { + $event = $this->prophesize(RemoveLocaleEvent::class); + $document = $this->prophesize(\stdClass::class); // Not an ArticleDocument + $event->getDocument()->willReturn($document->reveal()); + + // Ensure the liveIndexer methods are not called + $this->liveIndexer->remove()->shouldNotBeCalled(); + $this->liveIndexer->flush()->shouldNotBeCalled(); + + // Call the method and make sure it doesn't throw exceptions + $this->articleSubscriber->handleRemoveLocaleLive($event->reveal()); + } + + public function testHandleRemoveLocaleLive() + { + // Create a mock RemoveLocaleEvent with an ArticleDocument + $event = $this->prophesize(RemoveLocaleEvent::class); + $document = $this->prophesize(ArticleDocument::class); + $event->getDocument()->willReturn($document->reveal()); + $event->getLocale()->willReturn('en'); + + // Ensure the liveIndexer methods are called + $this->liveIndexer->remove($document->reveal(), 'en')->shouldBeCalled(); + $this->liveIndexer->flush()->shouldBeCalled(); + + // Call the method + $this->articleSubscriber->handleRemoveLocaleLive($event->reveal()); + } } diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index 212e58ff5..7b70dbe0b 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -975,11 +975,6 @@ parameters: count: 1 path: Document/Index/ArticleIndexer.php - - - message: "#^If condition is always true\\.$#" - count: 1 - path: Document/Index/ArticleIndexer.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\ArticleIndexer\\:\\:__construct\\(\\) has parameter \\$typeConfiguration with no value type specified in iterable type array\\.$#" count: 1 @@ -1050,16 +1045,6 @@ parameters: count: 2 path: Document/Index/ArticleIndexer.php - - - message: "#^Parameter \\#1 \\$document of method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\ArticleIndexer\\:\\:createOrUpdateArticle\\(\\) expects Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\ArticleDocument, object given\\.$#" - count: 1 - path: Document/Index/ArticleIndexer.php - - - - message: "#^Parameter \\#1 \\$document of method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\ArticleIndexer\\:\\:dispatchIndexEvent\\(\\) expects Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\ArticleDocument, object given\\.$#" - count: 1 - path: Document/Index/ArticleIndexer.php - - message: "#^Parameter \\#1 \\$metadata of method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\ArticleIndexer\\:\\:getType\\(\\) expects Sulu\\\\Component\\\\Content\\\\Metadata\\\\StructureMetadata, Sulu\\\\Component\\\\Content\\\\Metadata\\\\StructureMetadata\\|null given\\.$#" count: 2 @@ -1130,11 +1115,6 @@ parameters: count: 1 path: Document/Index/ArticleIndexer.php - - - message: "#^Unreachable statement \\- code above always terminates\\.$#" - count: 1 - path: Document/Index/ArticleIndexer.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\DocumentFactory\\:\\:__construct\\(\\) has parameter \\$documents with no value type specified in iterable type array\\.$#" count: 1 @@ -1245,11 +1225,6 @@ parameters: count: 1 path: Document/Initializer/ArticleInitializer.php - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticleNodeType\\:\\:getDeclaredSupertypeNames\\(\\) return type has no value type specified in iterable type array\\.$#" - count: 1 - path: Document/Initializer/ArticleNodeType.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticleNodeType\\:\\:getPrimaryItemName\\(\\) should return string but empty return statement found\\.$#" count: 1 @@ -1271,12 +1246,7 @@ parameters: path: Document/Initializer/ArticlePageNodeDefinition.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticlePageNodeDefinition\\:\\:getRequiredPrimaryTypeNames\\(\\) return type has no value type specified in iterable type array\\.$#" - count: 1 - path: Document/Initializer/ArticlePageNodeDefinition.php - - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticlePageNodeDefinition\\:\\:getRequiredPrimaryTypeNames\\(\\) should return array but returns null\\.$#" + message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticlePageNodeDefinition\\:\\:getRequiredPrimaryTypeNames\\(\\) should return array\\ but returns null\\.$#" count: 1 path: Document/Initializer/ArticlePageNodeDefinition.php @@ -1285,11 +1255,6 @@ parameters: count: 1 path: Document/Initializer/ArticlePageNodeDefinition.php - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticlePageNodeType\\:\\:getDeclaredSupertypeNames\\(\\) return type has no value type specified in iterable type array\\.$#" - count: 1 - path: Document/Initializer/ArticlePageNodeType.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Initializer\\\\ArticlePageNodeType\\:\\:getPrimaryItemName\\(\\) should return string but empty return statement found\\.$#" count: 1 @@ -1650,31 +1615,11 @@ parameters: count: 1 path: Document/Subscriber/ArticleSubscriber.php - - - message: "#^Cannot call method getIdentifier\\(\\) on mixed\\.$#" - count: 1 - path: Document/Subscriber/ArticleSubscriber.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\IndexerInterface\\:\\:remove\\(\\) invoked with 1 parameter, 2 required\\.$#" count: 2 path: Document/Subscriber/ArticleSubscriber.php - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:getChildren\\(\\) has parameter \\$node with no value type specified in iterable type PHPCR\\\\NodeInterface\\.$#" - count: 1 - path: Document/Subscriber/ArticleSubscriber.php - - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:getChildren\\(\\) return type has no value type specified in iterable type PHPCR\\\\NodeInterface\\.$#" - count: 1 - path: Document/Subscriber/ArticleSubscriber.php - - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:getChildren\\(\\) should return array\\ but returns array\\\\.$#" - count: 1 - path: Document/Subscriber/ArticleSubscriber.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:handleRemoveLocale\\(\\) has no return type specified\\.$#" count: 1 @@ -1685,11 +1630,6 @@ parameters: count: 1 path: Document/Subscriber/ArticleSubscriber.php - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:loadPageDataForShadow\\(\\) has parameter \\$node with no value type specified in iterable type PHPCR\\\\NodeInterface\\.$#" - count: 1 - path: Document/Subscriber/ArticleSubscriber.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:loadPageDataForShadow\\(\\) has parameter \\$originalPages with no value type specified in iterable type array\\.$#" count: 1 @@ -1710,11 +1650,6 @@ parameters: count: 1 path: Document/Subscriber/ArticleSubscriber.php - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Subscriber\\\\ArticleSubscriber\\:\\:setPageData\\(\\) has parameter \\$node with no value type specified in iterable type PHPCR\\\\NodeInterface\\.$#" - count: 1 - path: Document/Subscriber/ArticleSubscriber.php - - message: "#^Parameter \\#1 \\$document of method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Index\\\\IndexerInterface\\:\\:index\\(\\) expects Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\ArticleDocument, Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\ArticleDocument\\|null given\\.$#" count: 2 @@ -1800,16 +1735,6 @@ parameters: count: 2 path: Document/Subscriber/PageSubscriber.php - - - message: "#^Cannot call method getIdentifier\\(\\) on mixed\\.$#" - count: 1 - path: Document/Subscriber/PageSubscriber.php - - - - message: "#^Cannot call method setProperty\\(\\) on mixed\\.$#" - count: 1 - path: Document/Subscriber/PageSubscriber.php - - message: "#^Parameter \\#1 \\$pageNumber of method Sulu\\\\Bundle\\\\ArticleBundle\\\\Document\\\\Behavior\\\\PageBehavior\\:\\:setPageNumber\\(\\) expects int, mixed given\\.$#" count: 1 @@ -2065,11 +1990,6 @@ parameters: count: 1 path: Import/ArticleImport.php - - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Import\\\\ArticleImport\\:\\:importExtension\\(\\) has parameter \\$node with no value type specified in iterable type PHPCR\\\\NodeInterface\\.$#" - count: 1 - path: Import/ArticleImport.php - - message: "#^Method Sulu\\\\Bundle\\\\ArticleBundle\\\\Import\\\\ArticleImport\\:\\:importExtension\\(\\) return type has no value type specified in iterable type array\\.$#" count: 1