2020-03-03 10:44:26 +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
|
|
|
|
*/
|
2020-03-03 10:44:26 +01:00
|
|
|
|
|
|
|
namespace App\Notifications\Ninja;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
2020-03-08 06:59:06 +01:00
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2020-03-03 10:44:26 +01:00
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
use Illuminate\Notifications\Messages\SlackMessage;
|
|
|
|
use Illuminate\Notifications\Notification;
|
2020-09-06 11:38:10 +02:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2020-03-03 10:44:26 +01:00
|
|
|
|
2021-02-15 01:49:34 +01:00
|
|
|
|
|
|
|
//@deprecated
|
2021-02-11 13:59:47 +01:00
|
|
|
class NewAccountCreated extends Notification
|
2020-03-03 10:44:26 +01:00
|
|
|
{
|
2021-02-11 13:53:53 +01:00
|
|
|
// use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2020-03-03 10:44:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
|
|
|
protected $company;
|
|
|
|
|
|
|
|
public $is_system;
|
|
|
|
|
|
|
|
public function __construct($user, $company, $is_system = false)
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
$this->company = $company;
|
|
|
|
$this->is_system = $is_system;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function via($notifiable)
|
|
|
|
{
|
2021-02-14 21:55:09 +01:00
|
|
|
return ['slack'];
|
2020-03-03 10:44:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return MailMessage
|
2020-03-03 10:44:26 +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)
|
|
|
|
{
|
|
|
|
$this->user->setCompany($this->company);
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$user_name = $this->user->first_name.' '.$this->user->last_name;
|
2020-03-03 10:44:26 +01:00
|
|
|
$email = $this->user->email;
|
|
|
|
$ip = $this->user->ip;
|
|
|
|
|
|
|
|
return (new SlackMessage)
|
|
|
|
->success()
|
|
|
|
->from(ctrans('texts.notification_bot'))
|
|
|
|
->image('https://app.invoiceninja.com/favicon.png')
|
|
|
|
->content("A new account has been created by {$user_name} - {$email} - from IP: {$ip}");
|
|
|
|
}
|
|
|
|
}
|