From 8ef6a146521d75545f0b34dabfcdd6ed0745ccde Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Thu, 10 Aug 2023 00:37:25 +0100 Subject: [PATCH] Resolve self depreciation --- .../CoreBundle/Command/UpdatePicturesPathCommand.php | 12 ++++++++---- .../CoreBundle/Controller/EntryController.php | 2 +- src/Wallabag/CoreBundle/Controller/TagController.php | 2 +- .../CoreBundle/Form/Type/EntryFilterType.php | 2 +- src/Wallabag/CoreBundle/Twig/WallabagExtension.php | 8 ++++++++ .../CoreBundle/Twig/WallabagExtensionTest.php | 3 +++ 6 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/Wallabag/CoreBundle/Command/UpdatePicturesPathCommand.php b/src/Wallabag/CoreBundle/Command/UpdatePicturesPathCommand.php index bac1932b5..2e9c1d7d6 100644 --- a/src/Wallabag/CoreBundle/Command/UpdatePicturesPathCommand.php +++ b/src/Wallabag/CoreBundle/Command/UpdatePicturesPathCommand.php @@ -46,11 +46,15 @@ class UpdatePicturesPathCommand extends Command $io->text('Retrieve existing entries'); $i = 1; foreach ($query->toIterable() as $entry) { - $content = str_replace($oldUrl, $this->wallabagUrl, $entry->getContent()); - $entry->setContent($content); + $content = $entry->getContent(); + if (null !== $content) { + $entry->setContent(str_replace($oldUrl, $this->wallabagUrl, $content)); + } - $previewPicture = str_replace($oldUrl, $this->wallabagUrl, $entry->getPreviewPicture()); - $entry->setPreviewPicture($previewPicture); + $previewPicture = $entry->getPreviewPicture(); + if (null !== $previewPicture) { + $entry->setPreviewPicture(str_replace($oldUrl, $this->wallabagUrl, $previewPicture)); + } if (0 === ($i % 20)) { $this->entityManager->flush(); diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php index 6c9cfe3f0..0084e08bd 100644 --- a/src/Wallabag/CoreBundle/Controller/EntryController.php +++ b/src/Wallabag/CoreBundle/Controller/EntryController.php @@ -518,7 +518,7 @@ class EntryController extends AbstractController ); // don't redirect user to the deleted entry (check that the referer doesn't end with the same url) - $prev = $request->getSession()->get('prevUrl'); + $prev = $request->getSession()->get('prevUrl', ''); $to = (1 !== preg_match('#' . $url . '$#i', $prev) ? $prev : null); $redirectUrl = $this->redirectHelper->to($to); diff --git a/src/Wallabag/CoreBundle/Controller/TagController.php b/src/Wallabag/CoreBundle/Controller/TagController.php index 6e147df98..d0e5a5aa6 100644 --- a/src/Wallabag/CoreBundle/Controller/TagController.php +++ b/src/Wallabag/CoreBundle/Controller/TagController.php @@ -45,7 +45,7 @@ class TagController extends AbstractController $form = $this->createForm(NewTagType::class, new Tag()); $form->handleRequest($request); - $tags = $form->get('label')->getData(); + $tags = $form->get('label')->getData() ?? ''; $tagsExploded = explode(',', $tags); // avoid too much tag to be added diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php index c494a6a3e..2b335db50 100644 --- a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php +++ b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php @@ -94,7 +94,7 @@ class EntryFilterType extends AbstractType ->add('domainName', TextFilterType::class, [ 'apply_filter' => function (QueryInterface $filterQuery, $field, $values) { $value = $values['value']; - if (\strlen($value) <= 2 || empty($value)) { + if (empty($value) || \strlen($value) <= 2) { return false; } $expression = $filterQuery->getExpr()->like($field, $filterQuery->getExpr()->lower($filterQuery->getExpr()->literal('%' . $value . '%'))); diff --git a/src/Wallabag/CoreBundle/Twig/WallabagExtension.php b/src/Wallabag/CoreBundle/Twig/WallabagExtension.php index 0f588cf19..676f0fce0 100644 --- a/src/Wallabag/CoreBundle/Twig/WallabagExtension.php +++ b/src/Wallabag/CoreBundle/Twig/WallabagExtension.php @@ -58,11 +58,19 @@ class WallabagExtension extends AbstractExtension implements GlobalsInterface public function removeWww($url) { + if (!\is_string($url)) { + return $url; + } + return preg_replace('/^www\./i', '', $url); } public function removeScheme($url) { + if (!\is_string($url)) { + return $url; + } + return preg_replace('#^https?://#i', '', $url); } diff --git a/tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php b/tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php index 824f7a54c..463eef477 100644 --- a/tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php +++ b/tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php @@ -59,6 +59,7 @@ class WallabagExtensionTest extends TestCase $this->assertSame('lemonde.fr', $extension->removeScheme('lemonde.fr')); $this->assertSame('gist.github.com', $extension->removeScheme('gist.github.com')); $this->assertSame('gist.github.com', $extension->removeScheme('https://gist.github.com')); + $this->assertSame('gist.github.com', $extension->removeScheme('http://gist.github.com')); } public function testRemoveSchemeAndWww() @@ -82,8 +83,10 @@ class WallabagExtensionTest extends TestCase $extension = new WallabagExtension($entryRepository, $tagRepository, $tokenStorage, 0, $translator, ''); $this->assertSame('lemonde.fr', $extension->removeSchemeAndWww('www.lemonde.fr')); + $this->assertSame('lemonde.fr', $extension->removeSchemeAndWww('http://www.lemonde.fr')); $this->assertSame('lemonde.fr', $extension->removeSchemeAndWww('http://lemonde.fr')); $this->assertSame('lemonde.fr', $extension->removeSchemeAndWww('https://www.lemonde.fr')); + $this->assertSame('lemonde.fr', $extension->removeSchemeAndWww('https://lemonde.fr')); $this->assertSame('gist.github.com', $extension->removeSchemeAndWww('https://gist.github.com')); $this->assertSame('ftp://gist.github.com', $extension->removeSchemeAndWww('ftp://gist.github.com')); }