mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
5108b1f3ed
Signed-off-by: snipe <snipe@snipe.net>
77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Actionlog;
|
|
use App\Models\Consumable;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class ConsumableObserver
|
|
{
|
|
/**
|
|
* Listen to the User created event.
|
|
*
|
|
* @param Consumable $consumable
|
|
* @return void
|
|
*/
|
|
public function updated(Consumable $consumable)
|
|
{
|
|
|
|
$changed = [];
|
|
|
|
foreach ($consumable->getRawOriginal() as $key => $value) {
|
|
// Check and see if the value changed
|
|
if ($consumable->getRawOriginal()[$key] != $consumable->getAttributes()[$key]) {
|
|
$changed[$key]['old'] = $consumable->getRawOriginal()[$key];
|
|
$changed[$key]['new'] = $consumable->getAttributes()[$key];
|
|
}
|
|
}
|
|
|
|
if (count($changed) > 0) {
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = Consumable::class;
|
|
$logAction->item_id = $consumable->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->user_id = Auth::id();
|
|
$logAction->log_meta = json_encode($changed);
|
|
$logAction->logaction('update');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Listen to the Consumable created event when
|
|
* a new consumable is created.
|
|
*
|
|
* @param Consumable $consumable
|
|
* @return void
|
|
*/
|
|
public function created(Consumable $consumable)
|
|
{
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = Consumable::class;
|
|
$logAction->item_id = $consumable->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->user_id = Auth::id();
|
|
if($consumable->imported) {
|
|
$logAction->setActionSource('importer');
|
|
}
|
|
$logAction->logaction('create');
|
|
}
|
|
|
|
/**
|
|
* Listen to the Consumable deleting event.
|
|
*
|
|
* @param Consumable $consumable
|
|
* @return void
|
|
*/
|
|
public function deleting(Consumable $consumable)
|
|
{
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = Consumable::class;
|
|
$logAction->item_id = $consumable->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->user_id = Auth::id();
|
|
$logAction->logaction('delete');
|
|
}
|
|
}
|