mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 16:14:03 +00:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Database\Concerns;
|
|
|
|
use Stancl\Tenancy\Contracts\Syncable;
|
|
use Stancl\Tenancy\Contracts\UniqueIdentifierGenerator;
|
|
use Stancl\Tenancy\Events\SyncedResourceSaved;
|
|
|
|
trait ResourceSyncing
|
|
{
|
|
public static function bootResourceSyncing(): void
|
|
{
|
|
static::saved(function (Syncable $model) {
|
|
dump($model->shouldSync());
|
|
if ($model->shouldSync()) {
|
|
$model->triggerSyncEvent();
|
|
}
|
|
});
|
|
|
|
static::creating(function (self $model) {
|
|
if (! $model->getAttribute($model->getGlobalIdentifierKeyName()) && app()->bound(UniqueIdentifierGenerator::class)) {
|
|
$model->setAttribute(
|
|
$model->getGlobalIdentifierKeyName(),
|
|
app(UniqueIdentifierGenerator::class)->generate($model)
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
public function triggerSyncEvent(): void
|
|
{
|
|
/** @var Syncable $this */
|
|
event(new SyncedResourceSaved($this, tenant()));
|
|
}
|
|
|
|
public function getSyncedCreationAttributes(): array|null
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function shouldSync(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|