2017-01-13 11:38:25 -08:00
|
|
|
<?php
|
|
|
|
namespace App\Http\Transformers;
|
|
|
|
|
|
|
|
use App\Models\Asset;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2017-01-24 21:04:38 -08:00
|
|
|
use App\Http\Transformers\UsersTransformer;
|
2017-02-08 18:24:55 -08:00
|
|
|
use Gate;
|
2017-03-03 17:29:41 -08:00
|
|
|
use App\Helpers\Helper;
|
2017-02-08 18:24:55 -08:00
|
|
|
|
2017-01-13 11:38:25 -08:00
|
|
|
class AssetsTransformer
|
|
|
|
{
|
2017-03-14 08:37:39 -07:00
|
|
|
public function transformAssets(Collection $assets, $total)
|
2017-01-13 11:38:25 -08:00
|
|
|
{
|
|
|
|
$array = array();
|
|
|
|
foreach ($assets as $asset) {
|
|
|
|
$array[] = self::transformAsset($asset);
|
|
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
|
|
}
|
|
|
|
|
2017-02-08 18:24:55 -08:00
|
|
|
|
2017-03-14 08:37:39 -07:00
|
|
|
public function transformAsset(Asset $asset)
|
2017-01-13 11:38:25 -08:00
|
|
|
{
|
|
|
|
$array = [
|
2017-03-14 08:37:39 -07:00
|
|
|
'id' => (int) $asset->id,
|
2017-02-03 02:04:17 -08:00
|
|
|
'name' => e($asset->name),
|
|
|
|
'asset_tag' => e($asset->asset_tag),
|
|
|
|
'serial' => e($asset->serial),
|
2017-03-14 08:37:39 -07:00
|
|
|
'model' => ($asset->model) ? [
|
|
|
|
'id' => (int) $asset->model->id,
|
|
|
|
'name'=> e($asset->model->name)
|
|
|
|
] : null,
|
2017-03-11 04:26:01 -08:00
|
|
|
'model_number' => ($asset->model) ? e($asset->model->model_number) : null,
|
2017-03-14 08:37:39 -07:00
|
|
|
'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,
|
2017-04-22 17:14:28 -07:00
|
|
|
'supplier' => ($asset->supplier) ? [
|
|
|
|
'id' => (int) $asset->supplier->id,
|
|
|
|
'name'=> e($asset->supplier->name)
|
|
|
|
] : null,
|
2017-03-14 08:37:39 -07:00
|
|
|
'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,
|
2017-01-24 22:46:07 -08:00
|
|
|
'image' => ($asset->getImageUrl()) ? $asset->getImageUrl() : null,
|
2017-03-14 08:37:39 -07:00
|
|
|
'assigned_to' => ($asset->assigneduser) ? [
|
|
|
|
'id' => (int) $asset->assigneduser->id,
|
2017-07-25 22:11:50 -07:00
|
|
|
'username' => e($asset->assigneduser->username),
|
2017-03-14 08:37:39 -07:00
|
|
|
'name' => e($asset->assigneduser->getFullNameAttribute()),
|
|
|
|
'first_name'=> e($asset->assigneduser->first_name),
|
2017-07-25 01:17:23 -07:00
|
|
|
'last_name'=> e($asset->assigneduser->last_name),
|
|
|
|
'employee_number' => e($asset->assigneduser->employee_num),
|
2017-03-14 08:37:39 -07:00
|
|
|
] : 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,
|
2017-03-03 17:29:41 -08:00
|
|
|
'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'),
|
2017-03-14 08:37:39 -07:00
|
|
|
'purchase_cost' => Helper::formatCurrencyOutput($asset->purchase_cost),
|
|
|
|
'user_can_checkout' => (bool) $asset->availableForCheckout(),
|
2017-01-13 11:38:25 -08:00
|
|
|
];
|
|
|
|
|
2017-07-08 17:04:40 -07:00
|
|
|
|
|
|
|
if ($asset->model->fieldset) {
|
|
|
|
$fields_array = array();
|
|
|
|
foreach ($asset->model->fieldset->fields as $field) {
|
|
|
|
|
|
|
|
if ($field->isFieldDecryptable($asset->{$field->convertUnicodeDbSlug()})) {
|
|
|
|
$decrypted = \App\Helpers\Helper::gracefulDecrypt($field,$asset->{$field->convertUnicodeDbSlug()});
|
|
|
|
$value = (Gate::allows('superadmin')) ? $decrypted : strtoupper(trans('admin/custom_fields/general.encrypted'));
|
|
|
|
|
2017-07-08 18:44:28 -07:00
|
|
|
// $fields_array = [$field->convertUnicodeDbSlug() => $value];
|
2017-07-08 17:04:40 -07:00
|
|
|
|
|
|
|
|
2017-07-08 18:44:28 -07:00
|
|
|
$fields_array[$field->name] = [
|
|
|
|
'field' => $field->convertUnicodeDbSlug(),
|
|
|
|
'value' => $value
|
|
|
|
];
|
2017-07-08 17:04:40 -07:00
|
|
|
|
|
|
|
} else {
|
2017-07-08 18:44:28 -07:00
|
|
|
$fields_array[$field->name] = [
|
|
|
|
'field' => $field->convertUnicodeDbSlug(),
|
|
|
|
'value' => $asset->{$field->convertUnicodeDbSlug()}
|
|
|
|
];
|
|
|
|
//$fields_array = [$field->convertUnicodeDbSlug() => $asset->{$field->convertUnicodeDbSlug()}];
|
2017-07-08 17:04:40 -07:00
|
|
|
|
|
|
|
|
|
|
|
}
|
2017-07-08 18:44:28 -07:00
|
|
|
//array += $fields_array;
|
|
|
|
$array['custom_fields'] = $fields_array;
|
2017-07-08 17:04:40 -07:00
|
|
|
}
|
2017-08-23 03:28:13 -07:00
|
|
|
} else {
|
|
|
|
$array['custom_fields'] = array();
|
2017-07-08 17:04:40 -07:00
|
|
|
}
|
|
|
|
|
2017-02-08 18:24:55 -08:00
|
|
|
$permissions_array['available_actions'] = [
|
2017-03-14 08:37:39 -07:00
|
|
|
'checkout' => (bool) Gate::allows('checkout', Asset::class),
|
|
|
|
'checkin' => (bool) Gate::allows('checkin', Asset::class),
|
2017-07-07 18:45:49 -07:00
|
|
|
'clone' => Gate::allows('create', Asset::class) ? true : false,
|
2017-03-14 08:37:39 -07:00
|
|
|
'update' => (bool) Gate::allows('update', Asset::class),
|
|
|
|
'delete' => (bool) Gate::allows('delete', Asset::class),
|
2017-02-08 18:24:55 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
$array += $permissions_array;
|
2017-01-13 11:38:25 -08:00
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
2017-03-14 08:37:39 -07:00
|
|
|
public function transformAssetsDatatable($assets)
|
|
|
|
{
|
2017-01-24 18:57:21 -08:00
|
|
|
return (new DatatablesTransformer)->transformDatatables($assets);
|
2017-01-13 11:38:25 -08:00
|
|
|
}
|
|
|
|
}
|