snipe-it/app/Presenters/LicensePresenter.php
Daniel Meltzer 61543f3a04 Add presenters for models. (#3098)
* Add presenters for models.  Move bootstrap table JSON generation to these presenters, which cleans up controllers a lot.  Move view specific modifications from the models to the presenters as well.

* Fix some issues found by travis and codacy

* Fix a few more issues found while testing.

* Attempt another acceptance test fix

* Try something else

* Maybe..
2016-12-23 17:52:00 -08:00

88 lines
2.8 KiB
PHP

<?php
namespace App\Presenters;
use App\Helpers\Helper;
use Illuminate\Support\Facades\Gate;
/**
* Class LicensePresenter
* @package App\Presenters
*/
class LicensePresenter extends Presenter
{
/**
* JSON representation of this license for data table.
* @return array
*/
public function forDataTable()
{
$actions = '<span style="white-space: nowrap;">';
if (Gate::allows('checkout', License::class)) {
$actions .= Helper::generateDatatableButton(
'checkout',
route('licenses.freecheckout', $this->id),
$this->remaincount() > 0
);
}
if (Gate::allows('create', $this->model)) {
$actions .= Helper::generateDatatableButton('clone', route('clone/license', $this->id));
}
if (Gate::allows('update', $this->model)) {
$actions .= Helper::generateDatatableButton('edit', route('licenses.edit', $this->id));
}
if (Gate::allows('delete', $this->model)) {
$actions .= Helper::generateDatatableButton(
'delete',
route('licenses.destroy', $this->id),
true, /*enabled*/
trans('admin/licenses/message.delete.confirm'),
$this->name
);
}
$actions .='</span>';
$results = [
'id' => $this->id,
'name' => $this->nameUrl(),
'serial' => $this->serialUrl(),
'totalSeats' => $this->model->licenseSeatsCount,
'remaining' => $this->remaincount(),
'license_name' => $this->license_name,
'license_email' => $this->license_email,
'purchase_date' => ($this->purchase_date) ?: '',
'expiration_date' => ($this->expiration_date) ?: '',
'purchase_cost' => Helper::formatCurrencyOutput($this->purchase_cost),
'purchase_order' => ($this->purchase_order) ?: '',
'order_number' => ($this->order_number) ?: '',
'notes' => ($this->notes) ?: '',
'actions' => $actions,
'company' => $this->model->company ? e($this->model->company->present()->nameUrl()) : '',
'manufacturer' => $this->model->manufacturer ? $this->model->manufacturer->present()->nameUrl() : ''
];
return $results;
}
/**
* Link to this licenses Name
* @return string
*/
public function nameUrl()
{
return (string)link_to_route('licenses.show', $this->name, $this->id);
}
/**
* Link to this licenses serial
* @return string
*/
public function serialUrl()
{
return (string) link_to('/licenses/'.$this->id, mb_strimwidth($this->serial, 0, 50, "..."));
}
}