2019-11-04 21:50:10 +01:00
|
|
|
<?php
|
2020-09-21 12:54:58 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-21 12:54:58 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-11-04 21:50:10 +01:00
|
|
|
|
|
|
|
namespace App\Notifications;
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
use Closure;
|
2019-11-04 21:50:10 +01:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
2020-03-11 01:38:11 +01:00
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2019-11-04 21:50:10 +01:00
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
use Illuminate\Notifications\Messages\SlackMessage;
|
|
|
|
use Illuminate\Notifications\Notification;
|
2020-03-11 01:38:11 +01:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2019-11-04 21:50:10 +01:00
|
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
|
2021-02-14 23:54:27 +01:00
|
|
|
//@deprecated for mail
|
2021-02-11 14:02:22 +01:00
|
|
|
class ClientContactRequestCancellation extends Notification
|
2019-11-04 21:50:10 +01:00
|
|
|
{
|
2021-02-11 13:58:36 +01:00
|
|
|
// use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2019-11-04 21:50:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected $recurring_invoice;
|
|
|
|
|
|
|
|
protected $client_contact;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The callback that should be used to build the mail message.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @var Closure|null
|
2019-11-04 21:50:10 +01:00
|
|
|
*/
|
|
|
|
public static $toMailCallback;
|
|
|
|
|
|
|
|
public function __construct($recurring_invoice, $client_contact)
|
|
|
|
{
|
|
|
|
$this->recurring_invoice = $recurring_invoice;
|
|
|
|
$this->client_contact = $client_contact;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function via($notifiable)
|
|
|
|
{
|
2021-02-14 22:32:59 +01:00
|
|
|
return ['slack'];
|
2019-11-04 21:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return MailMessage
|
2019-11-04 21:50:10 +01:00
|
|
|
*/
|
|
|
|
public function toMail($notifiable)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the array representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function toArray($notifiable)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function toSlack($notifiable)
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
$name = $this->client_contact->present()->name();
|
|
|
|
$client_name = $this->client_contact->client->present()->name();
|
|
|
|
$recurring_invoice_number = $this->recurring_invoice->number;
|
2019-11-04 21:50:10 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return (new SlackMessage)
|
2019-11-04 21:50:10 +01:00
|
|
|
->success()
|
2020-09-06 11:38:10 +02:00
|
|
|
->to('#devv2')
|
|
|
|
->from('System')
|
2019-11-04 21:50:10 +01:00
|
|
|
->image('https://app.invoiceninja.com/favicon.png')
|
|
|
|
->content("Contact {$name} from client {$client_name} requested to cancel Recurring Invoice #{$recurring_invoice_number}");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a callback that should be used when building the notification mail message.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Closure $callback
|
2019-11-04 21:50:10 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function toMailUsing($callback)
|
|
|
|
{
|
|
|
|
static::$toMailCallback = $callback;
|
|
|
|
}
|
|
|
|
}
|