mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
87 lines
2.4 KiB
PHP
87 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 = [];
|
|
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),
|
|
// '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 = [];
|
|
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);
|
|
}
|
|
}
|