From a0295735e21e53a82fabbfcd70b07215da040b19 Mon Sep 17 00:00:00 2001
From: llaffont <llaffont@git-test.afi-sa.fr>
Date: Fri, 16 Nov 2012 09:21:18 +0000
Subject: [PATCH] =?UTF-8?q?OsmPlayer=20peut=20=C3=AAtre=20utilis=C3=A9=20p?=
 =?UTF-8?q?our=20autre=20chose=20que=20les=20albums?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .gitattributes                                |  1 +
 .../ZendAfi/View/Helper/Album/OsmPlayer.php   | 51 +++++++++++++++++
 library/ZendAfi/View/Helper/OsmPlayer.php     | 55 +++++++------------
 library/ZendAfi/View/Helper/RenderAlbum.php   |  2 +-
 4 files changed, 72 insertions(+), 37 deletions(-)
 create mode 100644 library/ZendAfi/View/Helper/Album/OsmPlayer.php

diff --git a/.gitattributes b/.gitattributes
index 3f08122637a..c4bf1a64da4 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -2215,6 +2215,7 @@ library/ZendAfi/View/Helper/Album/BookJsonVisitor.php -text
 library/ZendAfi/View/Helper/Album/BookJsonVisitorAbstract.php -text
 library/ZendAfi/View/Helper/Album/BookMonoJsonVisitor.php -text
 library/ZendAfi/View/Helper/Album/JsonVisitor.php -text
+library/ZendAfi/View/Helper/Album/OsmPlayer.php -text
 library/ZendAfi/View/Helper/Album/RssFeedVisitor.php -text
 library/ZendAfi/View/Helper/Album/XspfPlaylistVisitor.php -text
 library/ZendAfi/View/Helper/AlbumRessourceInfos.php -text
