mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
40 lines
No EOL
955 B
PHP
40 lines
No EOL
955 B
PHP
<?php namespace Api\Mobile;
|
|
|
|
use Entities\Track;
|
|
|
|
class TracksController extends Controller
|
|
{
|
|
public function latest()
|
|
{
|
|
$tracks = Track::summary()
|
|
->userDetails()
|
|
->listed()
|
|
->explicitFilter()
|
|
->published()
|
|
->with('user', 'genre', 'cover', 'album', 'album.user')->take(10);
|
|
|
|
$json = [
|
|
'total_tracks' => $tracks->count(),
|
|
'tracks' => $tracks->toArray()
|
|
];
|
|
|
|
return Response::json($json, 200);
|
|
}
|
|
|
|
public function popular()
|
|
{
|
|
$tracks = Track::popular(10)
|
|
->userDetails()
|
|
->listed()
|
|
->explicitFilter()
|
|
->published()
|
|
->with('user', 'genre', 'cover', 'album', 'album.user')->take(10);
|
|
|
|
$json = [
|
|
'total_tracks' => $tracks->count(),
|
|
'tracks' => $tracks->toArray()
|
|
];
|
|
|
|
return Response::json($json, 200);
|
|
}
|
|
} |