checkoutable->logCheckin($event->checkedOutTo, $event->note, $event->action_date); } /** * These onBlah methods are used by the subscribe() method further down in this file. * This one creates an action_logs entry for the checkout * * @param CheckoutableCheckedOut $event * @return void * */ public function onCheckoutableCheckedOut(CheckoutableCheckedOut $event) { $event->checkoutable->logCheckout($event->note, $event->checkedOutTo, $event->checkoutable->last_checkout); } /** * These onBlah methods are used by the subscribe() method further down in this file. * This creates the entry in the action_logs table for the accept/decline action */ public function onCheckoutAccepted(CheckoutAccepted $event) { \Log::debug('event passed to the onCheckoutAccepted listener:'); $logaction = new Actionlog(); $logaction->item()->associate($event->acceptance->checkoutable); $logaction->target()->associate($event->acceptance->assignedTo); $logaction->accept_signature = $event->acceptance->signature_filename; $logaction->filename = $event->acceptance->stored_eula_file; $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); } \Log::debug('New onCheckoutAccepted Listener fired. logaction: '.print_r($logaction, true)); $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(); } public function onUserMerged(UserMerged $event) { $to_from_array = [ 'to_id' => $event->merged_to->id, 'to_username' => $event->merged_to->username, 'from_id' => $event->merged_from->id, 'from_username' => $event->merged_from->username, ]; // Add a record to the users being merged FROM \Log::debug('Users merged: '.$event->merged_from->id .' ('.$event->merged_from->username.') merged into '. $event->merged_to->id. ' ('.$event->merged_to->username.')'); $logaction = new Actionlog(); $logaction->item_id = $event->merged_from->id; $logaction->item_type = User::class; $logaction->target_id = $event->merged_to->id; $logaction->target_type = User::class; $logaction->action_type = 'merged'; $logaction->note = trans('general.merged_log_this_user_from', $to_from_array); $logaction->user_id = $event->admin->id; $logaction->save(); // Add a record to the users being merged TO $logaction = new Actionlog(); $logaction->target_id = $event->merged_from->id; $logaction->target_type = User::class; $logaction->item_id = $event->merged_to->id; $logaction->item_type = User::class; $logaction->action_type = 'merged'; $logaction->note = trans('general.merged_log_this_user_into', $to_from_array); $logaction->user_id = $event->admin->id; $logaction->save(); } /** * Register the listeners for the subscriber. * * @param Illuminate\Events\Dispatcher $events */ public function subscribe($events) { $list = [ 'CheckoutableCheckedIn', 'CheckoutableCheckedOut', 'CheckoutAccepted', 'CheckoutDeclined', 'UserMerged', ]; foreach ($list as $event) { $events->listen( 'App\Events\\'.$event, 'App\Listeners\LogListener@on'.$event ); } } }