diff --git a/library/ZendAfi/View/Helper/Album/OsmPlayer.php b/library/ZendAfi/View/Helper/Album/OsmPlayer.php
new file mode 100644
index 00000000000..c8f6e0a477e
--- /dev/null
+++ b/library/ZendAfi/View/Helper/Album/OsmPlayer.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * AFI-OPAC 2.0 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with AFI-OPAC 2.0; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+
+class ZendAfi_View_Helper_Album_OsmPlayer extends Zend_View_Helper_HtmlElement {
+	public function album_osmPlayer($album) {
+		$div_id = 'osmplayer'.$album->getId();
+
+		$xspf_url = $this->view->url(['module' => 'opac', 
+																	'controller' => 'bib-numerique',
+																	'action' => 'album-xspf-playlist', 
+																	'id' => $album->getId()]);
+
+		$podcast_url = $this->view->url(['module' => 'opac', 
+																		 'controller' => 'bib-numerique',
+																		 'action' => 'album-rss-feed', 
+																		 'id' => $album->getId()]);
+
+		$this->view->osmPlayer('#'.$div_id,
+													 ['playlist' => $xspf_url.'.xml',
+														'height' => '500px']);
+		return '<ul>'
+			.'<li>'.$this->view->tagAnchor($this->view->absoluteUrl($xspf_url.'.xspf'), 
+																		 $this->view->_('Téléchargez la playlist (VLC, WinAmp)'),
+																		 ['data-ajax' => 'false']).'</li>'
+			.'<li>'.$this->view->tagAnchor($this->view->absoluteUrl($podcast_url.'.xml'), 
+																		 $this->view->_('Podcastez l\'album (iTunes, Lecteur RSS)'),
+																		 ['data-ajax' => 'false']).'</li>'
+			.'</ul>'
+			.'<div id="'.$div_id.'"></div>';
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/OsmPlayer.php b/library/ZendAfi/View/Helper/OsmPlayer.php
index ed810d0c29b..86b18dc9eae 100644
--- a/library/ZendAfi/View/Helper/OsmPlayer.php
+++ b/library/ZendAfi/View/Helper/OsmPlayer.php
@@ -20,10 +20,24 @@
  */
 
 class ZendAfi_View_Helper_OsmPlayer extends Zend_View_Helper_HtmlElement {
-	public function osmPlayer($album) {
-		$loader = Class_ScriptLoader::getInstance();
-		$div_id = 'osmplayer'.$album->getId();
+	/**
+	 * Exemple:
+	 * $this->osmPlayer("audio.mytag", ['width' => '100%', 'height' => '200px']);
+	 * Voir: http://mediafront.org/osmplayer/index.html
+	 */
+	public function osmPlayer($selector, $options) {
+		$options = array_merge($options,
+													 ['swfplayer' => URL_ADMIN_JS.'osmplayer/minplayer/flash/minplayer.swf',
+														'logo' => URL_ADMIN_JS.'osmplayer/logo.png']);
+
+		$this->loadJS()->addJQueryReady(sprintf('$("%s").osmplayer(%s)',
+																						$selector,
+																						json_encode($options)));
+	}
 
+
+	public function loadJS() {
+		$loader = Class_ScriptLoader::getInstance();
 		foreach(['compatibility', 'flags', 'async', 'plugin', 'display'] as $js)
 			$loader->addAdminScript('osmplayer/minplayer/src/minplayer.'.$js);
 
@@ -45,37 +59,6 @@ class ZendAfi_View_Helper_OsmPlayer extends Zend_View_Helper_HtmlElement {
 		foreach(['controller', 'pager', 'playLoader', 'playlist', 'teaser'] as $template)
 			$loader->addAdminScript('osmplayer/templates/default/js/osmplayer.'.$template.'.default.js');
 
-
-		$xspf_url = $this->view->url(['module' => 'opac', 
-																	'controller' => 'bib-numerique',
-																	'action' => 'album-xspf-playlist', 
-																	'id' => $album->getId()]);
-
-		$podcast_url = $this->view->url(['module' => 'opac', 
-																		 'controller' => 'bib-numerique',
-																		 'action' => 'album-rss-feed', 
-																		 'id' => $album->getId()]);
-
-
-		$loader
-			->addStyleSheet(URL_ADMIN_JS.'osmplayer/templates/default/css/osmplayer_default.css')
-			->addJQueryReady(sprintf('$("#%s").osmplayer(%s)',
-															 $div_id,
-															 json_encode(['playlist' => $xspf_url.'.xml',
-																						'height' => '500px',
-																						'swfplayer' => URL_ADMIN_JS.'osmplayer/minplayer/flash/minplayer.swf',
-																						'logo' => URL_ADMIN_JS.'osmplayer/logo.png'])
-															 ));
-		return '<ul>'
-			.'<li>'.$this->view->tagAnchor($this->view->absoluteUrl($xspf_url.'.xspf'), 
-																		 $this->view->_('Téléchargez la playlist (VLC, WinAmp)'),
-																		 ['data-ajax' => 'false']).'</li>'
-			.'<li>'.$this->view->tagAnchor($this->view->absoluteUrl($podcast_url.'.xml'), 
-																		 $this->view->_('Podcastez l\'album (iTunes, Lecteur RSS)'),
-																		 ['data-ajax' => 'false']).'</li>'
-			.'</ul>'
-			.'<div id="'.$div_id.'"></div>';
+		return $loader->addStyleSheet(URL_ADMIN_JS.'osmplayer/templates/default/css/osmplayer_default.css');
 	}
-}
-
-?>
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/RenderAlbum.php b/library/ZendAfi/View/Helper/RenderAlbum.php
index 93f8948f49c..d54d6595048 100644
--- a/library/ZendAfi/View/Helper/RenderAlbum.php
+++ b/library/ZendAfi/View/Helper/RenderAlbum.php
@@ -37,7 +37,7 @@ class ZendAfi_View_Helper_RenderAlbum extends Zend_View_Helper_HtmlElement {
 			return $this->view->tagSlideshow($album);
 
 		if ($album->isDiaporama())
-			return $this->view->osmPlayer($album);
+			return $this->view->album_OsmPlayer($album);
 
 		if ($album->isGallica())
 			return  $this->view->gallicaPlayer($album);
-- 
GitLab