mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
121 lines
3.4 KiB
PHP
121 lines
3.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Pivots\Morph;
|
|
|
|
use App\Contracts\Models\HasResources;
|
|
use App\Contracts\Models\Nameable;
|
|
use App\Events\Pivot\Morph\Resourceable\ResourceableCreated;
|
|
use App\Events\Pivot\Morph\Resourceable\ResourceableDeleted;
|
|
use App\Events\Pivot\Morph\Resourceable\ResourceableUpdated;
|
|
use App\Models\Wiki\Anime;
|
|
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry;
|
|
use App\Models\Wiki\Artist;
|
|
use App\Models\Wiki\ExternalResource;
|
|
use App\Models\Wiki\Song;
|
|
use App\Models\Wiki\Studio;
|
|
use App\Pivots\BaseMorphPivot;
|
|
use Database\Factories\Pivots\Morph\ResourceableFactory;
|
|
use Illuminate\Database\Eloquent\Attributes\Table;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
/**
|
|
* @property Model&HasResources&Nameable $resourceable
|
|
* @property string $resourceable_type
|
|
* @property int $resourceable_id
|
|
* @property string|null $as
|
|
* @property ExternalResource $resource
|
|
* @property int $resource_id
|
|
*
|
|
* @method static ResourceableFactory factory(...$parameters)
|
|
*/
|
|
#[Table(Resourceable::TABLE)]
|
|
class Resourceable extends BaseMorphPivot
|
|
{
|
|
final public const string TABLE = 'resourceables';
|
|
|
|
final public const string ATTRIBUTE_AS = 'as';
|
|
final public const string ATTRIBUTE_RESOURCE = 'resource_id';
|
|
final public const string ATTRIBUTE_RESOURCEABLE_TYPE = 'resourceable_type';
|
|
final public const string ATTRIBUTE_RESOURCEABLE_ID = 'resourceable_id';
|
|
|
|
final public const string RELATION_RESOURCE = 'resource';
|
|
final public const string RELATION_RESOURCEABLE = 'resourceable';
|
|
|
|
/**
|
|
* The models that have resources.
|
|
*
|
|
* @var class-string<Model&HasResources>[]
|
|
*/
|
|
public static $resourceables = [
|
|
Anime::class,
|
|
AnimeThemeEntry::class,
|
|
Artist::class,
|
|
Song::class,
|
|
Studio::class,
|
|
];
|
|
|
|
/**
|
|
* The event map for the model.
|
|
*
|
|
* Allows for object-based events for native Eloquent events.
|
|
*
|
|
* @var array<string, class-string>
|
|
*/
|
|
protected $dispatchesEvents = [
|
|
'created' => ResourceableCreated::class,
|
|
'deleted' => ResourceableDeleted::class,
|
|
'updated' => ResourceableUpdated::class,
|
|
];
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
Resourceable::ATTRIBUTE_AS,
|
|
Resourceable::ATTRIBUTE_RESOURCE,
|
|
Resourceable::ATTRIBUTE_RESOURCEABLE_TYPE,
|
|
Resourceable::ATTRIBUTE_RESOURCEABLE_ID,
|
|
];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
Resourceable::ATTRIBUTE_AS => 'string',
|
|
Resourceable::ATTRIBUTE_RESOURCE => 'int',
|
|
Resourceable::ATTRIBUTE_RESOURCEABLE_TYPE => 'string',
|
|
Resourceable::ATTRIBUTE_RESOURCEABLE_ID => 'int',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Gets the resource that owns the resourceable.
|
|
*
|
|
* @return BelongsTo<ExternalResource, $this>
|
|
*/
|
|
public function resource(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ExternalResource::class, Resourceable::ATTRIBUTE_RESOURCE);
|
|
}
|
|
|
|
/**
|
|
* Gets the model that owns the resourceable.
|
|
*
|
|
* @return MorphTo<Model, $this>
|
|
*/
|
|
public function resourceable(): MorphTo
|
|
{
|
|
return $this->morphTo(Resourceable::RELATION_RESOURCEABLE);
|
|
}
|
|
}
|