mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
c7f48951a9
* To see checkin/checkout Date in History of Asset * Added some logic to get today's date if the checkin_at input is blank * Updating the action_date taking the value from the action_log table * Hide created_at field and rename 'Action Date' as only 'Date'
88 lines
2.8 KiB
PHP
88 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Events\AccessoryCheckedIn;
|
|
use App\Events\AccessoryCheckedOut;
|
|
use App\Events\AssetCheckedIn;
|
|
use App\Events\AssetCheckedOut;
|
|
use App\Events\CheckoutableCheckedIn;
|
|
use App\Events\CheckoutableCheckedOut;
|
|
use App\Events\CheckoutAccepted;
|
|
use App\Events\CheckoutDeclined;
|
|
use App\Events\ComponentCheckedIn;
|
|
use App\Events\ComponentCheckedOut;
|
|
use App\Events\ConsumableCheckedOut;
|
|
use App\Events\ItemAccepted;
|
|
use App\Events\ItemDeclined;
|
|
use App\Events\LicenseCheckedIn;
|
|
use App\Events\LicenseCheckedOut;
|
|
use App\Models\Actionlog;
|
|
use App\Models\LicenseSeat;
|
|
|
|
class LogListener
|
|
{
|
|
|
|
public function onCheckoutableCheckedIn(CheckoutableCheckedIn $event) {
|
|
$event->checkoutable->logCheckin($event->checkedOutTo, $event->note, $event->action_date);
|
|
}
|
|
|
|
public function onCheckoutableCheckedOut(CheckoutableCheckedOut $event) {
|
|
$event->checkoutable->logCheckout($event->note, $event->checkedOutTo, $event->checkoutable->last_checkout);
|
|
}
|
|
|
|
public function onCheckoutAccepted(CheckoutAccepted $event) {
|
|
$logaction = new Actionlog();
|
|
|
|
$logaction->item()->associate($event->acceptance->checkoutable);
|
|
$logaction->target()->associate($event->acceptance->assignedTo);
|
|
$logaction->accept_signature = $event->acceptance->signature_filename;
|
|
$logaction->action_type = 'accepted';
|
|
|
|
// TODO: log the actual license seat that was checked out
|
|
if($event->acceptance->checkoutable instanceof LicenseSeat) {
|
|
$logaction->item()->associate($event->acceptance->checkoutable->license);
|
|
}
|
|
|
|
$logaction->save();
|
|
}
|
|
|
|
public function onCheckoutDeclined(CheckoutDeclined $event) {
|
|
$logaction = new Actionlog();
|
|
$logaction->item()->associate($event->acceptance->checkoutable);
|
|
$logaction->target()->associate($event->acceptance->assignedTo);
|
|
$logaction->accept_signature = $event->acceptance->signature_filename;
|
|
$logaction->action_type = 'declined';
|
|
|
|
// TODO: log the actual license seat that was checked out
|
|
if($event->acceptance->checkoutable instanceof LicenseSeat) {
|
|
$logaction->item()->associate($event->acceptance->checkoutable->license);
|
|
}
|
|
|
|
$logaction->save();
|
|
}
|
|
|
|
/**
|
|
* Register the listeners for the subscriber.
|
|
*
|
|
* @param Illuminate\Events\Dispatcher $events
|
|
*/
|
|
public function subscribe($events)
|
|
{
|
|
$list = [
|
|
'CheckoutableCheckedIn',
|
|
'CheckoutableCheckedOut',
|
|
'CheckoutAccepted',
|
|
'CheckoutDeclined',
|
|
];
|
|
|
|
foreach($list as $event) {
|
|
$events->listen(
|
|
'App\Events\\' . $event,
|
|
'App\Listeners\LogListener@on' . $event
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|