74 lines
2.0 KiB
PHP
74 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Actionlog;
|
|
use App\Models\License;
|
|
|
|
class LicenseObserver
|
|
{
|
|
/**
|
|
* Listen to the User created event.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function updated(License $license)
|
|
{
|
|
$changed = [];
|
|
|
|
foreach ($license->getRawOriginal() as $key => $value) {
|
|
if ($key === 'updated_at') {
|
|
continue;
|
|
}
|
|
if ($license->getRawOriginal()[$key] != $license->getAttributes()[$key]) {
|
|
$changed[$key]['old'] = $license->getRawOriginal()[$key];
|
|
$changed[$key]['new'] = $license->getAttributes()[$key];
|
|
}
|
|
}
|
|
|
|
if (count($changed) > 0) {
|
|
$logAction = new Actionlog;
|
|
$logAction->item_type = License::class;
|
|
$logAction->item_id = $license->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->created_by = auth()->id();
|
|
$logAction->log_meta = json_encode($changed);
|
|
$logAction->logaction('update');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Listen to the License created event when
|
|
* a new license is created.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function created(License $license)
|
|
{
|
|
$logAction = new Actionlog;
|
|
$logAction->item_type = License::class;
|
|
$logAction->item_id = $license->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->created_by = auth()->id();
|
|
if ($license->imported) {
|
|
$logAction->setActionSource('importer');
|
|
}
|
|
$logAction->logaction('create');
|
|
}
|
|
|
|
/**
|
|
* Listen to the License deleting event.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function deleting(License $license)
|
|
{
|
|
$logAction = new Actionlog;
|
|
$logAction->item_type = License::class;
|
|
$logAction->item_id = $license->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->created_by = auth()->id();
|
|
$logAction->logaction('delete');
|
|
}
|
|
}
|