user()->can('create', Company::class); } public function rules() { $input = $this->all(); $rules = []; $rules['name'] = new ValidCompanyQuantity(); $rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb $rules['settings'] = new ValidSettingsRule(); if (isset($input['portal_mode']) && ($input['portal_mode'] == 'domain' || $input['portal_mode'] == 'iframe')) { $rules['portal_domain'] = 'sometimes|url'; } else { if (Ninja::isHosted()) { $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; } public function prepareForValidation() { $input = $this->all(); if (array_key_exists('google_analytics_url', $input)) { $input['google_analytics_key'] = $input['google_analytics_url']; } // $company_settings = CompanySettings::defaults(); //@todo this code doesn't make sense as we never return $company_settings anywhere //@deprecated??? // if (array_key_exists('settings', $input) && ! empty($input['settings'])) { // foreach ($input['settings'] as $key => $value) { // $company_settings->{$key} = $value; // } // } if (array_key_exists('portal_domain', $input)) { $input['portal_domain'] = strtolower($input['portal_domain']); } $this->replace($input); } }