invoices = $invoices; $this->company = $company; $this->user = $user; $this->settings = $company->settings; } /** * Execute the job. * * @return void * @throws \ZipStream\Exception\FileNotFoundException * @throws \ZipStream\Exception\FileNotReadableException * @throws \ZipStream\Exception\OverflowException */ public function handle() { MultiDB::setDb($this->company->db); // 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); $this->invoices->each(function ($invoice) { (new CreateEntityPdf($invoice->invitations()->first()))->handle(); if ($this->company->use_xinvoice){ (new CreateXInvoice($invoice, false))->handle(); } }); try { foreach ($this->invoices as $invoice) { $file = $invoice->service()->getInvoicePdf(); $xinvoice = $invoice->service()->getXInvoice(); $zip_file_name = basename($file); $xinvoice_zip_file_name = basename($xinvoice); $zipFile->addFromString($zip_file_name, Storage::get($file)) ->addDir($xinvoice_zip_file_name, Storage::get($xinvoice)); //$download_file = file_get_contents($invoice->pdf_file_path($invitation, 'url', true)); //$zipFile->addFromString(basename($invoice->pdf_file_path($invitation)), $download_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 = $this->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(); } } }