mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
51 lines
1.1 KiB
PHP
Executable File
51 lines
1.1 KiB
PHP
Executable File
<?php
|
|
|
|
use ninja\mailers\UserMailer;
|
|
use ninja\mailers\ContactMailer;
|
|
|
|
class InvoiceEventHandler
|
|
{
|
|
protected $userMailer;
|
|
protected $contactMailer;
|
|
|
|
public function __construct(UserMailer $userMailer, ContactMailer $contactMailer)
|
|
{
|
|
$this->userMailer = $userMailer;
|
|
$this->contactMailer = $contactMailer;
|
|
}
|
|
|
|
public function subscribe($events)
|
|
{
|
|
$events->listen('invoice.sent', 'InvoiceEventHandler@onSent');
|
|
$events->listen('invoice.viewed', 'InvoiceEventHandler@onViewed');
|
|
$events->listen('invoice.paid', 'InvoiceEventHandler@onPaid');
|
|
}
|
|
|
|
public function onSent($invoice)
|
|
{
|
|
$this->sendNotifications($invoice, 'sent');
|
|
}
|
|
|
|
public function onViewed($invoice)
|
|
{
|
|
$this->sendNotifications($invoice, 'viewed');
|
|
}
|
|
|
|
public function onPaid($payment)
|
|
{
|
|
$this->contactMailer->sendPaymentConfirmation($payment);
|
|
|
|
$this->sendNotifications($payment->invoice, 'paid', $payment);
|
|
}
|
|
|
|
private function sendNotifications($invoice, $type, $payment = null)
|
|
{
|
|
foreach ($invoice->account->users as $user)
|
|
{
|
|
if ($user->{'notify_' . $type})
|
|
{
|
|
$this->userMailer->sendNotification($user, $invoice, $type, $payment);
|
|
}
|
|
}
|
|
}
|
|
} |