mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
104 lines
4.8 KiB
PHP
104 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Accessory;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class AccessoriesTransformer
|
|
{
|
|
public function transformAccessories(Collection $accessories, $total)
|
|
{
|
|
$array = [];
|
|
foreach ($accessories as $accessory) {
|
|
$array[] = self::transformAccessory($accessory);
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformAccessory(Accessory $accessory)
|
|
{
|
|
$array = [
|
|
'id' => $accessory->id,
|
|
'name' => e($accessory->name),
|
|
'image' => ($accessory->image) ? Storage::disk('public')->url('accessories/'.e($accessory->image)) : null,
|
|
'company' => ($accessory->company) ? ['id' => $accessory->company->id, 'name'=> e($accessory->company->name)] : null,
|
|
'manufacturer' => ($accessory->manufacturer) ? ['id' => $accessory->manufacturer->id, 'name'=> e($accessory->manufacturer->name)] : null,
|
|
'supplier' => ($accessory->supplier) ? ['id' => $accessory->supplier->id, 'name'=> e($accessory->supplier->name)] : null,
|
|
'model_number' => ($accessory->model_number) ? e($accessory->model_number) : null,
|
|
'category' => ($accessory->category) ? ['id' => $accessory->category->id, 'name'=> e($accessory->category->name)] : null,
|
|
'location' => ($accessory->location) ? ['id' => $accessory->location->id, 'name'=> e($accessory->location->name)] : null,
|
|
'notes' => ($accessory->notes) ? Helper::parseEscapedMarkedownInline($accessory->notes) : null,
|
|
'qty' => ($accessory->qty) ? (int) $accessory->qty : null,
|
|
'purchase_date' => ($accessory->purchase_date) ? Helper::getFormattedDateObject($accessory->purchase_date, 'date') : null,
|
|
'purchase_cost' => Helper::formatCurrencyOutput($accessory->purchase_cost),
|
|
'order_number' => ($accessory->order_number) ? e($accessory->order_number) : null,
|
|
'min_qty' => ($accessory->min_amt) ? (int) $accessory->min_amt : null,
|
|
'remaining_qty' => (int) ($accessory->qty - $accessory->checkouts_count),
|
|
'checkouts_count' => $accessory->checkouts_count,
|
|
'created_by' => ($accessory->adminuser) ? [
|
|
'id' => (int) $accessory->adminuser->id,
|
|
'name'=> e($accessory->adminuser->present()->fullName()),
|
|
] : null,
|
|
'created_at' => Helper::getFormattedDateObject($accessory->created_at, 'datetime'),
|
|
'updated_at' => Helper::getFormattedDateObject($accessory->updated_at, 'datetime'),
|
|
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'checkout' => Gate::allows('checkout', Accessory::class),
|
|
'checkin' => false,
|
|
'update' => Gate::allows('update', Accessory::class),
|
|
'delete' => Gate::allows('delete', Accessory::class),
|
|
'clone' => Gate::allows('create', Accessory::class),
|
|
|
|
];
|
|
|
|
$permissions_array['user_can_checkout'] = false;
|
|
|
|
if (($accessory->qty - $accessory->checkouts_count) > 0) {
|
|
$permissions_array['user_can_checkout'] = true;
|
|
}
|
|
|
|
$array += $permissions_array;
|
|
|
|
return $array;
|
|
}
|
|
|
|
public function transformCheckedoutAccessory($accessory_checkouts, $total)
|
|
{
|
|
$array = [];
|
|
|
|
foreach ($accessory_checkouts as $checkout) {
|
|
$array[] = [
|
|
'id' => $checkout->id,
|
|
'assigned_to' => $this->transformAssignedTo($checkout),
|
|
'note' => $checkout->note ? e($checkout->note) : null,
|
|
'created_by' => $checkout->adminuser ? [
|
|
'id' => (int) $checkout->adminuser->id,
|
|
'name'=> e($checkout->adminuser->present()->fullName),
|
|
]: null,
|
|
'created_at' => Helper::getFormattedDateObject($checkout->created_at, 'datetime'),
|
|
'available_actions' => Gate::allows('checkout', Accessory::class) ? ['checkin' => true] : ['checkin' => false],
|
|
];
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformAssignedTo($accessoryCheckout)
|
|
{
|
|
if ($accessoryCheckout->checkedOutToUser()) {
|
|
return (new UsersTransformer)->transformUserCompact($accessoryCheckout->assigned);
|
|
} elseif ($accessoryCheckout->checkedOutToLocation()) {
|
|
return (new LocationsTransformer())->transformLocationCompact($accessoryCheckout->assigned);
|
|
} elseif ($accessoryCheckout->checkedOutToAsset()) {
|
|
return (new AssetsTransformer())->transformAssetCompact($accessoryCheckout->assigned);
|
|
}
|
|
}
|
|
}
|