mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
d12159c042
* Rearrange travis order in attempt to fix null settings. * Use auth::id instead of fetching it off the user. Fixes a null object reference during seeding.
71 lines
1.7 KiB
PHP
71 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\License;
|
|
use App\Models\Setting;
|
|
use App\Models\Actionlog;
|
|
use Auth;
|
|
|
|
class LicenseObserver
|
|
{
|
|
/**
|
|
* Listen to the User created event.
|
|
*
|
|
* @param License $license
|
|
* @return void
|
|
*/
|
|
public function updated(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->user_id = Auth::id();
|
|
$logAction->logaction('update');
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Listen to the License created event, and increment
|
|
* the next_auto_tag_base value in the settings table when i
|
|
* a new license is created.
|
|
*
|
|
* @param License $license
|
|
* @return void
|
|
*/
|
|
public function created(License $license)
|
|
{
|
|
$settings = Setting::first();
|
|
$settings->increment('next_auto_tag_base');
|
|
\Log::debug('Setting new next_auto_tag_base value');
|
|
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = License::class;
|
|
$logAction->item_id = $license->id;
|
|
$logAction->created_at = date("Y-m-d H:i:s");
|
|
$logAction->user_id = Auth::id();
|
|
$logAction->logaction('create');
|
|
|
|
}
|
|
|
|
/**
|
|
* Listen to the License deleting event.
|
|
*
|
|
* @param License $license
|
|
* @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->user_id = Auth::id();
|
|
$logAction->logaction('delete');
|
|
}
|
|
}
|