2019-06-17 01:58:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. 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;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-11-12 12:36:24 +01:00
|
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
2019-06-17 01:58:33 +02:00
|
|
|
use App\Models\ClientContact;
|
|
|
|
use App\Models\Company;
|
|
|
|
|
|
|
|
class StoreCompanyRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2019-11-12 22:26:40 +01:00
|
|
|
//$rules['name'] = 'required';
|
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();
|
2019-11-27 10:47:59 +01: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
|
|
|
}
|
2019-11-27 10:47:59 +01:00
|
|
|
|
2019-11-12 12:36:24 +01:00
|
|
|
return $rules;
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|
|
|
|
}
|