2019-06-17 01:58:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-06-17 01:58:33 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-06-17 01:58:33 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Company;
|
|
|
|
|
2020-03-06 06:08:44 +01:00
|
|
|
use App\DataMapper\CompanySettings;
|
2019-06-17 01:58:33 +02:00
|
|
|
use App\Http\Requests\Request;
|
2020-03-10 23:20:09 +01:00
|
|
|
use App\Http\ValidationRules\Company\ValidCompanyQuantity;
|
2019-11-12 12:36:24 +01:00
|
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
2019-06-17 01:58:33 +02:00
|
|
|
use App\Models\Company;
|
2020-03-06 12:10:59 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-06-17 01:58:33 +02:00
|
|
|
|
|
|
|
class StoreCompanyRequest extends Request
|
|
|
|
{
|
2020-03-06 12:10:59 +01:00
|
|
|
use MakesHash;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
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()
|
|
|
|
{
|
2019-11-12 12:36:24 +01:00
|
|
|
$rules = [];
|
2019-06-17 01:58:33 +02:00
|
|
|
|
2020-03-10 23:20:09 +01:00
|
|
|
$rules['name'] = new ValidCompanyQuantity();
|
2019-11-12 12:36:24 +01:00
|
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
2019-12-30 22:59:12 +01:00
|
|
|
$rules['settings'] = new ValidSettingsRule();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($rules['portal_mode']) && ($rules['portal_mode'] == 'domain' || $rules['portal_mode'] == 'iframe')) {
|
2019-11-27 10:47:59 +01:00
|
|
|
$rules['portal_domain'] = 'sometimes|url';
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-11-27 10:47:59 +01:00
|
|
|
$rules['portal_domain'] = 'nullable|alpha_num';
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-11-12 12:36:24 +01:00
|
|
|
return $rules;
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|
2020-03-02 12:03:40 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
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-15 02:30:52 +02:00
|
|
|
}
|
2020-04-10 13:56:02 +02:00
|
|
|
|
2020-03-06 06:08:44 +01:00
|
|
|
$company_settings = CompanySettings::defaults();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (array_key_exists('settings', $input) && ! empty($input['settings'])) {
|
2020-03-21 06:37:30 +01:00
|
|
|
foreach ($input['settings'] as $key => $value) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$company_settings->{$key} = $value;
|
|
|
|
}
|
2020-03-02 12:03:40 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-02 12:03:40 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|