mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
fb233c0aa4
Signed-off-by: snipe <snipe@snipe.net>
150 lines
4.2 KiB
PHP
150 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Actionlog;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class UserObserver
|
|
{
|
|
/**
|
|
* Listen to the User updating event. This fires automatically every time an existing asset is saved.
|
|
*
|
|
* @param User $user
|
|
* @return void
|
|
*/
|
|
public function updating(User $user)
|
|
{
|
|
|
|
// ONLY allow these fields to be stored
|
|
$allowed_fields = [
|
|
'email',
|
|
'activated',
|
|
'first_name',
|
|
'last_name',
|
|
'website',
|
|
'country',
|
|
'gravatar',
|
|
'location_id',
|
|
'phone',
|
|
'jobtitle',
|
|
'manager_id',
|
|
'employee_num',
|
|
'username',
|
|
'notes',
|
|
'company_id',
|
|
'ldap_import',
|
|
'locale',
|
|
'two_factor_enrolled',
|
|
'two_factor_optin',
|
|
'department_id',
|
|
'address',
|
|
'address2',
|
|
'city',
|
|
'state',
|
|
'zip',
|
|
'remote',
|
|
'start_date',
|
|
'end_date',
|
|
'autoassign_licenses',
|
|
'vip',
|
|
'password'
|
|
];
|
|
|
|
$changed = [];
|
|
|
|
foreach ($user->getRawOriginal() as $key => $value) {
|
|
|
|
// Make sure the info is in the allow fields array
|
|
if (in_array($key, $allowed_fields)) {
|
|
|
|
// Check and see if the value changed
|
|
if ($user->getRawOriginal()[$key] != $user->getAttributes()[$key]) {
|
|
|
|
$changed[$key]['old'] = $user->getRawOriginal()[$key];
|
|
$changed[$key]['new'] = $user->getAttributes()[$key];
|
|
|
|
// Do not store the hashed password in changes
|
|
if ($key == 'password') {
|
|
$changed['password']['old'] = '*************';
|
|
$changed['password']['new'] = '*************';
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if (count($changed) > 0) {
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = User::class;
|
|
$logAction->item_id = $user->id;
|
|
$logAction->target_type = User::class; // can we instead say $logAction->item = $asset ?
|
|
$logAction->target_id = $user->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 User created event, and increment
|
|
* the next_auto_tag_base value in the settings table when i
|
|
* a new asset is created.
|
|
*
|
|
* @param User $user
|
|
* @return void
|
|
*/
|
|
public function created(User $user)
|
|
{
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = User::class; // can we instead say $logAction->item = $asset ?
|
|
$logAction->item_id = $user->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->user_id = Auth::id();
|
|
$logAction->logaction('create');
|
|
}
|
|
|
|
/**
|
|
* Listen to the User deleting event.
|
|
*
|
|
* @param User $user
|
|
* @return void
|
|
*/
|
|
public function deleting(User $user)
|
|
{
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = User::class;
|
|
$logAction->item_id = $user->id;
|
|
$logAction->target_type = User::class; // can we instead say $logAction->item = $asset ?
|
|
$logAction->target_id = $user->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->user_id = Auth::id();
|
|
$logAction->logaction('delete');
|
|
}
|
|
|
|
/**
|
|
* Listen to the User deleting event.
|
|
*
|
|
* @param User $user
|
|
* @return void
|
|
*/
|
|
public function restoring(User $user)
|
|
{
|
|
$logAction = new Actionlog();
|
|
$logAction->item_type = User::class;
|
|
$logAction->item_id = $user->id;
|
|
$logAction->target_type = User::class; // can we instead say $logAction->item = $asset ?
|
|
$logAction->target_id = $user->id;
|
|
$logAction->created_at = date('Y-m-d H:i:s');
|
|
$logAction->user_id = Auth::id();
|
|
$logAction->logaction('restore');
|
|
}
|
|
|
|
|
|
}
|