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-10-10 03:01:38 +02:00
|
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
2019-06-17 01:58:33 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdateCompanyRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->company);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2019-11-12 12:36:24 +01:00
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
|
|
|
$rules['settings'] = new ValidSettingsRule();
|
|
|
|
$rules['industry_id'] = 'integer|nullable';
|
|
|
|
$rules['size_id'] = 'integer|nullable';
|
|
|
|
$rules['country_id'] = 'integer|nullable';
|
|
|
|
$rules['work_email'] = 'email|nullable';
|
2019-11-26 11:32:01 +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-12 12:36:24 +01:00
|
|
|
|
|
|
|
return $rules;
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|
2020-03-06 12:10:59 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
}
|
2019-07-04 06:04:01 +02:00
|
|
|
}
|