diff --git a/VERSIONS_HOTLINE/76959 b/VERSIONS_HOTLINE/76959 index 9e18fb2fd6f602a64b12560eddc05723a83e561a..a90c8b5e27a16f16472a3c185c9a49c4f2aa6592 100644 --- a/VERSIONS_HOTLINE/76959 +++ b/VERSIONS_HOTLINE/76959 @@ -1,2 +1,4 @@ - - ticket #76959 : Explorateur de fichiers : correction du vignettage des images. + - ticket #76959 : Ressources numériques : correction du vignettage des images. + + \ No newline at end of file diff --git a/application/modules/admin/controllers/RecordsController.php b/application/modules/admin/controllers/RecordsController.php index e96e98d516c36bdce0f553659c5e5b28144d3400..c3d0296bb7bd11d1b8f40804ca90757a674bdfe3 100644 --- a/application/modules/admin/controllers/RecordsController.php +++ b/application/modules/admin/controllers/RecordsController.php @@ -27,6 +27,16 @@ class Admin_RecordsController extends ZendAfi_Controller_Action { return $this->_redirectToReferer(); } + if ($album = $record->getAlbum()){ + $album->createThumbnail(); + $url_vignette = $album->getThumbnailUrl(); + $record->setUrlVignette($url_vignette); + $record->setUrlImage($url_vignette); + $record->save(); + + $this->_helper->notify($this->_('Vignette réinitialisée pour "%s"', $record->getTitrePrincipal())); + return $this->_redirectToReferer(); + } $record ->setUrlImage('') diff --git a/library/Class/Album.php b/library/Class/Album.php index a327e18ca146cf59e64325d7eb8026e3ab95ddc4..7e8f2dacb0c08bf3a53a1692812ac2329df80757 100644 --- a/library/Class/Album.php +++ b/library/Class/Album.php @@ -685,8 +685,8 @@ class Class_Album extends Storm_Model_Abstract { $on_update = function($old_file, $new_file) use ($to_delete) { if ($old_file && $old_file != $new_file) - foreach($to_delete as $item) - $this->getFileSystem()->unlink($item); + foreach($to_delete as $item) + $this->getFileSystem()->unlink($item); $this->createThumbnail(); @@ -723,6 +723,9 @@ class Class_Album extends Storm_Model_Abstract { if (!$this->hasFichier()) return true; + if ($this->getFileSystem()->file_exists($this->getThumbnailPath())) + return true; + try { $image = new Imagick($this->getVignettePath()); $image->thumbnailImage(160, 0); diff --git a/library/Class/Indexation/PseudoNotice.php b/library/Class/Indexation/PseudoNotice.php index 6ecd6d4d581f1c725a6b7f7e78ff653829cd8e5a..16f58ab1afb965985e0037199e278cdb6a3d4ed9 100644 --- a/library/Class/Indexation/PseudoNotice.php +++ b/library/Class/Indexation/PseudoNotice.php @@ -441,6 +441,7 @@ class Class_Indexation_PseudoNotice_Album extends Class_Indexation_PseudoNotice{ protected function _index() { + $this->_model->createThumbnail(); $url_vignette = $this->_model->getThumbnailUrl(); $this->_notice->setUrlVignette($url_vignette); $this->_notice->setUrlImage($url_vignette); diff --git a/tests/application/modules/admin/controllers/RecordsControllerTest.php b/tests/application/modules/admin/controllers/RecordsControllerTest.php index 10637e8e9a7b82036f0caf4edf41f002587e39e8..526b154471e2ffc4ce83daf10dce23ce4ed6bbdd 100644 --- a/tests/application/modules/admin/controllers/RecordsControllerTest.php +++ b/tests/application/modules/admin/controllers/RecordsControllerTest.php @@ -96,6 +96,58 @@ class RecordsControllerResetThumbnailTest extends RecordsControllerTestCase { +class RecordsControllerResetAlbumThumbnailTest extends RecordsControllerTestCase { + public function setUp() { + parent::setUp(); + + $album = $this->fixture('Class_Album', + ['id' => 5, + 'visible' => 1, + 'status' => 3, + 'titre' => 'Potter', + 'fichier' => 'potter.png']); + + $album->setFileSystem($this->mock() + ->whenCalled('file_exists') + ->with('./userfiles/album/5/thumb_potter.png') + ->answers(true)); + + $album->index(); + $id = $album->getNoticeId(); + + $this->dispatch('/admin/records/reset-thumbnail/id/12345', true); + + Class_Notice::clearCache(); + $this->_notice = Class_Notice::find($id); + } + + + /** @test */ + public function urlImageShouldPotter() { + $this->assertContains('/userfiles/album/5/thumb_potter.png', $this->_notice->getUrlImage()); + } + + + /** @test */ + public function urlThumbnailShouldBePotter() { + $this->assertContains('/userfiles/album/5/thumb_potter.png', $this->_notice->getUrlVignette()); + } + + + /** @test */ + public function actionShouldRedirect() { + $this->assertRedirect(); + } + + + /** @test */ + public function responseShouldNotifyRecordUpdated() { + $this->assertFlashMessengerContentContains('Vignette réinitialisée pour "Harry Potter"'); + } +} + + + class RecordsControllerResetThumbnailUnknowRecordTest extends RecordsControllerTestCase { public function setUp() { parent::setUp();