mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:27:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests\ClientPortal;
 | 
						|
 | 
						|
use App\Models\Account;
 | 
						|
use App\Models\Company;
 | 
						|
use App\Utils\Ninja;
 | 
						|
use Illuminate\Foundation\Http\FormRequest;
 | 
						|
 | 
						|
class RegisterRequest extends FormRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Determine if the user is authorized to make this request.
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function authorize()
 | 
						|
    {
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the validation rules that apply to the request.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'first_name' => ['required', 'string', 'max:255'],
 | 
						|
            'last_name' => ['required', 'string', 'max:255'],
 | 
						|
            'phone' => ['required', 'string', 'max:255'],
 | 
						|
            'email' => ['required', 'string', 'email:rfc,dns', 'max:255', 'unique:client_contacts'],
 | 
						|
            'password' => ['required', 'string', 'min:6', 'confirmed'],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    public function company()
 | 
						|
    {
 | 
						|
        if ($this->subdomain) {
 | 
						|
            return Company::where('subdomain', $this->subdomain)->firstOrFail();
 | 
						|
        }
 | 
						|
 | 
						|
        if ($this->company_key) {
 | 
						|
            return Company::where('company_key', $this->company_key)->firstOrFail();
 | 
						|
        }
 | 
						|
 | 
						|
        if (!$this->route()->parameter('company_key') && Ninja::isSelfHost()) {
 | 
						|
            $company = Account::first()->default_company;
 | 
						|
 | 
						|
            abort_unless($company->client_can_register, 404);
 | 
						|
 | 
						|
            return $company;
 | 
						|
        }
 | 
						|
 | 
						|
        abort(404, 'Register request not found.');
 | 
						|
    }
 | 
						|
}
 |