1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Jobs/Company/CompanyExport.php

722 lines
27 KiB
PHP
Raw Normal View History

2021-05-13 00:13:33 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
2021-05-13 00:13:33 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-05-13 00:13:33 +02:00
*/
namespace App\Jobs\Company;
2023-10-26 04:57:44 +02:00
use App\Jobs\Mail\NinjaMailerJob;
use App\Jobs\Mail\NinjaMailerObject;
use App\Jobs\Util\UnlinkFile;
2021-05-13 00:13:33 +02:00
use App\Libraries\MultiDB;
2021-05-13 08:01:12 +02:00
use App\Mail\DownloadBackup;
2023-10-26 04:57:44 +02:00
use App\Models\Company;
2021-05-13 04:12:18 +02:00
use App\Models\CreditInvitation;
use App\Models\InvoiceInvitation;
use App\Models\PurchaseOrderInvitation;
2023-10-26 04:57:44 +02:00
use App\Models\QuoteInvitation;
2021-05-13 05:32:36 +02:00
use App\Models\RecurringInvoiceInvitation;
2023-10-26 04:57:44 +02:00
use App\Models\User;
use App\Models\VendorContact;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
use Illuminate\Bus\Queueable;
2021-05-13 00:13:33 +02:00
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
2023-10-26 04:57:44 +02:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Storage;
2024-02-06 21:42:46 +01:00
use Hyvor\JsonExporter\File;
2021-05-13 00:13:33 +02:00
class CompanyExport implements ShouldQueue
{
2024-01-14 05:05:00 +01:00
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;
use MakesHash;
2021-05-13 00:13:33 +02:00
private $export_format = 'json';
2021-05-13 03:25:26 +02:00
private $export_data = [];
2024-02-06 21:42:46 +01:00
private $writer;
private $file_name;
2021-05-13 00:13:33 +02:00
/**
* Create a new job instance.
*
2023-08-07 07:30:34 +02:00
* @param \App\Models\Company $company
* @param \App\Models\User $user
* @param string $hash
2021-05-13 00:13:33 +02:00
*/
public function __construct(public Company $company, private User $user, public string $hash)
2021-05-13 00:13:33 +02:00
{
}
/**
* Execute the job.
*
*/
2021-05-14 05:32:37 +02:00
public function handle()
2021-05-13 00:13:33 +02:00
{
MultiDB::setDb($this->company->db);
2024-02-06 21:42:46 +01:00
$this->file_name = date('Y-m-d') . '_' . str_replace([" ", "/"], ["_",""], $this->company->present()->name() . '_' . $this->company->company_key . '.json');
2024-02-19 06:10:14 +01:00
$this->writer = new File(sys_get_temp_dir().'/'.$this->file_name);
2024-02-06 21:42:46 +01:00
2021-05-13 00:13:33 +02:00
set_time_limit(0);
2024-02-13 05:25:18 +01:00
$this->writer->value('app_version', config('ninja.app_version'));
$this->writer->value('storage_url', Storage::url(''));
2023-02-16 02:36:09 +01:00
$this->export_data['activities'] = $this->company->all_activities->map(function ($activity) {
2021-05-13 05:32:36 +02:00
$activity = $this->transformArrayOfKeys($activity, [
'user_id',
'company_id',
'client_id',
'client_contact_id',
'account_id',
'project_id',
'vendor_id',
'payment_id',
'invoice_id',
'credit_id',
'invitation_id',
'task_id',
'expense_id',
'token_id',
'quote_id',
'subscription_id',
'recurring_invoice_id'
]);
return $activity;
2021-05-27 07:57:07 +02:00
})->makeHidden(['id'])->all();
2021-05-13 05:32:36 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('activities');
$x->addItems($this->export_data['activities']);
$this->export_data = null;
2021-05-13 05:32:36 +02:00
2023-02-16 02:36:09 +01:00
$this->export_data['users'] = $this->company->users()->withTrashed()->cursor()->map(function ($user) {
2021-05-15 08:54:27 +02:00
$user->account_id = $this->encodePrimaryKey($user->account_id);
2024-02-07 23:51:40 +01:00
return $user;
2021-05-27 07:57:07 +02:00
})->all();
2021-05-15 08:54:27 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('users');
$x->addItems($this->export_data['users']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2024-02-07 23:51:40 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['client_contacts'] = $this->company->client_contacts->map(function ($client_contact) {
2021-05-28 00:00:30 +02:00
$client_contact = $this->transformArrayOfKeys($client_contact, ['company_id', 'user_id', 'client_id']);
2023-02-16 02:36:09 +01:00
return $client_contact->makeVisible([
'password',
'remember_token',
'user_id',
'company_id',
'client_id',
'google_2fa_secret',
'id',
'oauth_provider_id',
'oauth_user_id',
'token',
'hashed_id',
]);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('client_contacts');
$x->addItems($this->export_data['client_contacts']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['client_gateway_tokens'] = $this->company->client_gateway_tokens->map(function ($client_gateway_token) {
$client_gateway_token = $this->transformArrayOfKeys($client_gateway_token, ['company_id', 'client_id', 'company_gateway_id']);
2021-05-13 05:32:36 +02:00
2021-05-28 00:00:30 +02:00
return $client_gateway_token->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('client_gateway_tokens');
$x->addItems($this->export_data['client_gateway_tokens']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['clients'] = $this->company->clients()->orderBy('number', 'DESC')->cursor()->map(function ($client) {
2021-05-27 13:02:03 +02:00
$client = $this->transformArrayOfKeys($client, ['company_id', 'user_id', 'assigned_user_id', 'group_settings_id']);
2023-04-11 04:23:09 +02:00
$client->tax_data = '';
return $client->makeVisible(['id','private_notes','user_id','company_id','last_login','hashed_id'])->makeHidden(['is_tax_exempt','has_valid_vat_number']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2021-05-27 13:02:03 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('clients');
$x->addItems($this->export_data['clients']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2024-02-07 02:26:07 +01:00
// $this->export_data['company'] = $this->company->toArray();
// $this->export_data['company']['company_key'] = $this->createHash();
2024-02-13 05:25:18 +01:00
$this->writer->value('company', $this->company->toJson(), encode: false);
// $x = $this->writer->collection('company');
// $x->addItems($this->export_data['company']);
// $this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['company_gateways'] = $this->company->company_gateways()->withTrashed()->cursor()->map(function ($company_gateway) {
2021-05-13 04:12:18 +02:00
$company_gateway = $this->transformArrayOfKeys($company_gateway, ['company_id', 'user_id']);
2021-05-14 08:00:25 +02:00
$company_gateway->config = decrypt($company_gateway->config);
2024-01-14 05:05:00 +01:00
2021-05-28 00:00:30 +02:00
return $company_gateway->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('company_gateways');
$x->addItems($this->export_data['company_gateways']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['company_tokens'] = $this->company->tokens->map(function ($token) {
2021-05-13 04:12:18 +02:00
$token = $this->transformArrayOfKeys($token, ['company_id', 'account_id', 'user_id']);
return $token;
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('company_tokens');
$x->addItems($this->export_data['company_tokens']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['company_ledger'] = $this->company->ledger->map(function ($ledger) {
2021-05-13 04:12:18 +02:00
$ledger = $this->transformArrayOfKeys($ledger, ['activity_id', 'client_id', 'company_id', 'account_id', 'user_id','company_ledgerable_id']);
return $ledger;
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('company_ledger');
$x->addItems($this->export_data['company_ledger']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['company_users'] = $this->company->company_users()->without(['user','account'])->cursor()->map(function ($company_user) {
2021-05-13 04:12:18 +02:00
$company_user = $this->transformArrayOfKeys($company_user, ['company_id', 'account_id', 'user_id']);
return $company_user;
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('company_users');
$x->addItems($this->export_data['company_users']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['credits'] = $this->company->credits()->orderBy('number', 'DESC')->cursor()->map(function ($credit) {
2021-05-13 04:12:18 +02:00
$credit = $this->transformBasicEntities($credit);
$credit = $this->transformArrayOfKeys($credit, ['recurring_id','client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id','invoice_id']);
2021-05-28 10:37:08 +02:00
return $credit->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('credits');
$x->addItems($this->export_data['credits']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 04:12:18 +02:00
2023-08-06 09:35:19 +02:00
$this->export_data['credit_invitations'] = CreditInvitation::query()->where('company_id', $this->company->id)->withTrashed()->cursor()->map(function ($credit) {
$credit = $this->transformArrayOfKeys($credit, ['company_id', 'user_id', 'client_contact_id', 'credit_id']);
2021-05-13 04:12:18 +02:00
2021-05-28 10:37:08 +02:00
return $credit->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('credit_invitations');
$x->addItems($this->export_data['credit_invitations']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-27 07:57:07 +02:00
$this->export_data['designs'] = $this->company->user_designs->makeHidden(['id'])->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('designs');
$x->addItems($this->export_data['designs']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['documents'] = $this->company->all_documents->map(function ($document) {
2021-05-30 13:26:43 +02:00
$document = $this->transformArrayOfKeys($document, ['user_id', 'assigned_user_id', 'company_id', 'project_id', 'vendor_id','documentable_id']);
$document->hashed_id = $this->encodePrimaryKey($document->id);
2021-05-13 04:12:18 +02:00
2021-05-28 10:37:08 +02:00
return $document->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('documents');
$x->addItems($this->export_data['documents']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-11-03 05:14:34 +01:00
$this->export_data['expense_categories'] = $this->company->expense_categories()->cursor()->map(function ($expense_category) {
2021-05-13 04:12:18 +02:00
$expense_category = $this->transformArrayOfKeys($expense_category, ['user_id', 'company_id']);
2024-01-14 05:05:00 +01:00
2021-05-28 10:37:08 +02:00
return $expense_category->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('expense_categories');
$x->addItems($this->export_data['expense_categories']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 04:12:18 +02:00
2023-02-16 02:36:09 +01:00
$this->export_data['expenses'] = $this->company->expenses()->orderBy('number', 'DESC')->cursor()->map(function ($expense) {
2021-05-13 04:12:18 +02:00
$expense = $this->transformBasicEntities($expense);
$expense = $this->transformArrayOfKeys($expense, ['vendor_id', 'invoice_id', 'client_id', 'category_id', 'recurring_expense_id','project_id']);
2021-05-28 10:37:08 +02:00
return $expense->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('expenses');
$x->addItems($this->export_data['expenses']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['group_settings'] = $this->company->group_settings->map(function ($gs) {
2021-05-13 04:12:18 +02:00
$gs = $this->transformArrayOfKeys($gs, ['user_id', 'company_id']);
2021-05-28 10:37:08 +02:00
return $gs->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('group_settings');
$x->addItems($this->export_data['group_settings']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 04:12:18 +02:00
2023-02-16 02:36:09 +01:00
$this->export_data['invoices'] = $this->company->invoices()->orderBy('number', 'DESC')->cursor()->map(function ($invoice) {
2021-05-13 04:12:18 +02:00
$invoice = $this->transformBasicEntities($invoice);
2023-12-15 02:05:21 +01:00
$invoice = $this->transformArrayOfKeys($invoice, ['recurring_id','client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id']);
2023-04-11 04:23:09 +02:00
$invoice->tax_data = '';
2021-05-13 04:12:18 +02:00
2021-05-29 00:27:06 +02:00
return $invoice->makeVisible(['id',
'private_notes',
'user_id',
'client_id',
'company_id',]);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('invoices');
$x->addItems($this->export_data['invoices']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-08-06 09:35:19 +02:00
$this->export_data['invoice_invitations'] = InvoiceInvitation::query()->where('company_id', $this->company->id)->withTrashed()->cursor()->map(function ($invoice) {
$invoice = $this->transformArrayOfKeys($invoice, ['company_id', 'user_id', 'client_contact_id', 'invoice_id']);
2021-05-13 04:12:18 +02:00
2021-05-28 10:37:08 +02:00
return $invoice->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('invoice_invitations');
$x->addItems($this->export_data['invoice_invitations']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['payment_terms'] = $this->company->user_payment_terms->map(function ($term) {
2021-05-13 03:25:26 +02:00
$term = $this->transformArrayOfKeys($term, ['user_id', 'company_id']);
return $term;
2021-05-27 07:57:07 +02:00
})->makeHidden(['id'])->all();
2021-05-13 03:25:26 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('payment_terms');
$x->addItems($this->export_data['payment_terms']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 04:12:18 +02:00
2023-02-16 02:36:09 +01:00
$this->export_data['payments'] = $this->company->payments()->orderBy('number', 'DESC')->cursor()->map(function ($payment) {
2021-05-13 04:12:18 +02:00
$payment = $this->transformBasicEntities($payment);
$payment = $this->transformArrayOfKeys($payment, ['client_id','project_id', 'vendor_id', 'client_contact_id', 'invitation_id', 'company_gateway_id', 'transaction_id']);
2021-05-13 04:12:18 +02:00
2021-05-30 10:03:31 +02:00
$payment->paymentables = $this->transformPaymentable($payment);
2021-05-28 00:00:30 +02:00
return $payment->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('payments');
$x->addItems($this->export_data['payments']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['products'] = $this->company->products->map(function ($product) {
2021-05-28 00:00:30 +02:00
$product = $this->transformBasicEntities($product);
$product = $this->transformArrayOfKeys($product, ['vendor_id','project_id']);
return $product->makeVisible(['id']);
})->all();
2021-05-13 04:12:18 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('products');
$x->addItems($this->export_data['products']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['projects'] = $this->company->projects()->orderBy('number', 'DESC')->cursor()->map(function ($project) {
2021-05-13 03:25:26 +02:00
$project = $this->transformBasicEntities($project);
$project = $this->transformArrayOfKeys($project, ['client_id']);
2021-05-28 10:37:08 +02:00
return $project->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('projects');
$x->addItems($this->export_data['projects']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['quotes'] = $this->company->quotes()->orderBy('number', 'DESC')->cursor()->map(function ($quote) {
2021-05-13 03:25:26 +02:00
$quote = $this->transformBasicEntities($quote);
$quote = $this->transformArrayOfKeys($quote, ['invoice_id','recurring_id','client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id']);
2021-05-28 10:37:08 +02:00
return $quote->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('quotes');
$x->addItems($this->export_data['quotes']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 03:25:26 +02:00
2023-08-06 09:35:19 +02:00
$this->export_data['quote_invitations'] = QuoteInvitation::query()->where('company_id', $this->company->id)->withTrashed()->cursor()->map(function ($quote) {
$quote = $this->transformArrayOfKeys($quote, ['company_id', 'user_id', 'client_contact_id', 'quote_id']);
2021-05-13 03:25:26 +02:00
2021-05-28 11:57:56 +02:00
return $quote->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('quote_invitations');
$x->addItems($this->export_data['quote_invitations']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['recurring_expenses'] = $this->company->recurring_expenses()->orderBy('number', 'DESC')->cursor()->map(function ($expense) {
$expense = $this->transformBasicEntities($expense);
$expense = $this->transformArrayOfKeys($expense, ['vendor_id', 'invoice_id', 'client_id', 'category_id', 'project_id']);
2024-01-14 05:05:00 +01:00
return $expense->makeVisible(['id']);
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('recurring_expenses');
$x->addItems($this->export_data['recurring_expenses']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['recurring_invoices'] = $this->company->recurring_invoices()->orderBy('number', 'DESC')->cursor()->map(function ($ri) {
2021-05-13 03:25:26 +02:00
$ri = $this->transformBasicEntities($ri);
2021-05-13 05:32:36 +02:00
$ri = $this->transformArrayOfKeys($ri, ['client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id']);
2024-01-14 05:05:00 +01:00
2021-05-28 10:37:08 +02:00
return $ri->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('recurring_invoices');
$x->addItems($this->export_data['recurring_invoices']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 03:25:26 +02:00
2023-08-06 09:35:19 +02:00
$this->export_data['recurring_invoice_invitations'] = RecurringInvoiceInvitation::query()->where('company_id', $this->company->id)->withTrashed()->cursor()->map(function ($ri) {
2021-05-13 03:25:26 +02:00
$ri = $this->transformArrayOfKeys($ri, ['company_id', 'user_id', 'client_contact_id', 'recurring_invoice_id']);
return $ri;
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('recurring_invoice_invitations');
$x->addItems($this->export_data['recurring_invoice_invitations']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['subscriptions'] = $this->company->subscriptions->map(function ($subscription) {
2021-05-13 03:25:26 +02:00
$subscription = $this->transformBasicEntities($subscription);
2021-05-13 08:01:12 +02:00
$subscription->group_id = $this->encodePrimaryKey($subscription->group_id);
2021-05-13 03:25:26 +02:00
2021-05-28 10:37:08 +02:00
return $subscription->makeVisible([ 'id',
'user_id',
'assigned_user_id',
'company_id',
'product_ids',
'recurring_product_ids',
'group_id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('subscriptions');
$x->addItems($this->export_data['subscriptions']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2024-06-16 06:35:56 +02:00
2023-02-16 02:36:09 +01:00
$this->export_data['system_logs'] = $this->company->system_logs->map(function ($log) {
2024-06-16 06:35:56 +02:00
$log->client_id = $this->encodePrimaryKey($log->client_id);/** @phpstan-ignore-line */
$log->company_id = $this->encodePrimaryKey($log->company_id);/** @phpstan-ignore-line */
2021-05-13 03:25:26 +02:00
return $log;
2021-05-27 07:57:07 +02:00
})->makeHidden(['id'])->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('system_logs');
$x->addItems($this->export_data['system_logs']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['tasks'] = $this->company->tasks()->orderBy('number', 'DESC')->cursor()->map(function ($task) {
2021-05-13 03:25:26 +02:00
$task = $this->transformBasicEntities($task);
2021-05-13 08:01:12 +02:00
$task = $this->transformArrayOfKeys($task, ['client_id', 'invoice_id', 'project_id', 'status_id']);
2021-05-13 03:25:26 +02:00
2023-12-14 23:39:22 +01:00
return $task->makeHidden(['hash','meta'])->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('tasks');
$x->addItems($this->export_data['tasks']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['task_statuses'] = $this->company->task_statuses->map(function ($status) {
2024-06-16 06:35:56 +02:00
$status->id = $this->encodePrimaryKey($status->id); /** @phpstan-ignore-line */
$status->user_id = $this->encodePrimaryKey($status->user_id);/** @phpstan-ignore-line */
$status->company_id = $this->encodePrimaryKey($status->company_id); /** @phpstan-ignore-line */
2021-05-13 03:25:26 +02:00
return $status;
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('task_statuses');
$x->addItems($this->export_data['task_statuses']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['tax_rates'] = $this->company->tax_rates->map(function ($rate) {
2024-06-16 06:35:56 +02:00
$rate->company_id = $this->encodePrimaryKey($rate->company_id); /** @phpstan-ignore-line */
$rate->user_id = $this->encodePrimaryKey($rate->user_id); /** @phpstan-ignore-line */
2021-05-13 03:25:26 +02:00
2021-05-13 05:32:36 +02:00
return $rate;
2021-05-27 07:57:07 +02:00
})->makeHidden(['id'])->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('tax_rates');
$x->addItems($this->export_data['tax_rates']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['vendors'] = $this->company->vendors()->orderBy('number', 'DESC')->cursor()->map(function ($vendor) {
2021-05-28 10:37:08 +02:00
return $this->transformBasicEntities($vendor)->makeVisible(['id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('vendors');
$x->addItems($this->export_data['vendors']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['vendor_contacts'] = VendorContact::where('company_id', $this->company->id)->withTrashed()->cursor()->map(function ($vendor) {
2021-05-13 03:25:26 +02:00
$vendor = $this->transformBasicEntities($vendor);
$vendor = $this->transformArrayOfKeys($vendor, ['vendor_id']);
2021-05-13 03:25:26 +02:00
return $vendor->makeVisible(['id','user_id']);
2021-05-27 07:57:07 +02:00
})->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('vendor_contacts');
$x->addItems($this->export_data['vendor_contacts']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['webhooks'] = $this->company->webhooks->map(function ($hook) {
2024-06-16 06:35:56 +02:00
$hook->user_id = $this->encodePrimaryKey($hook->user_id);/** @phpstan-ignore-line */
$hook->company_id = $this->encodePrimaryKey($hook->company_id);/** @phpstan-ignore-line */
2021-05-13 03:25:26 +02:00
return $hook;
2021-05-27 07:57:07 +02:00
})->makeHidden(['id'])->all();
2021-05-13 03:25:26 +02:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('webhooks');
$x->addItems($this->export_data['webhooks']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->export_data['purchase_orders'] = $this->company->purchase_orders()->orderBy('number', 'DESC')->cursor()->map(function ($purchase_order) {
$purchase_order = $this->transformBasicEntities($purchase_order);
$purchase_order = $this->transformArrayOfKeys($purchase_order, ['expense_id','client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id','project_id']);
return $purchase_order->makeVisible(['id',
'private_notes',
'user_id',
'client_id',
'vendor_id',
'company_id',]);
})->all();
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('purchase_orders');
$x->addItems($this->export_data['purchase_orders']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-08-06 09:35:19 +02:00
$this->export_data['purchase_order_invitations'] = PurchaseOrderInvitation::query()->where('company_id', $this->company->id)->withTrashed()->cursor()->map(function ($purchase_order) {
$purchase_order = $this->transformArrayOfKeys($purchase_order, ['company_id', 'user_id', 'vendor_contact_id', 'purchase_order_id']);
return $purchase_order->makeVisible(['id']);
})->all();
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('purchase_order_invitations');
$x->addItems($this->export_data['purchase_order_invitations']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-12-11 12:42:50 +01:00
$this->export_data['bank_integrations'] = $this->company->bank_integrations()->withTrashed()->orderBy('id', 'ASC')->cursor()->map(function ($bank_integration) {
$bank_integration = $this->transformArrayOfKeys($bank_integration, ['account_id','company_id', 'user_id']);
2023-12-11 12:42:50 +01:00
return $bank_integration->makeVisible(['id','user_id','company_id','account_id','hashed_id']);
})->all();
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('bank_integrations');
$x->addItems($this->export_data['bank_integrations']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-12-11 12:42:50 +01:00
$this->export_data['bank_transactions'] = $this->company->bank_transactions()->withTrashed()->orderBy('id', 'ASC')->cursor()->map(function ($bank_transaction) {
$bank_transaction = $this->transformArrayOfKeys($bank_transaction, ['company_id', 'user_id','bank_integration_id','expense_id','ninja_category_id','vendor_id']);
return $bank_transaction->makeVisible(['id','user_id','company_id']);
})->all();
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('bank_transactions');
$x->addItems($this->export_data['bank_transactions']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2023-12-11 12:42:50 +01:00
$this->export_data['schedulers'] = $this->company->schedulers()->withTrashed()->orderBy('id', 'ASC')->cursor()->map(function ($scheduler) {
2023-11-03 05:14:34 +01:00
$scheduler = $this->transformArrayOfKeys($scheduler, ['company_id', 'user_id']);
return $scheduler->makeVisible(['id','user_id','company_id']);
})->all();
2024-02-13 05:25:18 +01:00
$x = $this->writer->collection('schedulers');
$x->addItems($this->export_data['schedulers']);
$this->export_data = null;
2024-02-06 21:42:46 +01:00
2021-05-13 08:01:12 +02:00
//write to tmp and email to owner();
2024-01-14 05:05:00 +01:00
2024-02-06 21:42:46 +01:00
2024-02-13 05:25:18 +01:00
$this->writer->end();
2024-02-06 21:42:46 +01:00
2023-02-16 02:36:09 +01:00
$this->zipAndSend();
2021-05-14 05:32:37 +02:00
2023-02-16 02:36:09 +01:00
return true;
2021-05-13 03:25:26 +02:00
}
private function transformBasicEntities($model)
{
2021-05-29 00:09:47 +02:00
return $this->transformArrayOfKeys($model, ['user_id', 'assigned_user_id', 'company_id']);
2021-05-13 03:25:26 +02:00
}
private function transformArrayOfKeys($model, $keys)
{
2023-02-16 02:36:09 +01:00
foreach ($keys as $key) {
2021-05-13 03:25:26 +02:00
$model->{$key} = $this->encodePrimaryKey($model->{$key});
}
return $model;
2021-05-13 00:13:33 +02:00
}
2021-05-30 10:03:31 +02:00
private function transformPaymentable($payment)
{
$new_arr = [];
2023-02-16 02:36:09 +01:00
foreach ($payment->paymentables as $paymentable) {
2021-05-30 10:03:31 +02:00
$paymentable->payment_id = $this->encodePrimaryKey($paymentable->payment_id);
$paymentable->paymentable_id = $this->encodePrimaryKey($paymentable->paymentable_id);
$new_arr[] = $paymentable;
}
return $new_arr;
}
2021-05-13 08:01:12 +02:00
private function zipAndSend()
{
2024-02-19 06:10:14 +01:00
$zip_path = sys_get_temp_dir().'/'.\Illuminate\Support\Str::ascii(str_replace(".json", ".zip", $this->file_name));
2021-05-26 10:47:10 +02:00
$zip = new \ZipArchive();
2021-05-13 08:01:12 +02:00
2024-01-14 05:05:00 +01:00
if ($zip->open($zip_path, \ZipArchive::CREATE) !== true) {
2021-05-26 10:47:10 +02:00
nlog("cannot open {$zip_path}");
}
2021-05-13 08:01:12 +02:00
2024-02-19 06:10:14 +01:00
$zip->addFile(sys_get_temp_dir().'/'.$this->file_name, 'backup.json');
// $zip->renameName($this->file_name, 'backup.json');
2024-02-07 01:45:34 +01:00
2021-05-26 10:47:10 +02:00
$zip->close();
2021-05-13 08:01:12 +02:00
2024-02-13 05:25:18 +01:00
Storage::disk(config('filesystems.default'))->put('backups/'.str_replace(".json", ".zip", $this->file_name), file_get_contents($zip_path));
2023-08-06 07:34:44 +02:00
2023-10-26 04:57:44 +02:00
if(file_exists($zip_path)) {
unlink($zip_path);
}
2021-05-31 12:47:12 +02:00
2024-02-19 06:10:14 +01:00
if(file_exists(sys_get_temp_dir().'/'.$this->file_name)) {
unlink(sys_get_temp_dir().'/'.$this->file_name);
2024-02-07 23:51:40 +01:00
}
2023-10-26 04:57:44 +02:00
if(Ninja::isSelfHost()) {
2024-02-13 05:25:18 +01:00
$storage_path = 'backups/'.str_replace(".json", ".zip", $this->file_name);
2023-10-26 04:57:44 +02:00
} else {
2024-02-13 05:25:18 +01:00
$storage_path = Storage::disk(config('filesystems.default'))->path('backups/'.str_replace(".json", ".zip", $this->file_name));
2023-10-26 04:57:44 +02:00
}
2021-09-18 06:48:13 +02:00
$url = Cache::get($this->hash);
2023-07-19 11:59:11 +02:00
Cache::put($this->hash, $storage_path, now()->addHour());
2023-07-07 07:05:08 +02:00
2021-08-23 12:14:04 +02:00
App::forgetInstance('translator');
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->company->settings));
2024-01-14 05:05:00 +01:00
$nmo = new NinjaMailerObject();
2023-11-30 07:44:34 +01:00
$nmo->mailable = new DownloadBackup($url, $this->company->withoutRelations());
2021-05-13 15:37:25 +02:00
$nmo->to_user = $this->user;
2023-11-30 07:44:34 +01:00
$nmo->company = $this->company->withoutRelations();
2021-05-13 15:37:25 +02:00
$nmo->settings = $this->company->settings;
2024-01-14 05:05:00 +01:00
2023-11-19 23:04:11 +01:00
(new NinjaMailerJob($nmo, true))->handle();
2024-01-14 05:05:00 +01:00
UnlinkFile::dispatch(config('filesystems.default'), $storage_path)->delay(now()->addHours(1));
2021-05-13 15:37:25 +02:00
2023-02-16 02:36:09 +01:00
if (Ninja::isHosted()) {
2021-09-18 06:49:43 +02:00
sleep(3);
2024-01-14 05:05:00 +01:00
2024-02-19 06:10:14 +01:00
if(file_exists(sys_get_temp_dir().'/'.$zip_path)) {
unlink(sys_get_temp_dir().'/'.$zip_path);
2023-10-26 04:57:44 +02:00
}
2021-09-18 06:49:43 +02:00
}
2021-05-13 08:01:12 +02:00
}
2021-05-13 00:13:33 +02:00
}