1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Company/StoreCompanyRequest.php

78 lines
2.2 KiB
PHP
Raw Normal View History

2019-06-17 01:58:33 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-06-17 01:58:33 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-06-17 01:58:33 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-06-17 01:58:33 +02:00
*/
namespace App\Http\Requests\Company;
use App\DataMapper\CompanySettings;
2019-06-17 01:58:33 +02:00
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 01:58:33 +02:00
use App\Models\Company;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
2019-06-17 01:58:33 +02:00
class StoreCompanyRequest extends Request
{
use MakesHash;
2019-06-17 01:58:33 +02: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 05:12:51 +02:00
$input = $this->all();
$rules = [];
2019-06-17 01:58:33 +02:00
$rules['name'] = new ValidCompanyQuantity();
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
$rules['settings'] = new ValidSettingsRule();
2021-04-28 05:12:51 +02: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 12:47:49 +02: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 01:58:33 +02:00
}
2020-03-02 12:03:40 +01:00
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
2020-03-02 12:03:40 +01:00
{
$input = $this->all();
2022-11-24 10:33:52 +01:00
if(!isset($input['name']))
$input['name'] = 'Untitled Company';
if (array_key_exists('google_analytics_url', $input)) {
2020-04-10 13:56:02 +02:00
$input['google_analytics_key'] = $input['google_analytics_url'];
}
2020-04-10 13:56:02 +02:00
if (array_key_exists('portal_domain', $input)) {
$input['portal_domain'] = rtrim(strtolower($input['portal_domain']), "/");
}
2021-12-01 01:09:22 +01:00
2020-03-02 12:03:40 +01:00
$this->replace($input);
}
2019-06-17 01:58:33 +02:00
}