mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:37:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Jobs\Invoice;
 | 
						|
 | 
						|
use App\Jobs\Mail\NinjaMailerJob;
 | 
						|
use App\Jobs\Mail\NinjaMailerObject;
 | 
						|
use App\Jobs\Util\UnlinkFile;
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Mail\DownloadInvoices;
 | 
						|
use App\Models\Company;
 | 
						|
use App\Models\User;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Contracts\Queue\ShouldQueue;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
use Illuminate\Queue\InteractsWithQueue;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
use Illuminate\Support\Facades\Storage;
 | 
						|
 | 
						|
class ZipInvoices implements ShouldQueue
 | 
						|
{
 | 
						|
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 | 
						|
 | 
						|
    public $tries = 1;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param $invoices
 | 
						|
     * @param Company $company
 | 
						|
     * @param $email
 | 
						|
     * @deprecated confirm to be deleted
 | 
						|
     * Create a new job instance.
 | 
						|
     */
 | 
						|
    public function __construct(public mixed $invoices, public Company $company, public User $user)
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute the job.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function handle(): void
 | 
						|
    {
 | 
						|
        MultiDB::setDb($this->company->db);
 | 
						|
        $settings = $this->company->settings;
 | 
						|
 | 
						|
        // create new zip object
 | 
						|
        $zipFile = new \PhpZip\ZipFile();
 | 
						|
        $file_name = date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.invoices')).'.zip';
 | 
						|
        $invitation = $this->invoices->first()->invitations->first();
 | 
						|
        $path = $this->invoices->first()->client->invoice_filepath($invitation);
 | 
						|
 | 
						|
        try {
 | 
						|
 | 
						|
 | 
						|
            foreach ($this->invoices as $invoice) {
 | 
						|
                
 | 
						|
                if ($invoice->client->getSetting('enable_e_invoice')) {
 | 
						|
                    $xml = $invoice->service()->getEInvoice();
 | 
						|
                    $zipFile->addFromString($invoice->getFileName("xml"), $xml);
 | 
						|
                }
 | 
						|
 | 
						|
                $file = $invoice->service()->getRawInvoicePdf();
 | 
						|
                $zip_file_name = $invoice->getFileName();
 | 
						|
                $zipFile->addFromString($zip_file_name, $file);
 | 
						|
            }
 | 
						|
 | 
						|
            Storage::put($path.$file_name, $zipFile->outputAsString());
 | 
						|
 | 
						|
            $nmo = new NinjaMailerObject;
 | 
						|
            $nmo->mailable = new DownloadInvoices(Storage::url($path.$file_name), $this->company);
 | 
						|
            $nmo->to_user = $this->user;
 | 
						|
            $nmo->settings = $settings;
 | 
						|
            $nmo->company = $this->company;
 | 
						|
 | 
						|
            NinjaMailerJob::dispatch($nmo);
 | 
						|
 | 
						|
            UnlinkFile::dispatch(config('filesystems.default'), $path.$file_name)->delay(now()->addHours(1));
 | 
						|
        } catch (\PhpZip\Exception\ZipException $e) {
 | 
						|
            nlog('could not make zip => '.$e->getMessage());
 | 
						|
        } finally {
 | 
						|
            $zipFile->close();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |