invoiceninja/app/Http/Requests/Company/StoreCompanyRequest.php

78 lines
2.1 KiB
PHP
Raw Permalink Normal View History

2019-06-17 09:58:33 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-06-17 09:58:33 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-06-17 09:58:33 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-06-17 09:58:33 +10:00
*/
namespace App\Http\Requests\Company;
use App\Http\Requests\Request;
use App\Http\ValidationRules\Company\ValidCompanyQuantity;
use App\Http\ValidationRules\Company\ValidSubdomain;
use App\Http\ValidationRules\ValidSettingsRule;
2019-06-17 09:58:33 +10:00
use App\Models\Company;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
2019-06-17 09:58:33 +10:00
class StoreCompanyRequest extends Request
{
use MakesHash;
2019-06-17 09:58:33 +10:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('create', Company::class);
}
public function rules()
{
2021-04-28 13:12:51 +10:00
$input = $this->all();
$rules = [];
2019-06-17 09:58:33 +10:00
$rules['name'] = new ValidCompanyQuantity();
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
$rules['settings'] = new ValidSettingsRule();
2021-04-28 13:12:51 +10:00
if (isset($input['portal_mode']) && ($input['portal_mode'] == 'domain' || $input['portal_mode'] == 'iframe')) {
$rules['portal_domain'] = 'sometimes|url';
} else {
if (Ninja::isHosted()) {
2021-06-13 20:47:49 +10:00
$rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain($this->all())];
} else {
$rules['subdomain'] = 'nullable|alpha_num';
}
}
return $rules;
2019-06-17 09:58:33 +10:00
}
2020-03-02 22:03:40 +11:00
2022-06-24 11:55:41 +10:00
public function prepareForValidation()
2020-03-02 22:03:40 +11:00
{
$input = $this->all();
2023-02-16 12:36:09 +11:00
if (!isset($input['name'])) {
2022-11-24 20:33:52 +11:00
$input['name'] = 'Untitled Company';
2023-02-16 12:36:09 +11:00
}
2022-11-24 20:33:52 +11:00
if (array_key_exists('google_analytics_url', $input)) {
2020-04-10 21:56:02 +10:00
$input['google_analytics_key'] = $input['google_analytics_url'];
}
2020-04-10 21:56:02 +10:00
if (array_key_exists('portal_domain', $input)) {
$input['portal_domain'] = rtrim(strtolower($input['portal_domain']), "/");
}
2021-12-01 11:09:22 +11:00
2020-03-02 22:03:40 +11:00
$this->replace($input);
}
2019-06-17 09:58:33 +10:00
}