mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 22:27:32 -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
		
			
				
	
	
		
			154 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			154 lines
		
	
	
		
			5.3 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\Transformers;
 | |
| 
 | |
| use App\Models\Activity;
 | |
| use App\Models\Backup;
 | |
| use App\Models\ClientContact;
 | |
| use App\Models\Invoice;
 | |
| use App\Models\Task;
 | |
| use App\Models\User;
 | |
| use App\Utils\Traits\MakesHash;
 | |
| 
 | |
| class ActivityTransformer extends EntityTransformer
 | |
| {
 | |
|     use MakesHash;
 | |
| 
 | |
|     protected $defaultIncludes = [];
 | |
| 
 | |
|     /**
 | |
|      * @var array
 | |
|      */
 | |
|     protected $availableIncludes = [
 | |
|         'history',
 | |
|         'user',
 | |
|         'client',
 | |
|         'contact',
 | |
|         'recurring_invoice',
 | |
|         'invoice',
 | |
|         'credit',
 | |
|         'quote',
 | |
|         'payment',
 | |
|         'expense',
 | |
|         'task',
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * @param Activity $activity
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function transform(Activity $activity)
 | |
|     {
 | |
|         return [
 | |
|             'id' => (string) $this->encodePrimaryKey($activity->id),
 | |
|             'activity_type_id' => (string) $activity->activity_type_id,
 | |
|             'client_id' => $activity->client_id ? (string) $this->encodePrimaryKey($activity->client_id) : '',
 | |
|             'recurring_invoice_id' => $activity->recurring_invoice_id ? (string) $this->encodePrimaryKey($activity->recurring_invoice_id) : '',
 | |
|             'recurring_expense_id' => $activity->recurring_expense_id ? (string) $this->encodePrimaryKey($activity->recurring_expense_id) : '',
 | |
|             'company_id' => $activity->company_id ? (string) $this->encodePrimaryKey($activity->company_id) : '',
 | |
|             'user_id' => (string) $this->encodePrimaryKey($activity->user_id),
 | |
|             'invoice_id' => $activity->invoice_id ? (string) $this->encodePrimaryKey($activity->invoice_id) : '',
 | |
|             'quote_id' => $activity->quote_id ? (string) $this->encodePrimaryKey($activity->quote_id) : '',
 | |
|             'payment_id' => $activity->payment_id ? (string) $this->encodePrimaryKey($activity->payment_id) : '',
 | |
|             'credit_id' => $activity->credit_id ? (string) $this->encodePrimaryKey($activity->credit_id) : '',
 | |
|             'updated_at' => (int) $activity->updated_at,
 | |
|             'created_at' => (int) $activity->created_at,
 | |
|             'expense_id' => $activity->expense_id ? (string) $this->encodePrimaryKey($activity->expense_id) : '',
 | |
|             'is_system' => (bool) $activity->is_system,
 | |
|             'contact_id' => $activity->client_contact_id ? (string) $this->encodePrimaryKey($activity->client_contact_id) : '',
 | |
|             'task_id' => $activity->task_id ? (string) $this->encodePrimaryKey($activity->task_id) : '',
 | |
|             'token_id' => $activity->token_id ? (string) $this->encodePrimaryKey($activity->token_id) : '',
 | |
|             'notes' => $activity->notes ? (string) $activity->notes : '',
 | |
|             'ip' => (string) $activity->ip,
 | |
| 
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function includeHistory(Activity $activity)
 | |
|     {
 | |
|         $transformer = new InvoiceHistoryTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->backup, $transformer, Backup::class);
 | |
|     }
 | |
| 
 | |
|     public function includeClient(Activity $activity)
 | |
|     {
 | |
|         $transformer = new ClientTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->client, $transformer, Client::class);
 | |
|     }
 | |
| 
 | |
|     public function includeContact(Activity $activity)
 | |
|     {
 | |
|         $transformer = new ClientContactTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->contact, $transformer, ClientContact::class);
 | |
|     }
 | |
| 
 | |
|     public function includeRecurringInvoice(Activity $activity)
 | |
|     {
 | |
|         $transformer = new RecurringInvoiceTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->recurring_invoice, $transformer, RecurringInvoice::class);
 | |
|     }
 | |
| 
 | |
|     public function includeQuote(Activity $activity)
 | |
|     {
 | |
|         $transformer = new RecurringInvoiceTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->quote, $transformer, Quote::class);
 | |
|     }
 | |
| 
 | |
|     public function includeInvoice(Activity $activity)
 | |
|     {
 | |
|         $transformer = new InvoiceTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->invoice, $transformer, Invoice::class);
 | |
|     }
 | |
| 
 | |
|     public function includeCredit(Activity $activity)
 | |
|     {
 | |
|         $transformer = new CreditTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->credit, $transformer, Credit::class);
 | |
|     }
 | |
| 
 | |
|     public function includePayment(Activity $activity)
 | |
|     {
 | |
|         $transformer = new PaymentTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->payment, $transformer, Payment::class);
 | |
|     }
 | |
| 
 | |
|     public function includeUser(Activity $activity)
 | |
|     {
 | |
|         $transformer = new UserTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->user, $transformer, User::class);
 | |
|     }
 | |
| 
 | |
|     public function includeExpense(Activity $activity)
 | |
|     {
 | |
|         $transformer = new ExpenseTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->expense, $transformer, Expense::class);
 | |
|     }
 | |
| 
 | |
|     public function includeTask(Activity $activity)
 | |
|     {
 | |
|         $transformer = new TaskTransformer($this->serializer);
 | |
| 
 | |
|         return $this->includeItem($activity->task, $transformer, Task::class);
 | |
|     }
 | |
| }
 |