1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 14:12:44 +01:00
invoiceninja/app/Jobs/DownloadInvoices.php

88 lines
2.1 KiB
PHP
Raw Normal View History

2017-07-19 11:59:56 +02:00
<?php
namespace App\Jobs;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use App\Models\User;
use App\Ninja\Mailers\UserMailer;
use Barracuda\ArchiveStream\Archive;
/**
* Class SendInvoiceEmail.
*/
2017-07-30 19:11:33 +02:00
//class DownloadInvoices extends Job implements ShouldQueue
class DownloadInvoices extends Job
2017-07-19 11:59:56 +02:00
{
2017-07-30 19:11:33 +02:00
//use InteractsWithQueue, SerializesModels;
2017-07-19 11:59:56 +02:00
/**
* @var User
*/
protected $user;
/**
* @var array
*/
protected $invoices;
/**
* Create a new job instance.
*
* @param mixed $files
* @param mixed $settings
*/
public function __construct(User $user, $invoices)
{
$this->user = $user;
$this->invoices = $invoices;
}
/**
* Execute the job.
*
* @param ContactMailer $mailer
*/
public function handle(UserMailer $userMailer)
{
2017-07-30 19:11:33 +02:00
$zip = Archive::instance_by_useragent(date('Y-m-d') . '-Invoice_PDFs');
foreach ($this->invoices as $invoice) {
$zip->add_file($invoice->getFileName(), $invoice->getPDFString());
}
$zip->finish();
exit;
/*
2017-07-19 11:59:56 +02:00
// if queues are disabled download a zip file
2017-07-27 12:17:41 +02:00
if (config('queue.default') === 'sync' || count($this->invoices) <= 10) {
2017-07-19 11:59:56 +02:00
$zip = Archive::instance_by_useragent(date('Y-m-d') . '-Invoice_PDFs');
foreach ($this->invoices as $invoice) {
$zip->add_file($invoice->getFileName(), $invoice->getPDFString());
}
$zip->finish();
exit;
// otherwise sends the PDFs in an email
} else {
$data = [];
foreach ($this->invoices as $invoice) {
$data[] = [
'name' => $invoice->getFileName(),
'data' => $invoice->getPDFString(),
];
}
$subject = trans('texts.invoices_are_attached');
$data = [
'documents' => $data
];
$userMailer->sendMessage($this->user, $subject, false, $data);
}
2017-07-30 19:11:33 +02:00
*/
2017-07-19 11:59:56 +02:00
}
}