mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
28 lines
832 B
PHP
28 lines
832 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Models\Interaction;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class InteractionResource extends JsonResource
|
|
{
|
|
public function __construct(private Interaction $interaction)
|
|
{
|
|
parent::__construct($interaction);
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function toArray($request): array
|
|
{
|
|
return [
|
|
'type' => 'interactions',
|
|
'id' => $this->interaction->id,
|
|
'songId' => $this->interaction->song_id, // @fixme backwards compatibility
|
|
'song_id' => $this->interaction->song_id,
|
|
'liked' => $this->interaction->liked,
|
|
'playCount' => $this->interaction->play_count, // @fixme backwards compatibility
|
|
'play_count' => $this->interaction->play_count,
|
|
];
|
|
}
|
|
}
|