mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
29 lines
832 B
PHP
29 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,
|
||
|
];
|
||
|
}
|
||
|
}
|