snipe-it/app/Http/Requests/StoreAssetRequest.php

103 lines
3.3 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Requests;
use App\Http\Requests\Traits\MayContainCustomFields;
use App\Models\Asset;
2023-11-28 13:17:46 -08:00
use App\Models\Company;
2024-04-25 17:04:07 -07:00
use App\Models\Setting;
use Carbon\Carbon;
use Carbon\Exceptions\InvalidFormatException;
use Illuminate\Support\Facades\Gate;
use App\Rules\AssetCannotBeCheckedOutToNondeployableStatus;
class StoreAssetRequest extends ImageUploadRequest
{
use MayContainCustomFields;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool
{
2023-11-01 09:33:29 -07:00
return Gate::allows('create', new Asset);
}
public function prepareForValidation(): void
{
// Guard against users passing in an array for company_id instead of an integer.
// If the company_id is not an integer then we simply use what was
// provided to be caught by model level validation later.
$idForCurrentUser = is_int($this->company_id)
? Company::getIdForCurrentUser($this->company_id)
: $this->company_id;
2024-03-25 13:53:30 -07:00
$this->parseLastAuditDate();
2023-11-28 13:17:46 -08:00
$this->merge([
'asset_tag' => $this->asset_tag ?? Asset::autoincrement_asset(),
'company_id' => $idForCurrentUser,
2023-11-28 20:11:20 -08:00
'assigned_to' => $assigned_to ?? null,
2023-11-28 13:17:46 -08:00
]);
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array
{
$modelRules = (new Asset)->getRules();
2024-04-25 17:04:07 -07:00
if (Setting::getSettings()->digit_separator === '1.234,56' && is_string($this->input('purchase_cost'))) {
2024-04-25 16:24:12 -07:00
// If purchase_cost was submitted as a string with a comma separator
// then we need to ignore the normal numeric rules.
// Since the original rules still live on the model they will be run
// right before saving (and after purchase_cost has been
// converted to a float via setPurchaseCostAttribute).
$modelRules = $this->removeNumericRulesFromPurchaseCost($modelRules);
}
2024-04-25 16:22:03 -07:00
return array_merge(
$modelRules,
['status_id' => [new AssetCannotBeCheckedOutToNondeployableStatus()]],
parent::rules(),
);
}
2024-03-25 13:49:03 -07:00
2024-03-25 13:53:30 -07:00
private function parseLastAuditDate(): void
2024-03-25 13:49:03 -07:00
{
if ($this->input('last_audit_date')) {
try {
$lastAuditDate = Carbon::parse($this->input('last_audit_date'));
$this->merge([
'last_audit_date' => $lastAuditDate->startOfDay()->format('Y-m-d H:i:s'),
]);
} catch (InvalidFormatException $e) {
// we don't need to do anything here...
// we'll keep the provided date in an
// invalid format so validation picks it up later
}
}
}
2024-04-25 16:22:03 -07:00
private function removeNumericRulesFromPurchaseCost(array $rules): array
{
2024-04-25 16:22:03 -07:00
$purchaseCost = $rules['purchase_cost'];
// If rule is in "|" format then turn it into an array
if (is_string($purchaseCost)) {
$purchaseCost = explode('|', $purchaseCost);
}
2024-04-25 16:22:03 -07:00
$rules['purchase_cost'] = array_filter($purchaseCost, function ($rule) {
return $rule !== 'numeric' && $rule !== 'gte:0';
});
2024-04-25 16:22:03 -07:00
return $rules;
}
}