snipe-it/app/Http/Transformers/ActionlogsTransformer.php

79 lines
2.9 KiB
PHP
Raw Normal View History

2017-05-23 14:31:04 -07:00
<?php
namespace App\Http\Transformers;
use App\Models\Actionlog;
2017-08-25 18:40:20 -07:00
use App\Models\Setting;
2017-05-23 14:31:04 -07:00
use Gate;
use Illuminate\Database\Eloquent\Collection;
use App\Helpers\Helper;
class ActionlogsTransformer
{
public function transformActionlogs (Collection $actionlogs, $total)
{
$array = array();
2017-08-25 18:40:20 -07:00
$settings = Setting::getSettings();
2017-05-23 14:31:04 -07:00
foreach ($actionlogs as $actionlog) {
2017-08-25 18:40:20 -07:00
$array[] = self::transformActionlog($actionlog, $settings);
2017-05-23 14:31:04 -07:00
}
return (new DatatablesTransformer)->transformDatatables($array, $total);
}
2017-08-25 18:40:20 -07:00
public function transformActionlog (Actionlog $actionlog, $settings = null)
2017-05-23 14:31:04 -07:00
{
$array = [
2017-08-25 18:40:20 -07:00
'id' => (int) $actionlog->id,
2017-05-23 14:31:04 -07:00
'icon' => $actionlog->present()->icon(),
2017-08-25 18:40:20 -07:00
'image' => ($actionlog->item->getImageUrl()) ? $actionlog->item->getImageUrl() : null,
2017-05-23 14:31:04 -07:00
'item' => ($actionlog->item) ? [
'id' => (int) $actionlog->item->id,
'name' => e($actionlog->item->getDisplayNameAttribute()),
'type' => e($actionlog->itemType()),
] : null,
2017-08-25 18:40:20 -07:00
'location' => ($actionlog->location) ? [
'id' => (int) $actionlog->location->id,
'name' => e($actionlog->location->name)
] : null,
2017-05-23 14:31:04 -07:00
'created_at' => Helper::getFormattedDateObject($actionlog->created_at, 'datetime'),
'updated_at' => Helper::getFormattedDateObject($actionlog->updated_at, 'datetime'),
2017-08-25 18:40:20 -07:00
'next_audit_date' => ($actionlog->itemType()=='asset') ? Helper::getFormattedDateObject($actionlog->item->next_audit_date, 'date'): null,
'days_to_next_audit' => $actionlog->daysUntilNextAudit($settings->audit_interval, $actionlog->item),
2017-05-23 14:31:04 -07:00
'action_type' => $actionlog->present()->actionType(),
'admin' => ($actionlog->user) ? [
'id' => (int) $actionlog->user->id,
'name' => e($actionlog->user->getFullNameAttribute()),
'first_name'=> e($actionlog->user->first_name),
'last_name'=> e($actionlog->user->last_name)
] : null,
'target' => ($actionlog->target) ? [
'id' => (int) $actionlog->target->id,
'name' => ($actionlog->targetType()=='user') ? e($actionlog->target->getFullNameAttribute()) : e($actionlog->target->getDisplayNameAttribute()),
'type' => e($actionlog->targetType()),
] : null,
'note' => e($actionlog->note),
];
return $array;
}
public function transformCheckedoutActionlog (Collection $accessories_users, $total)
{
$array = array();
foreach ($accessories_users as $user) {
$array[] = (new UsersTransformer)->transformUser($user);
}
return (new DatatablesTransformer)->transformDatatables($array, $total);
}
}