%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Notifications/ |
Upload File : |
<?php
namespace App\Notifications;
use App\Models\Invoice;
use App\Models\EmailNotificationSetting;
use App\Http\Controllers\InvoiceController;
use Illuminate\Notifications\Messages\SlackMessage;
use NotificationChannels\OneSignal\OneSignalChannel;
class NewInvoice extends BaseNotification
{
/**
* Create a new notification instance.
*
* @return void
*/
private $invoice;
private $emailSetting;
public function __construct(Invoice $invoice)
{
$this->invoice = $invoice;
$this->company = $this->invoice->company;
$this->emailSetting = EmailNotificationSetting::where('company_id', $this->company->id)->where('slug', 'invoice-createupdate-notification')->first();
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
$via = ($this->emailSetting->send_email == 'yes' && $notifiable->email_notifications && $notifiable->email != '') ? ['mail', 'database'] : ['database'];
if ($this->emailSetting->send_push == 'yes') {
array_push($via, OneSignalChannel::class);
}
if ($this->emailSetting->send_slack == 'yes' && $this->company->slackSetting->status == 'active') {
array_push($via, 'slack');
}
return $via;
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage|void
*/
public function toMail($notifiable)
{
$newInvoice = parent::build();
if (($this->invoice->project && !is_null($this->invoice->project->client)) || !is_null($this->invoice->client_id)) {
// For Sending pdf to email
$invoiceController = new InvoiceController();
if ($pdfOption = $invoiceController->domPdfObjectForDownload($this->invoice->id)) {
$pdf = $pdfOption['pdf'];
$filename = $pdfOption['fileName'];
$url = route('front.invoice', $this->invoice->hash);
$url = getDomainSpecificUrl($url, $this->company);
$content = __('email.invoice.text');
$newInvoice->subject(__('email.invoice.subject') . ' - ' . config('app.name') . '.')
->markdown('mail.email', [
'url' => $url,
'content' => $content,
'themeColor' => $this->company->header_color,
'actionText' => __('email.viewInvoice'),
'notifiableName' => $notifiable->name
]);
$newInvoice->attachData($pdf->output(), $filename . '.pdf');
return $newInvoice;
}
}
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
//phpcs:ignore
public function toArray($notifiable)
{
return [
'id' => $this->invoice->id,
'invoice_number' => $this->invoice->invoice_number
];
}
public function toSlack($notifiable)
{
$slack = $notifiable->company->slackSetting;
if (count($notifiable->employee) > 0 && (!is_null($notifiable->employee[0]->slack_username) && ($notifiable->employee[0]->slack_username != ''))) {
return (new SlackMessage())
->from(config('app.name'))
->to('@' . $notifiable->employee[0]->slack_username)
->image($slack->slack_logo_url)
->content(__('email.hello') . ' ' . $notifiable->name .' '. __('email.invoice.subject'));
}
return (new SlackMessage())
->from(config('app.name'))
->image($slack->slack_logo_url)
->content('*' . __('email.invoice.subject') . '*' . "\n" .'This is a redirected notification. Add slack username for *' . $notifiable->name . '*');
}
}