. */ namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; 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; use Auth; use Gate; use Input; use Poniverse\Ponyfm\Models\User; use Response; use Poniverse\Ponyfm\Models\Track; class AlbumsController extends ApiControllerBase { 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', 'tracks.user.avatar', 'tracks.trackFiles', 'user', 'user.avatar', '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); } public function getCachedAlbum($id, $format) { // Validation try { /** @var Album $album */ $album = Album::with('tracks.trackFiles')->findOrFail($id); } catch (ModelNotFoundException $e) { return $this->notFound('Album not found!'); } if (!in_array($format, Track::$CacheableFormats)) { return $this->notFound('Format not found!'); } $trackCount = $album->countDownloadableTracks($format); $availableFilesCount = $album->countAvailableTrackFiles($format); if ($trackCount === $availableFilesCount) { $url = $album->getDownloadUrl($format); } else { $album->encodeCacheableTrackFiles($format); $url = null; } return Response::json(['url' => $url], 200); } 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') ->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); } public function getOwned(User $user) { $this->authorize('get-albums', $user); $query = Album::summary() ->with('cover', 'user.avatar') ->where('user_id', $user->id) ->orderBy('created_at', 'desc')->get(); $albums = []; foreach ($query as $album) { $albums[] = [ 'id' => $album->id, 'title' => $album->title, 'slug' => $album->slug, 'created_at' => $album->created_at->format('c'), '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 (Gate::denies('edit', Auth::user())) { 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, 'username' => User::whereId($album->user_id)->first()->username, '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); } }