Pony.fm/app/models/PlaylistDownloader.php

56 lines
1.6 KiB
PHP
Raw Normal View History

2013-08-19 05:39:29 +02:00
<?php
class PlaylistDownloader {
private $_playlist;
private $_format;
function __construct($playlist, $format) {
$this->_playlist = $playlist;
$this->_format = $format;
}
function download() {
$zip = new ZipStream($this->_playlist->user->display_name . ' - ' . $this->_playlist->title . '.zip');
$zip->setComment(
'Playlist: '. $this->_playlist->title ."\r\n".
'Curator: ' . $this->_playlist->user->display_name ."\r\n".
2013-08-19 05:39:29 +02:00
'URL: ' . $this->_playlist->url ."\r\n"."\r\n".
'Downloaded on '. date('l, F jS, Y, \a\t h:i:s A') . '.'
);
$notes =
'Playlist: '. $this->_playlist->title ."\r\n".
'Curator: ' . $this->_playlist->user->display_name ."\r\n".
2013-08-19 05:39:29 +02:00
'URL: ' . $this->_playlist->url ."\r\n".
"\r\n".
$this->_playlist->description ."\r\n".
"\r\n".
"\r\n".
'Tracks' ."\r\n".
"\r\n";
$m3u = '';
$index = 1;
2013-08-19 05:39:29 +02:00
foreach ($this->_playlist->tracks as $track) {
if (!$track->is_downloadable)
continue;
$trackTarget = $track->downloadDirectory . '/' . $track->getDownloadFilenameFor($this->_format);
$zip->addLargeFile($track->getFileFor($this->_format), $trackTarget);
2013-08-19 05:39:29 +02:00
$notes .=
$index . '. ' . $track->title ."\r\n".
2013-08-19 05:39:29 +02:00
$track->description ."\r\n".
"\r\n";
$m3u .= '#EXTINF:' . $track->duration . ',' . $track->title . "\r\n";
$m3u .= '../' . $trackTarget . "\r\n";
$index++;
2013-08-19 05:39:29 +02:00
}
$playlistDir = 'Pony.fm Playlists/';
$zip->addFile($notes, $playlistDir . $this->_playlist->title . '.txt');
$zip->addFile($m3u, $playlistDir . $this->_playlist->title . '.m3u');
2013-08-19 05:39:29 +02:00
$zip->finalize();
}
}