74 lines
2.0 KiB
PHP
74 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use App\Fileshare\Data\FileshareResourceData;
|
|
use App\Group\Enums\Level;
|
|
use App\Nami\HasNamiField;
|
|
use Database\Factories\GroupFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Group extends Model
|
|
{
|
|
/** @use HasFactory<GroupFactory> */
|
|
use HasFactory;
|
|
use HasNamiField;
|
|
|
|
public $fillable = ['nami_id', 'name', 'inner_name', 'level', 'parent_id', 'fileshare'];
|
|
public $timestamps = false;
|
|
|
|
public $casts = [
|
|
'level' => Level::class,
|
|
'fileshare' => FileshareResourceData::class,
|
|
];
|
|
|
|
/**
|
|
* @return BelongsTo<self, self>
|
|
*/
|
|
public function parent(): BelongsTo
|
|
{
|
|
return $this->belongsTo(self::class, 'parent_id');
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<self>
|
|
*/
|
|
public function children(): HasMany
|
|
{
|
|
return $this->hasMany(self::class, 'parent_id');
|
|
}
|
|
|
|
public static function booted(): void
|
|
{
|
|
static::creating(function (self $group) {
|
|
if (!$group->getAttribute('inner_name') && $group->getAttribute('name')) {
|
|
$group->setAttribute('inner_name', $group->getAttribute('name'));
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @return array<int, array{id: int, name: string}>
|
|
*/
|
|
public static function forSelect(?self $parent = null, string $prefix = ''): array
|
|
{
|
|
$result = self::where('parent_id', $parent ? $parent->id : null)->withCount('children')->get();
|
|
|
|
return $result
|
|
->reduce(
|
|
fn ($before, $group) => $before->concat([['id' => $group->id, 'name' => $prefix . ($group->display())]])
|
|
->concat($group->children_count > 0 ? self::forSelect($group, $prefix . '-- ') : []),
|
|
collect([])
|
|
)
|
|
->toArray();
|
|
}
|
|
|
|
public function display(): string
|
|
{
|
|
return $this->inner_name ?: $this->name;
|
|
}
|
|
}
|