1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-16 11:24:04 +00:00
tenancy/src/Database/Models/Concerns/ResourceSyncing.php
2020-05-12 01:54:02 +02:00

34 lines
982 B
PHP

<?php
namespace Stancl\Tenancy\Database\Models\Concerns;
use Stancl\Tenancy\Contracts\Syncable;
use Stancl\Tenancy\Contracts\UniqueIdentifierGenerator;
use Stancl\Tenancy\Events\SyncedResourceSaved;
trait ResourceSyncing
{
public static function bootResourceSyncing()
{
static::saved(function (Syncable $model) {
/** @var ResourceSyncing $model */
$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()
{
/** @var Syncable $this */
event(new SyncedResourceSaved($this, tenant()));
}
}