2015-11-24 11:49:47 +01: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;
|
|
|
|
|
|
|
|
use Input;
|
2016-01-06 13:50:44 +01:00
|
|
|
use Poniverse\Ponyfm\Commands\CreateGenreCommand;
|
2015-12-06 03:41:12 +01:00
|
|
|
use Poniverse\Ponyfm\Commands\DeleteGenreCommand;
|
2015-11-24 11:49:47 +01:00
|
|
|
use Poniverse\Ponyfm\Commands\RenameGenreCommand;
|
2016-01-01 01:12:30 +01:00
|
|
|
use Poniverse\Ponyfm\Models\Genre;
|
2015-11-24 11:49:47 +01:00
|
|
|
use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase;
|
|
|
|
use Response;
|
|
|
|
|
|
|
|
|
|
|
|
class GenresController extends ApiControllerBase
|
|
|
|
{
|
|
|
|
public function getIndex()
|
|
|
|
{
|
|
|
|
$this->authorize('access-admin-area');
|
|
|
|
|
|
|
|
$genres = Genre::with(['trackCountRelation' => function($query) {
|
|
|
|
$query->withTrashed();
|
2015-11-24 12:07:43 +01:00
|
|
|
}])
|
|
|
|
->orderBy('name', 'asc')
|
|
|
|
->get();
|
2015-11-24 11:49:47 +01:00
|
|
|
|
|
|
|
return Response::json([
|
|
|
|
'genres' => $genres->toArray()
|
|
|
|
], 200);
|
|
|
|
}
|
|
|
|
|
2016-01-06 13:50:44 +01:00
|
|
|
public function postCreate()
|
|
|
|
{
|
|
|
|
$command = new CreateGenreCommand(Input::get('name'));
|
|
|
|
return $this->execute($command);
|
|
|
|
}
|
2015-11-24 11:49:47 +01:00
|
|
|
|
|
|
|
public function putRename($genreId)
|
|
|
|
{
|
|
|
|
$command = new RenameGenreCommand($genreId, Input::get('name'));
|
|
|
|
return $this->execute($command);
|
|
|
|
}
|
2015-12-06 03:41:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
public function deleteGenre($genreId)
|
|
|
|
{
|
|
|
|
$command = new DeleteGenreCommand($genreId, Input::get('destination_genre_id'));
|
|
|
|
return $this->execute($command);
|
|
|
|
}
|
2015-11-24 11:49:47 +01:00
|
|
|
}
|