mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
74a6c4f2ee
* Performance improvements moving from str_replace to strtr * Remove legacy docs * Clean up credit transformer * Working on invoice emails * Clean up for invoice designs * Tests for light and dark theme emails * Working on reminder scheduling * Reminder Job Class * Fixes for github actions * PHP CS * Test for reminders * Test for reminders
79 lines
2.2 KiB
PHP
79 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Requests\Company;
|
|
|
|
use App\DataMapper\CompanySettings;
|
|
use App\Http\Requests\Request;
|
|
use App\Http\ValidationRules\Company\ValidCompanyQuantity;
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
|
use App\Models\ClientContact;
|
|
use App\Models\Company;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class StoreCompanyRequest extends Request
|
|
{
|
|
use MakesHash;
|
|
/**
|
|
* 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()
|
|
{
|
|
$rules = [];
|
|
|
|
$rules['name'] = new ValidCompanyQuantity();
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
|
$rules['settings'] = new ValidSettingsRule();
|
|
|
|
if (isset($rules['portal_mode']) && ($rules['portal_mode'] == 'domain' || $rules['portal_mode'] == 'iframe')) {
|
|
$rules['portal_domain'] = 'sometimes|url';
|
|
} else {
|
|
$rules['portal_domain'] = 'nullable|alpha_num';
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
protected 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();
|
|
|
|
if (array_key_exists('settings', $input) && !empty($input['settings'])) {
|
|
foreach ($input['settings'] as $key => $value) {
|
|
$company_settings->{$key} = $value;
|
|
}
|
|
}
|
|
|
|
// $company_settings->invoice_design_id = $this->encodePrimaryKey(1);
|
|
// $company_settings->quote_design_id = $this->encodePrimaryKey(1);
|
|
// $company_settings->credit_design_id = $this->encodePrimaryKey(1);
|
|
|
|
// $input['settings'] = $company_settings;
|
|
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|