mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
37 lines
1 KiB
PHP
37 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Models\Artist;
|
|
use App\Models\Interaction;
|
|
use App\Models\Playlist;
|
|
use App\Models\Setting;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
|
|
class DataController extends Controller
|
|
{
|
|
/**
|
|
* Get a set of application data.
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function index()
|
|
{
|
|
$playlists = Playlist::byCurrentUser()->orderBy('name')->with('songs')->get()->toArray();
|
|
|
|
// We don't need full song data, just ID's
|
|
foreach ($playlists as &$playlist) {
|
|
$playlist['songs'] = array_pluck($playlist['songs'], 'id');
|
|
}
|
|
|
|
return response()->json([
|
|
'artists' => Artist::orderBy('name')->with('albums', with('albums.songs'))->get(),
|
|
'settings' => Setting::all()->lists('value', 'key'),
|
|
'playlists' => $playlists,
|
|
'interactions' => Interaction::byCurrentUser()->get(),
|
|
'users' => auth()->user()->is_admin ? User::all() : [],
|
|
'user' => auth()->user(),
|
|
]);
|
|
}
|
|
}
|