mirror of
https://github.com/koel/koel
synced 2024-12-23 19:13:06 +00:00
ab4f2210d1
* Add the API documentation * Apply fixes from StyleCI (#871)
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Interaction;
|
|
|
|
use App\Http\Requests\API\BatchInteractionRequest;
|
|
|
|
/**
|
|
* @group 3. Song interactions
|
|
*/
|
|
class BatchLikeController extends Controller
|
|
{
|
|
/**
|
|
* Like multiple songs.
|
|
*
|
|
* Like several songs at once, useful for "batch" actions. An array of "interaction" records containing the song
|
|
* and user data will be returned.
|
|
*
|
|
* @bodyParam songs array required An array of song IDs.
|
|
* @responseFile responses/interactions.json
|
|
*/
|
|
public function store(BatchInteractionRequest $request)
|
|
{
|
|
$interactions = $this->interactionService->batchLike((array) $request->songs, $request->user());
|
|
|
|
return response()->json($interactions);
|
|
}
|
|
|
|
/**
|
|
* Unlike multiple songs.
|
|
*
|
|
* Unlike several songs at once, useful for "batch" actions. An array of "interaction" records containing the song
|
|
* and user data will be returned.
|
|
*
|
|
* @bodyParam songs array required An array of song IDs.
|
|
* @responseFile responses/interactions.json
|
|
*/
|
|
public function destroy(BatchInteractionRequest $request)
|
|
{
|
|
$this->interactionService->batchUnlike((array) $request->songs, $request->user());
|
|
|
|
return response()->json();
|
|
}
|
|
}
|