2011-07-22 08:30:52 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - media plugin
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2010 Robin Appelman icewind1991@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
header('Content-type: text/html; charset=UTF-8') ;
|
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkAppEnabled('media');
|
2011-07-22 08:30:52 +04:00
|
|
|
|
|
|
|
error_reporting(E_ALL); //no script error reporting because of getID3
|
|
|
|
|
|
|
|
$arguments=$_POST;
|
2011-07-22 21:37:00 +04:00
|
|
|
|
2011-07-22 08:30:52 +04:00
|
|
|
if(!isset($_POST['action']) and isset($_GET['action'])){
|
|
|
|
$arguments=$_GET;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($arguments as &$argument){
|
|
|
|
$argument=stripslashes($argument);
|
|
|
|
}
|
2011-07-22 21:37:00 +04:00
|
|
|
@ob_clean();
|
2011-07-22 08:30:52 +04:00
|
|
|
if(!isset($arguments['artist'])){
|
|
|
|
$arguments['artist']=0;
|
|
|
|
}
|
|
|
|
if(!isset($arguments['album'])){
|
|
|
|
$arguments['album']=0;
|
|
|
|
}
|
|
|
|
if(!isset($arguments['search'])){
|
|
|
|
$arguments['search']='';
|
|
|
|
}
|
2012-05-01 20:50:31 +04:00
|
|
|
OC_MEDIA_COLLECTION::$uid=OCP\USER::getUser();
|
2011-07-22 08:30:52 +04:00
|
|
|
if($arguments['action']){
|
|
|
|
switch($arguments['action']){
|
|
|
|
case 'delete':
|
|
|
|
$path=$arguments['path'];
|
|
|
|
OC_MEDIA_COLLECTION::deleteSongByPath($path);
|
2012-05-02 17:54:34 +04:00
|
|
|
$paths=explode(PATH_SEPARATOR,OCP\Config::getUserValue(OCP\USER::getUser(),'media','paths',''));
|
2011-07-22 08:30:52 +04:00
|
|
|
if(array_search($path,$paths)!==false){
|
|
|
|
unset($paths[array_search($path,$paths)]);
|
2012-05-02 17:54:34 +04:00
|
|
|
OCP\Config::setUserValue(OCP\USER::getUser(),'media','paths',implode(PATH_SEPARATOR,$paths));
|
2011-07-22 08:30:52 +04:00
|
|
|
}
|
|
|
|
case 'get_collection':
|
2011-08-21 17:28:20 +04:00
|
|
|
$data=array();
|
|
|
|
$data['artists']=OC_MEDIA_COLLECTION::getArtists();
|
|
|
|
$data['albums']=OC_MEDIA_COLLECTION::getAlbums();
|
|
|
|
$data['songs']=OC_MEDIA_COLLECTION::getSongs();
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint($data);
|
2011-07-22 08:30:52 +04:00
|
|
|
break;
|
|
|
|
case 'scan':
|
2012-05-03 15:06:08 +04:00
|
|
|
OCP\DB::beginTransaction();
|
2011-07-22 08:30:52 +04:00
|
|
|
set_time_limit(0); //recursive scan can take a while
|
2012-02-08 20:30:16 +04:00
|
|
|
$eventSource=new OC_EventSource();
|
|
|
|
OC_MEDIA_SCANNER::scanCollection($eventSource);
|
|
|
|
$eventSource->close();
|
2012-05-03 15:06:08 +04:00
|
|
|
OCP\DB::commit();
|
2011-07-22 08:30:52 +04:00
|
|
|
break;
|
|
|
|
case 'scanFile':
|
|
|
|
echo (OC_MEDIA_SCANNER::scanFile($arguments['path']))?'true':'false';
|
|
|
|
break;
|
|
|
|
case 'get_artists':
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint(OC_MEDIA_COLLECTION::getArtists($arguments['search']));
|
2011-07-22 08:30:52 +04:00
|
|
|
break;
|
|
|
|
case 'get_albums':
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint(OC_MEDIA_COLLECTION::getAlbums($arguments['artist'],$arguments['search']));
|
2011-07-22 08:30:52 +04:00
|
|
|
break;
|
|
|
|
case 'get_songs':
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint(OC_MEDIA_COLLECTION::getSongs($arguments['artist'],$arguments['album'],$arguments['search']));
|
2011-07-22 08:30:52 +04:00
|
|
|
break;
|
2011-08-01 02:32:44 +04:00
|
|
|
case 'get_path_info':
|
2011-08-02 01:53:01 +04:00
|
|
|
if(OC_Filesystem::file_exists($arguments['path'])){
|
|
|
|
$songId=OC_MEDIA_COLLECTION::getSongByPath($arguments['path']);
|
|
|
|
if($songId==0){
|
|
|
|
unset($_SESSION['collection']);
|
|
|
|
$songId= OC_MEDIA_SCANNER::scanFile($arguments['path']);
|
|
|
|
}
|
|
|
|
if($songId>0){
|
|
|
|
$song=OC_MEDIA_COLLECTION::getSong($songId);
|
|
|
|
$song['artist']=OC_MEDIA_COLLECTION::getArtistName($song['song_artist']);
|
|
|
|
$song['album']=OC_MEDIA_COLLECTION::getAlbumName($song['song_album']);
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint($song);
|
2011-08-02 01:53:01 +04:00
|
|
|
}
|
2011-08-01 02:32:44 +04:00
|
|
|
}
|
|
|
|
break;
|
2011-07-22 08:30:52 +04:00
|
|
|
case 'play':
|
2011-10-17 02:24:07 +04:00
|
|
|
@ob_end_clean();
|
2011-07-22 08:30:52 +04:00
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
$ftype=OC_Filesystem::getMimeType( $arguments['path'] );
|
2012-06-09 19:39:14 +04:00
|
|
|
if(substr($ftype,0,5)!='audio' and $ftype!='application/ogg'){
|
|
|
|
echo 'Not an audio file';
|
|
|
|
exit();
|
|
|
|
}
|
2011-07-22 08:30:52 +04:00
|
|
|
|
2011-07-28 22:59:36 +04:00
|
|
|
$songId=OC_MEDIA_COLLECTION::getSongByPath($arguments['path']);
|
|
|
|
OC_MEDIA_COLLECTION::registerPlay($songId);
|
|
|
|
|
2011-07-22 08:30:52 +04:00
|
|
|
header('Content-Type:'.$ftype);
|
2012-05-03 12:46:27 +04:00
|
|
|
OCP\Response::enableCaching(3600 * 24); // 24 hour
|
2011-08-01 18:43:02 +04:00
|
|
|
header('Accept-Ranges: bytes');
|
2011-07-29 23:36:03 +04:00
|
|
|
header('Content-Length: '.OC_Filesystem::filesize($arguments['path']));
|
2012-02-14 02:48:05 +04:00
|
|
|
$mtime = OC_Filesystem::filemtime($arguments['path']);
|
2012-05-03 12:46:27 +04:00
|
|
|
OCP\Response::setLastModifiedHeader($mtime);
|
2011-07-22 08:30:52 +04:00
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Filesystem::readfile($arguments['path']);
|
2011-07-22 08:30:52 +04:00
|
|
|
exit;
|
2011-08-02 01:53:01 +04:00
|
|
|
case 'find_music':
|
2012-02-26 06:42:15 +04:00
|
|
|
$music=OC_FileCache::searchByMime('audio');
|
|
|
|
$ogg=OC_FileCache::searchByMime('application','ogg');
|
|
|
|
$music=array_merge($music,$ogg);
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint($music);
|
2011-08-02 01:53:01 +04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
2012-05-28 15:57:45 +04:00
|
|
|
?>
|