mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Services\Credit;
 | 
						|
 | 
						|
use App\Factory\ClientContactFactory;
 | 
						|
use App\Factory\CreditInvitationFactory;
 | 
						|
use App\Models\Credit;
 | 
						|
use App\Models\CreditInvitation;
 | 
						|
use App\Services\AbstractService;
 | 
						|
use Illuminate\Support\Str;
 | 
						|
 | 
						|
class CreateInvitations extends AbstractService
 | 
						|
{
 | 
						|
    private $credit;
 | 
						|
 | 
						|
    public function __construct(Credit $credit)
 | 
						|
    {
 | 
						|
        $this->credit = $credit;
 | 
						|
    }
 | 
						|
 | 
						|
    public function run()
 | 
						|
    {
 | 
						|
        $contacts = $this->credit->client->contacts;
 | 
						|
 | 
						|
        if($contacts->count() == 0){
 | 
						|
            $this->createBlankContact();
 | 
						|
 | 
						|
            $this->credit->refresh();
 | 
						|
            $contacts = $this->credit->client->contacts;
 | 
						|
        }
 | 
						|
 | 
						|
        $contacts->each(function ($contact) {
 | 
						|
            $invitation = CreditInvitation::whereCompanyId($this->credit->company_id)
 | 
						|
                ->whereClientContactId($contact->id)
 | 
						|
                ->whereCreditId($this->credit->id)
 | 
						|
                ->first();
 | 
						|
 | 
						|
            if (! $invitation) {
 | 
						|
                $ii = CreditInvitationFactory::create($this->credit->company_id, $this->credit->user_id);
 | 
						|
                $ii->credit_id = $this->credit->id;
 | 
						|
                $ii->client_contact_id = $contact->id;
 | 
						|
                $ii->save();
 | 
						|
            } elseif (! $contact->send_email) {
 | 
						|
                $invitation->delete();
 | 
						|
            }
 | 
						|
        });
 | 
						|
 | 
						|
        return $this->credit;
 | 
						|
    }
 | 
						|
 | 
						|
    private function createBlankContact()
 | 
						|
    {
 | 
						|
        $new_contact = ClientContactFactory::create($this->credit->company_id, $this->credit->user_id);
 | 
						|
        $new_contact->client_id = $this->credit->client_id;
 | 
						|
        $new_contact->contact_key = Str::random(40);
 | 
						|
        $new_contact->is_primary = true;
 | 
						|
        $new_contact->save();
 | 
						|
    }
 | 
						|
}
 |