mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
e03ebc3fd0
* Refactored AssetsTransformer Casted all ids to int, escaped all text values, * Added warranty_expires attribute to Asset model $asset->warranty_expires contains a Carbon object with the warranty expiration date. Returns null when either purchase_date or warranty_months are not set. * Ignoring php-cs cache files * Restored asset tests expectations Work in progress - tests still fail * API controller refactoring, fixed HTTP status codes in responses * Restored $request->get - debugging * Added further checks in ApiAssetsCest::updateAssetWithPatch
102 lines
4.3 KiB
PHP
102 lines
4.3 KiB
PHP
<?php
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Models\Asset;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use App\Http\Transformers\UsersTransformer;
|
|
use Gate;
|
|
use App\Helpers\Helper;
|
|
|
|
class AssetsTransformer
|
|
{
|
|
public function transformAssets(Collection $assets, $total)
|
|
{
|
|
$array = array();
|
|
foreach ($assets as $asset) {
|
|
$array[] = self::transformAsset($asset);
|
|
}
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
|
|
public function transformAsset(Asset $asset)
|
|
{
|
|
$array = [
|
|
'id' => (int) $asset->id,
|
|
'name' => e($asset->name),
|
|
'asset_tag' => e($asset->asset_tag),
|
|
'serial' => e($asset->serial),
|
|
'model' => ($asset->model) ? [
|
|
'id' => (int) $asset->model->id,
|
|
'name'=> e($asset->model->name)
|
|
] : null,
|
|
'model_number' => ($asset->model) ? e($asset->model->model_number) : null,
|
|
'status_label' => ($asset->assetstatus) ? [
|
|
'id' => (int) $asset->assetstatus->id,
|
|
'name'=> e($asset->assetstatus->name)
|
|
] : null,
|
|
'category' => ($asset->model->category) ? [
|
|
'id' => (int) $asset->model->category->id,
|
|
'name'=> e($asset->model->category->name)
|
|
] : null,
|
|
'manufacturer' => ($asset->model->manufacturer) ? [
|
|
'id' => (int) $asset->model->manufacturer->id,
|
|
'name'=> e($asset->model->manufacturer->name)
|
|
] : null,
|
|
'notes' => e($asset->notes),
|
|
'order_number' => e($asset->order_number),
|
|
'company' => ($asset->company) ? [
|
|
'id' => (int) $asset->company->id,
|
|
'name'=> e($asset->company->name)
|
|
] : null,
|
|
'location' => ($asset->assetLoc) ? [
|
|
'id' => (int) $asset->assetLoc->id,
|
|
'name'=> e($asset->assetLoc->name)
|
|
] : null,
|
|
'rtd_location' => ($asset->defaultLoc) ? [
|
|
'id' => (int) $asset->defaultLoc->id,
|
|
'name'=> e($asset->defaultLoc->name)
|
|
] : null,
|
|
'image' => ($asset->getImageUrl()) ? $asset->getImageUrl() : null,
|
|
'assigned_to' => ($asset->assigneduser) ? [
|
|
'id' => (int) $asset->assigneduser->id,
|
|
'name' => e($asset->assigneduser->getFullNameAttribute()),
|
|
'first_name'=> e($asset->assigneduser->first_name),
|
|
'last_name'=> e($asset->assigneduser->last_name)
|
|
] : null,
|
|
'warranty' => ($asset->warranty_months > 0) ? e($asset->warranty_months . ' ' . trans('admin/hardware/form.months')) : null,
|
|
'warranty_expires' => ($asset->warranty_months > 0) ? Helper::getFormattedDateObject($asset->warranty_expires, 'date') : null,
|
|
'created_at' => Helper::getFormattedDateObject($asset->created_at, 'datetime'),
|
|
'updated_at' => Helper::getFormattedDateObject($asset->updated_at, 'datetime'),
|
|
'purchase_date' => Helper::getFormattedDateObject($asset->purchase_date, 'date'),
|
|
'last_checkout' => Helper::getFormattedDateObject($asset->last_checkout, 'datetime'),
|
|
'expected_checkin' => Helper::getFormattedDateObject($asset->expected_checkin, 'date'),
|
|
'purchase_cost' => Helper::formatCurrencyOutput($asset->purchase_cost),
|
|
'user_can_checkout' => (bool) $asset->availableForCheckout(),
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'checkout' => (bool) Gate::allows('checkout', Asset::class),
|
|
'checkin' => (bool) Gate::allows('checkin', Asset::class),
|
|
'update' => (bool) Gate::allows('update', Asset::class),
|
|
'delete' => (bool) Gate::allows('delete', Asset::class),
|
|
];
|
|
|
|
$array += $permissions_array;
|
|
|
|
if ($asset->model->fieldset) {
|
|
foreach ($asset->model->fieldset->fields as $field) {
|
|
$fields_array = [$field->name => $asset->{$field->convertUnicodeDbSlug()}];
|
|
$array += $fields_array;
|
|
}
|
|
}
|
|
|
|
return $array;
|
|
}
|
|
|
|
public function transformAssetsDatatable($assets)
|
|
{
|
|
return (new DatatablesTransformer)->transformDatatables($assets);
|
|
}
|
|
}
|