mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
770092f23f
This should make it easier to handle action logging between the GUI and the API
71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Consumable;
|
|
use App\Models\Setting;
|
|
use App\Models\Actionlog;
|
|
use Auth;
|
|
|
|
class ConsumableObserver
|
|
{
|
|
/**
|
|
* Listen to the User created event.
|
|
*
|
|
* @param Consumable $consumable
|
|
* @return void
|
|
*/
|
|
public function updated(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::user()->id;
|
|
$logAction->logaction('update');
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Listen to the Consumable created event, and increment
|
|
* the next_auto_tag_base value in the settings table when i
|
|
* a new consumable is created.
|
|
*
|
|
* @param Consumable $consumable
|
|
* @return void
|
|
*/
|
|
public function created(Consumable $consumable)
|
|
{
|
|
$settings = Setting::first();
|
|
$settings->increment('next_auto_tag_base');
|
|
\Log::debug('Setting new next_auto_tag_base value');
|
|
|
|
$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::user()->id;
|
|
$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::user()->id;
|
|
$logAction->logaction('delete');
|
|
}
|
|
}
|