2018-01-10 18:47:40 -08:00
|
|
|
<?php
|
|
|
|
namespace App\Http\Transformers;
|
|
|
|
|
2018-07-18 05:31:59 -07:00
|
|
|
use App\Models\License;
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Models\LicenseSeat;
|
2018-01-10 18:47:40 -08:00
|
|
|
use Gate;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
|
|
|
|
class LicenseSeatsTransformer
|
|
|
|
{
|
|
|
|
|
|
|
|
public function transformLicenseSeats (Collection $seats, $total)
|
|
|
|
{
|
|
|
|
$array = array();
|
|
|
|
$seat_count = 0;
|
|
|
|
foreach ($seats as $seat) {
|
|
|
|
$seat_count++;
|
|
|
|
$array[] = self::transformLicenseSeat($seat, $seat_count);
|
|
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function transformLicenseSeat (LicenseSeat $seat, $seat_count)
|
|
|
|
{
|
|
|
|
$array = [
|
2018-01-10 20:36:27 -08:00
|
|
|
'id' => (int) $seat->id,
|
|
|
|
'license_id' => (int) $seat->license->id,
|
2018-01-10 18:47:40 -08:00
|
|
|
'name' => 'Seat '.$seat_count,
|
|
|
|
'assigned_user' => ($seat->user) ? [
|
|
|
|
'id' => (int) $seat->user->id,
|
2019-11-21 22:03:56 -08:00
|
|
|
'name'=> e($seat->user->present()->fullName),
|
|
|
|
'department'=>
|
|
|
|
($seat->user->department) ?
|
|
|
|
[
|
|
|
|
"id" => (int) $seat->user->department->id,
|
|
|
|
"name" => e($seat->user->department->name)
|
|
|
|
|
|
|
|
] : null
|
2018-01-10 18:47:40 -08:00
|
|
|
] : null,
|
|
|
|
'assigned_asset' => ($seat->asset) ? [
|
|
|
|
'id' => (int) $seat->asset->id,
|
|
|
|
'name'=> e($seat->asset->present()->fullName)
|
|
|
|
] : null,
|
2018-01-10 20:36:27 -08:00
|
|
|
'location' => ($seat->location()) ? [
|
|
|
|
'id' => (int) $seat->location()->id,
|
|
|
|
'name'=> e($seat->location()->name)
|
|
|
|
] : null,
|
2018-01-10 18:47:40 -08:00
|
|
|
'reassignable' => (bool) $seat->license->reassignable,
|
2020-05-23 10:36:02 -07:00
|
|
|
'user_can_checkout' => (($seat->assigned_to=='') && ($seat->asset_id=='')),
|
2018-01-10 18:47:40 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
$permissions_array['available_actions'] = [
|
2020-05-23 10:36:02 -07:00
|
|
|
'checkout' => Gate::allows('checkout', License::class),
|
|
|
|
'checkin' => Gate::allows('checkin', License::class),
|
|
|
|
'clone' => Gate::allows('create', License::class),
|
|
|
|
'update' => Gate::allows('update', License::class),
|
|
|
|
'delete' => Gate::allows('delete', License::class),
|
2018-01-10 18:47:40 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
$array += $permissions_array;
|
|
|
|
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|