Pony.fm/app/Http/Controllers/Api/Web/AlbumsController.php

200 lines
5.8 KiB
PHP
Raw Normal View History

2015-08-31 16:30:02 +02:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2015 Peter Deltchev
*
* This program 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, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Poniverse\Ponyfm\Http\Controllers\Api\Web;
2015-08-31 16:30:02 +02:00
2015-10-28 18:55:21 +01:00
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Poniverse\Ponyfm\Models\Album;
use Poniverse\Ponyfm\Commands\CreateAlbumCommand;
use Poniverse\Ponyfm\Commands\DeleteAlbumCommand;
use Poniverse\Ponyfm\Commands\EditAlbumCommand;
use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase;
use Poniverse\Ponyfm\Models\Image;
use Poniverse\Ponyfm\Models\ResourceLogItem;
2016-01-01 03:27:21 +01:00
use Auth;
use Input;
2016-02-25 20:00:12 +01:00
use Poniverse\Ponyfm\Models\User;
2016-01-01 03:27:21 +01:00
use Response;
use Poniverse\Ponyfm\Models\Track;
2015-08-31 16:30:02 +02:00
2015-09-06 19:21:11 +02:00
class AlbumsController extends ApiControllerBase
2015-08-31 16:30:02 +02:00
{
public function postCreate()
{
return $this->execute(new CreateAlbumCommand(Input::all()));
}
public function postEdit($id)
{
return $this->execute(new EditAlbumCommand($id, Input::all()));
}
public function postDelete($id)
{
return $this->execute(new DeleteAlbumCommand($id));
}
public function getShow($id)
{
$album = Album::with([
'tracks' => function ($query) {
$query->userDetails();
},
'tracks.cover',
'tracks.genre',
'tracks.user',
'user',
'comments',
'comments.user'
])
->userDetails()
->find($id);
if (!$album) {
App::abort(404);
}
if (Input::get('log')) {
ResourceLogItem::logItem('album', $id, ResourceLogItem::VIEW);
$album->view_count++;
}
$returned_album = Album::mapPublicAlbumShow($album);
if ($returned_album['is_downloadable'] == 0) {
unset($returned_album['formats']);
}
return Response::json([
'album' => $returned_album
], 200);
}
2015-10-28 18:55:21 +01:00
public function getCachedAlbum($id, $format)
{
// Validation
try {
/** @var Album $album */
2015-11-01 17:49:28 +01:00
$album = Album::with('tracks.trackFiles')->findOrFail($id);
2015-10-28 18:55:21 +01:00
} catch (ModelNotFoundException $e) {
return $this->notFound('Album not found!');
}
2015-11-01 17:49:28 +01:00
if (!in_array($format, Track::$CacheableFormats)) {
2015-10-28 18:55:21 +01:00
return $this->notFound('Format not found!');
}
$trackCount = $album->countDownloadableTracks($format);
$availableFilesCount = $album->countAvailableTrackFiles($format);
2015-10-28 18:55:21 +01:00
if ($trackCount === $availableFilesCount) {
2015-10-28 18:55:21 +01:00
$url = $album->getDownloadUrl($format);
} else {
2015-11-01 17:49:28 +01:00
$album->encodeCacheableTrackFiles($format);
2015-10-28 18:55:21 +01:00
$url = null;
}
return Response::json(['url' => $url], 200);
}
2015-08-31 16:30:02 +02:00
public function getIndex()
{
$page = 1;
if (Input::has('page')) {
$page = Input::get('page');
}
$query = Album::summary()
->with('user', 'user.avatar', 'cover')
->userDetails()
->orderBy('title', 'asc')
2015-08-31 16:30:02 +02:00
->where('track_count', '>', 0);
$count = $query->count();
$perPage = 40;
$query->skip(($page - 1) * $perPage)->take($perPage);
$albums = [];
foreach ($query->get() as $album) {
$albums[] = Album::mapPublicAlbumSummary($album);
}
return Response::json(["albums" => $albums, "current_page" => $page, "total_pages" => ceil($count / $perPage)],
200);
}
2016-02-25 20:00:12 +01:00
public function getOwned($id)
2015-08-31 16:30:02 +02:00
{
2016-02-25 20:00:12 +01:00
$user = User::findOrFail($id);
$this->authorize('get-albums', $user);
$query = Album::summary()->where('user_id', $id)->orderBy('created_at', 'desc')->get();
2015-08-31 16:30:02 +02:00
$albums = [];
foreach ($query as $album) {
$albums[] = [
'id' => $album->id,
'title' => $album->title,
'slug' => $album->slug,
2015-12-26 21:59:45 +01:00
'created_at' => $album->created_at->format('c'),
2015-08-31 16:30:02 +02:00
'covers' => [
'small' => $album->getCoverUrl(Image::SMALL),
'normal' => $album->getCoverUrl(Image::NORMAL)
]
];
}
return Response::json($albums, 200);
}
public function getEdit($id)
{
$album = Album::with('tracks')->find($id);
if (!$album) {
return $this->notFound('Album ' . $id . ' not found!');
}
if ($album->user_id != Auth::user()->id) {
return $this->notAuthorized();
}
$tracks = [];
foreach ($album->tracks as $track) {
$tracks[] = [
'id' => $track->id,
'title' => $track->title
];
}
return Response::json([
'id' => $album->id,
'title' => $album->title,
'user_id' => $album->user_id,
'slug' => $album->slug,
'created_at' => $album->created_at,
'published_at' => $album->published_at,
'description' => $album->description,
'cover_url' => $album->hasCover() ? $album->getCoverUrl(Image::NORMAL) : null,
'real_cover_url' => $album->getCoverUrl(Image::NORMAL),
'tracks' => $tracks
], 200);
}
}