mirror of
https://github.com/brufdev/many-notes.git
synced 2026-05-25 04:39:07 -05:00
130 lines
3.0 KiB
PHP
130 lines
3.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Laravel\Scout\Searchable;
|
|
use Staudenmeir\LaravelAdjacencyList\Eloquent\HasRecursiveRelationships;
|
|
|
|
final class VaultNode extends Model
|
|
{
|
|
/** @use HasFactory<\Database\Factories\VaultNodeFactory> */
|
|
use HasFactory;
|
|
|
|
use HasRecursiveRelationships;
|
|
use Searchable;
|
|
|
|
/**
|
|
* Get the associated vault.
|
|
*
|
|
* @return BelongsTo<Vault, $this>
|
|
*/
|
|
public function vault(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Vault::class);
|
|
}
|
|
|
|
/**
|
|
* Get the childs for the node.
|
|
*
|
|
* @return HasMany<VaultNode, $this>
|
|
*/
|
|
public function childs(): HasMany
|
|
{
|
|
return $this->hasMany(self::class, 'parent_id');
|
|
}
|
|
|
|
/**
|
|
* The nodes that are linked to the node.
|
|
*
|
|
* @return BelongsToMany<VaultNode, $this>
|
|
*/
|
|
public function links(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(self::class, null, 'source_id', 'destination_id');
|
|
}
|
|
|
|
/**
|
|
* The nodes that are backlinked to the node.
|
|
*
|
|
* @return BelongsToMany<VaultNode, $this>
|
|
*/
|
|
public function backlinks(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(self::class, null, 'destination_id', 'source_id');
|
|
}
|
|
|
|
/**
|
|
* The tags that are linked to the node.
|
|
*
|
|
* @return BelongsToMany<Tag, $this>
|
|
*/
|
|
public function tags(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Tag::class, null, 'vault_node_id', 'tag_id');
|
|
}
|
|
|
|
/**
|
|
* Get the custom paths for the model.
|
|
*
|
|
* @return list<array{name: string, column: string, separator: string, reverse: bool}>
|
|
*/
|
|
public function getCustomPaths(): array
|
|
{
|
|
return [
|
|
[
|
|
'name' => 'full_path',
|
|
'column' => 'name',
|
|
'separator' => '/',
|
|
'reverse' => true,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the indexable data array for the model.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toSearchableArray(): array
|
|
{
|
|
/** @var CarbonImmutable $updatedAt */
|
|
$updatedAt = $this->updated_at;
|
|
|
|
return [
|
|
'id' => (string) $this->id,
|
|
'vault_id' => (string) $this->vault_id,
|
|
'name' => $this->name,
|
|
'content' => (string) $this->content,
|
|
'updated_at' => $updatedAt->timestamp,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Determine if the model should be searchable.
|
|
*/
|
|
public function shouldBeSearchable(): bool
|
|
{
|
|
return (bool) $this->is_file;
|
|
}
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'is_file' => 'boolean',
|
|
];
|
|
}
|
|
}
|