mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
e3e0d57f56
* Add IDE Helper files * Cleanup imports - Alphabetises imports - Removes unused imports * Add Platform requirements * Move filling asset into block where asset exists * Remove duplicate array keys
59 lines
2.2 KiB
PHP
59 lines
2.2 KiB
PHP
<?php
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Category;
|
|
use Gate;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class CategoriesTransformer
|
|
{
|
|
|
|
public function transformCategories (Collection $categorys, $total)
|
|
{
|
|
$array = array();
|
|
foreach ($categorys as $category) {
|
|
$array[] = self::transformCategory($category);
|
|
}
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformCategory (Category $category = null)
|
|
{
|
|
if ($category) {
|
|
|
|
$array = [
|
|
'id' => (int) $category->id,
|
|
'name' => e($category->name),
|
|
'image' => ($category->image) ? Storage::disk('public')->url('categories/'.e($category->image)) : null,
|
|
'category_type' => e($category->category_type),
|
|
'eula' => ($category->getEula()) ? true : false,
|
|
'checkin_email' => ($category->checkin_email =='1') ? true : false,
|
|
'require_acceptance' => ($category->require_acceptance =='1') ? true : false,
|
|
'assets_count' => (int) $category->assets_count,
|
|
'accessories_count' => (int) $category->accessories_count,
|
|
'consumables_count' => (int) $category->consumables_count,
|
|
'components_count' => (int) $category->components_count,
|
|
'licenses_count' => (int) $category->licenses_count,
|
|
'created_at' => Helper::getFormattedDateObject($category->created_at, 'datetime'),
|
|
'updated_at' => Helper::getFormattedDateObject($category->updated_at, 'datetime'),
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'update' => Gate::allows('update', Category::class) ? true : false,
|
|
'delete' => (Gate::allows('delete', Category::class) && ($category->assets_count == 0) && ($category->accessories_count == 0) && ($category->consumables_count == 0) && ($category->components_count == 0) && ($category->licenses_count == 0)) ? true : false,
|
|
];
|
|
|
|
$array += $permissions_array;
|
|
|
|
return $array;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|