mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:07:31 -04:00 
			
		
		
		
	Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the code style applied by adding a [PHP CS Fixer][1] or [PHP CodeSniffer][2] ruleset to your project root. Feel free to use [Shift's Laravel ruleset][3] to help you get started. For more information on customizing the code style applied by Shift, [watch this short video][4]. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://github.com/squizlabs/PHP_CodeSniffer [3]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 [4]: https://laravelshift.com/videos/shift-code-style
		
			
				
	
	
		
			99 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Services\Quote;
 | |
| 
 | |
| use App\Factory\ClientContactFactory;
 | |
| use App\Factory\QuoteInvitationFactory;
 | |
| use App\Models\Quote;
 | |
| use App\Models\QuoteInvitation;
 | |
| use App\Utils\Traits\MakesHash;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class CreateInvitations
 | |
| {
 | |
|     use MakesHash;
 | |
| 
 | |
|     public $quote;
 | |
| 
 | |
|     public function __construct(Quote $quote)
 | |
|     {
 | |
|         $this->quote = $quote;
 | |
|     }
 | |
| 
 | |
|     public function run()
 | |
|     {
 | |
|         $contacts = $this->quote->client->contacts;
 | |
| 
 | |
|         if ($contacts->count() == 0) {
 | |
|             $this->createBlankContact();
 | |
| 
 | |
|             $this->quote->refresh();
 | |
|             $contacts = $this->quote->client->contacts;
 | |
|         }
 | |
| 
 | |
|         $contacts->each(function ($contact) {
 | |
|             $invitation = QuoteInvitation::whereCompanyId($this->quote->company_id)
 | |
|                 ->whereClientContactId($contact->id)
 | |
|                 ->whereQuoteId($this->quote->id)
 | |
|                 ->withTrashed()
 | |
|                 ->first();
 | |
| 
 | |
|             if (! $invitation && $contact->send_email) {
 | |
|                 $ii = QuoteInvitationFactory::create($this->quote->company_id, $this->quote->user_id);
 | |
|                 $ii->key = $this->createDbHash($this->quote->company->db);
 | |
|                 $ii->quote_id = $this->quote->id;
 | |
|                 $ii->client_contact_id = $contact->id;
 | |
|                 $ii->save();
 | |
|             } elseif ($invitation && ! $contact->send_email) {
 | |
|                 $invitation->delete();
 | |
|             }
 | |
|         });
 | |
| 
 | |
|         if ($this->quote->invitations()->count() == 0) {
 | |
|             if ($contacts->count() == 0) {
 | |
|                 $contact = $this->createBlankContact();
 | |
|             } else {
 | |
|                 $contact = $contacts->first();
 | |
| 
 | |
|                 $invitation = QuoteInvitation::where('company_id', $this->quote->company_id)
 | |
|                                         ->where('client_contact_id', $contact->id)
 | |
|                                         ->where('quote_id', $this->quote->id)
 | |
|                                         ->withTrashed()
 | |
|                                         ->first();
 | |
| 
 | |
|                 if ($invitation) {
 | |
|                     $invitation->restore();
 | |
| 
 | |
|                     return $this->quote;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             $ii = QuoteInvitationFactory::create($this->quote->company_id, $this->quote->user_id);
 | |
|             $ii->key = $this->createDbHash($this->quote->company->db);
 | |
|             $ii->quote_id = $this->quote->id;
 | |
|             $ii->client_contact_id = $contact->id;
 | |
|             $ii->save();
 | |
|         }
 | |
| 
 | |
|         return $this->quote->fresh();
 | |
|     }
 | |
| 
 | |
|     private function createBlankContact()
 | |
|     {
 | |
|         $new_contact = ClientContactFactory::create($this->quote->company_id, $this->quote->user_id);
 | |
|         $new_contact->client_id = $this->quote->client_id;
 | |
|         $new_contact->contact_key = Str::random(40);
 | |
|         $new_contact->is_primary = true;
 | |
|         $new_contact->save();
 | |
|     }
 | |
| }
 |