Add Downloader models

This commit is contained in:
Kelvin Zhang 2015-08-31 15:19:03 +01:00
parent 32e19fb4e5
commit 0f8d11fa83
2 changed files with 113 additions and 0 deletions

53
app/AlbumDownloader.php Normal file
View file

@ -0,0 +1,53 @@
<?php
class AlbumDownloader
{
private $_album;
private $_format;
function __construct($album, $format)
{
$this->_album = $album;
$this->_format = $format;
}
function download()
{
$zip = new ZipStream($this->_album->user->display_name . ' - ' . $this->_album->title . '.zip');
$zip->setComment(
'Album: ' . $this->_album->title . "\r\n" .
'Artist: ' . $this->_album->user->display_name . "\r\n" .
'URL: ' . $this->_album->url . "\r\n" . "\r\n" .
'Downloaded on ' . date('l, F jS, Y, \a\t h:i:s A') . '.'
);
$directory = $this->_album->user->display_name . '/' . $this->_album->title . '/';
$notes =
'Album: ' . $this->_album->title . "\r\n" .
'Artist: ' . $this->_album->user->display_name . "\r\n" .
'URL: ' . $this->_album->url . "\r\n" .
"\r\n" .
$this->_album->description . "\r\n" .
"\r\n" .
"\r\n" .
'Tracks' . "\r\n" .
"\r\n";
foreach ($this->_album->tracks as $track) {
if (!$track->is_downloadable) {
continue;
}
$zip->addLargeFile($track->getFileFor($this->_format),
$directory . $track->getDownloadFilenameFor($this->_format));
$notes .=
$track->track_number . '. ' . $track->title . "\r\n" .
$track->description . "\r\n" .
"\r\n";
}
$zip->addFile($notes, $directory . 'Album Notes.txt');
$zip->finalize();
}
}

View file

@ -0,0 +1,60 @@
<?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" .
'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" .
'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;
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);
$notes .=
$index . '. ' . $track->title . "\r\n" .
$track->description . "\r\n" .
"\r\n";
$m3u .= '#EXTINF:' . $track->duration . ',' . $track->title . "\r\n";
$m3u .= '../' . $trackTarget . "\r\n";
$index++;
}
$playlistDir = 'Pony.fm Playlists/';
$zip->addFile($notes, $playlistDir . $this->_playlist->title . '.txt');
$zip->addFile($m3u, $playlistDir . $this->_playlist->title . '.m3u');
$zip->finalize();
}
}