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
82 lines
2.4 KiB
PHP
82 lines
2.4 KiB
PHP
<?php
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Models\PredefinedKit;
|
|
use App\Models\SnipeModel;
|
|
use Gate;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
/**
|
|
* transforms collection of models to array with simple typres
|
|
*
|
|
* @author [D. Minaev] [<dmitriy.minaev.v@gmail.com>]
|
|
* @return array
|
|
*/
|
|
class PredefinedKitsTransformer
|
|
{
|
|
|
|
public function transformPredefinedKits (Collection $kits, $total)
|
|
{
|
|
$array = array();
|
|
foreach ($kits as $kit) {
|
|
$array[] = self::transformPredefinedKit($kit);
|
|
}
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformPredefinedKit (PredefinedKit $kit)
|
|
{
|
|
$array = [
|
|
'id' => (int) $kit->id,
|
|
'name' => e($kit->name)
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'update' => Gate::allows('update', PredefinedKit::class),
|
|
'delete' => Gate::allows('delete', PredefinedKit::class),
|
|
'checkout' => Gate::allows('checkout', PredefinedKit::class) ? true : false,
|
|
// 'clone' => Gate::allows('create', PredefinedKit::class),
|
|
// 'restore' => Gate::allows('create', PredefinedKit::class),
|
|
];
|
|
$array['user_can_checkout'] = true;
|
|
$array += $permissions_array;
|
|
return $array;
|
|
}
|
|
|
|
/**
|
|
* transform collection of any elemets attached to kit
|
|
* @return array
|
|
*/
|
|
public function transformElements(Collection $elements, $total) {
|
|
$array = array();
|
|
foreach ($elements as $element) {
|
|
$array[] = self::transformElement($element);
|
|
}
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformElement(SnipeModel $element) {
|
|
$array = [
|
|
'id' => (int) $element->id,
|
|
'pivot_id' => (int) $element->pivot->id,
|
|
'owner_id' => (int) $element->pivot->kit_id,
|
|
'quantity' => (int) $element->pivot->quantity,
|
|
'name' => e($element->name)
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'update' => Gate::allows('update', PredefinedKit::class),
|
|
'delete' => Gate::allows('delete', PredefinedKit::class),
|
|
];
|
|
|
|
$array += $permissions_array;
|
|
return $array;
|
|
}
|
|
|
|
public function transformPredefinedKitsDatatable($kits) {
|
|
return (new DatatablesTransformer)->transformDatatables($kits);
|
|
}
|
|
|
|
|
|
}
|