mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:57:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Services\Migration;
 | |
| 
 | |
| use App\Models\Account;
 | |
| use Unirest\Request;
 | |
| use Unirest\Request\Body;
 | |
| 
 | |
| class CompanyService
 | |
| {
 | |
|     protected $isSuccessful;
 | |
|     protected $companies = [];
 | |
| 
 | |
|     public function start()
 | |
|     {
 | |
|         try {
 | |
|             if (session(SESSION_USER_ACCOUNTS)) {
 | |
|                 foreach (session(SESSION_USER_ACCOUNTS) as $company) {
 | |
|                     $account = Account::find($company->account_id);
 | |
| 
 | |
|                     if ($account) {
 | |
|                         $this->companies[] = [
 | |
|                             'id' => $account->id,
 | |
|                             'name' => $account->present()->name(),
 | |
|                             'company_key' => $account->account_key,
 | |
|                         ];
 | |
|                     }
 | |
|                 }
 | |
|             } else {
 | |
|                 $this->companies[] = [
 | |
|                     'id' => auth()->user()->account->id,
 | |
|                     'name' => auth()->user()->account->present()->name(),
 | |
|                     'company_key' => auth()->user()->account->account_key,
 | |
|                 ];
 | |
|             }
 | |
| 
 | |
|             $this->isSuccessful = true;
 | |
|         } catch (\Exception $th) {
 | |
|             $this->isSuccessful = false;
 | |
|             $this->errors = [];
 | |
|         }
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function isSuccessful()
 | |
|     {
 | |
|         return $this->isSuccessful;
 | |
|     }
 | |
| 
 | |
|     public function getCompanies()
 | |
|     {
 | |
|         if ($this->isSuccessful) {
 | |
|             return $this->companies;
 | |
|         }
 | |
| 
 | |
|         return [];
 | |
|     }
 | |
| 
 | |
|     public function getErrors()
 | |
|     {
 | |
|         return $this->errors;
 | |
|     }
 | |
| }
 |