mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 19:01:58 +00:00
Expand all notifications.
This commit is contained in:
@@ -26,11 +26,14 @@ namespace FireflyIII\Notifications\User;
|
|||||||
|
|
||||||
use FireflyIII\Models\Bill;
|
use FireflyIII\Models\Bill;
|
||||||
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
||||||
|
use FireflyIII\Notifications\ReturnsSettings;
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
use NotificationChannels\Pushover\PushoverMessage;
|
||||||
|
use Ntfy\Message;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class BillReminder
|
* Class BillReminder
|
||||||
@@ -66,14 +69,9 @@ class BillReminder extends Notification
|
|||||||
*/
|
*/
|
||||||
public function toMail(User $notifiable)
|
public function toMail(User $notifiable)
|
||||||
{
|
{
|
||||||
$subject = (string) trans(sprintf('email.bill_warning_subject_%s', $this->field), ['diff' => $this->diff, 'name' => $this->bill->name]);
|
|
||||||
if (0 === $this->diff) {
|
|
||||||
$subject = (string) trans(sprintf('email.bill_warning_subject_now_%s', $this->field), ['diff' => $this->diff, 'name' => $this->bill->name]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (new MailMessage())
|
return (new MailMessage())
|
||||||
->markdown('emails.bill-warning', ['field' => $this->field, 'diff' => $this->diff, 'bill' => $this->bill])
|
->markdown('emails.bill-warning', ['field' => $this->field, 'diff' => $this->diff, 'bill' => $this->bill])
|
||||||
->subject($subject);
|
->subject($this->getSubject());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -81,10 +79,6 @@ class BillReminder extends Notification
|
|||||||
*/
|
*/
|
||||||
public function toSlack(User $notifiable)
|
public function toSlack(User $notifiable)
|
||||||
{
|
{
|
||||||
$message = (string) trans(sprintf('email.bill_warning_subject_%s', $this->field), ['diff' => $this->diff, 'name' => $this->bill->name]);
|
|
||||||
if (0 === $this->diff) {
|
|
||||||
$message = (string) trans(sprintf('email.bill_warning_subject_now_%s', $this->field), ['diff' => $this->diff, 'name' => $this->bill->name]);
|
|
||||||
}
|
|
||||||
$bill = $this->bill;
|
$bill = $this->bill;
|
||||||
$url = route('bills.show', [$bill->id]);
|
$url = route('bills.show', [$bill->id]);
|
||||||
|
|
||||||
@@ -93,7 +87,36 @@ class BillReminder extends Notification
|
|||||||
->attachment(static function ($attachment) use ($bill, $url): void {
|
->attachment(static function ($attachment) use ($bill, $url): void {
|
||||||
$attachment->title((string) trans('firefly.visit_bill', ['name' => $bill->name]), $url);
|
$attachment->title((string) trans('firefly.visit_bill', ['name' => $bill->name]), $url);
|
||||||
})
|
})
|
||||||
->content($message);
|
->content($this->getSubject());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toNtfy(User $notifiable): Message
|
||||||
|
{
|
||||||
|
$settings = ReturnsSettings::getSettings('ntfy', 'user', $notifiable);
|
||||||
|
$message = new Message();
|
||||||
|
$message->topic($settings['ntfy_topic']);
|
||||||
|
$message->title($this->getSubject());
|
||||||
|
$message->body((string) trans('email.bill_warning_please_action'));
|
||||||
|
|
||||||
|
return $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
|
*/
|
||||||
|
public function toPushover(User $notifiable): PushoverMessage
|
||||||
|
{
|
||||||
|
return PushoverMessage::create((string) trans('email.bill_warning_please_action'))
|
||||||
|
->title($this->getSubject());
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getSubject(): string
|
||||||
|
{
|
||||||
|
$message = (string) trans(sprintf('email.bill_warning_subject_%s', $this->field), ['diff' => $this->diff, 'name' => $this->bill->name]);
|
||||||
|
if (0 === $this->diff) {
|
||||||
|
$message = (string) trans(sprintf('email.bill_warning_subject_now_%s', $this->field), ['diff' => $this->diff, 'name' => $this->bill->name]);
|
||||||
|
}
|
||||||
|
return $message;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -25,11 +25,14 @@ declare(strict_types=1);
|
|||||||
namespace FireflyIII\Notifications\User;
|
namespace FireflyIII\Notifications\User;
|
||||||
|
|
||||||
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
||||||
|
use FireflyIII\Notifications\ReturnsSettings;
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
use NotificationChannels\Pushover\PushoverMessage;
|
||||||
|
use Ntfy\Message;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class NewAccessToken
|
* Class NewAccessToken
|
||||||
@@ -66,6 +69,26 @@ class NewAccessToken extends Notification
|
|||||||
return new SlackMessage()->content((string) trans('email.access_token_created_body'));
|
return new SlackMessage()->content((string) trans('email.access_token_created_body'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function toNtfy(User $notifiable): Message
|
||||||
|
{
|
||||||
|
$settings = ReturnsSettings::getSettings('ntfy', 'user', $notifiable);
|
||||||
|
$message = new Message();
|
||||||
|
$message->topic($settings['ntfy_topic']);
|
||||||
|
$message->title((string) trans('email.access_token_created_subject'));
|
||||||
|
$message->body((string) trans('email.access_token_created_body'));
|
||||||
|
|
||||||
|
return $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
|
*/
|
||||||
|
public function toPushover(User $notifiable): PushoverMessage
|
||||||
|
{
|
||||||
|
return PushoverMessage::create((string) trans('email.access_token_created_body'))
|
||||||
|
->title((string) trans('email.access_token_created_subject'));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
|
@@ -25,10 +25,13 @@ declare(strict_types=1);
|
|||||||
namespace FireflyIII\Notifications\User;
|
namespace FireflyIII\Notifications\User;
|
||||||
|
|
||||||
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
||||||
|
use FireflyIII\Notifications\ReturnsSettings;
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
use NotificationChannels\Pushover\PushoverMessage;
|
||||||
|
use Ntfy\Message;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class RuleActionFailed
|
* Class RuleActionFailed
|
||||||
@@ -81,12 +84,33 @@ class RuleActionFailed extends Notification
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function toNtfy(User $notifiable): Message
|
||||||
|
{
|
||||||
|
$settings = ReturnsSettings::getSettings('ntfy', 'user', $notifiable);
|
||||||
|
$message = new Message();
|
||||||
|
$message->topic($settings['ntfy_topic']);
|
||||||
|
$message->body($this->message);
|
||||||
|
|
||||||
|
return $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
|
*/
|
||||||
|
public function toPushover(User $notifiable): PushoverMessage
|
||||||
|
{
|
||||||
|
return PushoverMessage::create($this->message);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
public function via(User $notifiable)
|
public function via(User $notifiable)
|
||||||
{
|
{
|
||||||
// todo disable mail channel
|
$channels = ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
||||||
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
if (($key = array_search('mail', $channels)) !== false) {
|
||||||
|
unset($channels[$key]);
|
||||||
|
}
|
||||||
|
return $channels;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -71,7 +71,6 @@ class TransactionCreation extends Notification
|
|||||||
*/
|
*/
|
||||||
public function via(User $notifiable)
|
public function via(User $notifiable)
|
||||||
{
|
{
|
||||||
// todo only over email?
|
return ['mail'];
|
||||||
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -26,11 +26,14 @@ namespace FireflyIII\Notifications\User;
|
|||||||
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
||||||
|
use FireflyIII\Notifications\ReturnsSettings;
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Notifications\Messages\SlackMessage;
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
use NotificationChannels\Pushover\PushoverMessage;
|
||||||
|
use Ntfy\Message;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class UserLogin
|
* Class UserLogin
|
||||||
@@ -60,41 +63,38 @@ class UserLogin extends Notification
|
|||||||
public function toMail(User $notifiable)
|
public function toMail(User $notifiable)
|
||||||
{
|
{
|
||||||
$time = now(config('app.timezone'))->isoFormat((string) trans('config.date_time_js'));
|
$time = now(config('app.timezone'))->isoFormat((string) trans('config.date_time_js'));
|
||||||
$host = '';
|
|
||||||
|
|
||||||
try {
|
|
||||||
$hostName = app('steam')->getHostName($this->ip);
|
|
||||||
} catch (FireflyException $e) {
|
|
||||||
app('log')->error($e->getMessage());
|
|
||||||
$hostName = $this->ip;
|
|
||||||
}
|
|
||||||
if ($hostName !== $this->ip) {
|
|
||||||
$host = $hostName;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (new MailMessage())
|
return (new MailMessage())
|
||||||
->markdown('emails.new-ip', ['time' => $time, 'ipAddress' => $this->ip, 'host' => $host])
|
->markdown('emails.new-ip', ['time' => $time, 'ipAddress' => $this->ip, 'host' => $this->getHost()])
|
||||||
->subject((string) trans('email.login_from_new_ip'));
|
->subject((string) trans('email.login_from_new_ip'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function toNtfy(User $notifiable): Message
|
||||||
|
{
|
||||||
|
$settings = ReturnsSettings::getSettings('ntfy', 'user', $notifiable);
|
||||||
|
$message = new Message();
|
||||||
|
$message->topic($settings['ntfy_topic']);
|
||||||
|
$message->title((string) trans('email.login_from_new_ip'));
|
||||||
|
$message->body((string) trans('email.slack_login_from_new_ip', ['host' => $this->getHost(), 'ip' => $this->ip]));
|
||||||
|
|
||||||
|
return $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
|
*/
|
||||||
|
public function toPushover(User $notifiable): PushoverMessage
|
||||||
|
{
|
||||||
|
return PushoverMessage::create((string) trans('email.slack_login_from_new_ip', ['host' => $this->getHost(), 'ip' => $this->ip]))
|
||||||
|
->title((string) trans('email.login_from_new_ip'));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
public function toSlack(User $notifiable)
|
public function toSlack(User $notifiable)
|
||||||
{
|
{
|
||||||
$host = '';
|
return new SlackMessage()->content((string) trans('email.slack_login_from_new_ip', ['host' => $this->getHost(), 'ip' => $this->ip]));
|
||||||
|
|
||||||
try {
|
|
||||||
$hostName = app('steam')->getHostName($this->ip);
|
|
||||||
} catch (FireflyException $e) {
|
|
||||||
app('log')->error($e->getMessage());
|
|
||||||
$hostName = $this->ip;
|
|
||||||
}
|
|
||||||
if ($hostName !== $this->ip) {
|
|
||||||
$host = $hostName;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new SlackMessage()->content((string) trans('email.slack_login_from_new_ip', ['host' => $host, 'ip' => $this->ip]));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -104,4 +104,19 @@ class UserLogin extends Notification
|
|||||||
{
|
{
|
||||||
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function getHost(): string {
|
||||||
|
$host = '';
|
||||||
|
|
||||||
|
try {
|
||||||
|
$hostName = app('steam')->getHostName($this->ip);
|
||||||
|
} catch (FireflyException $e) {
|
||||||
|
app('log')->error($e->getMessage());
|
||||||
|
$hostName = $this->ip;
|
||||||
|
}
|
||||||
|
if ($hostName !== $this->ip) {
|
||||||
|
$host = $hostName;
|
||||||
|
}
|
||||||
|
return $host;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -25,10 +25,14 @@ declare(strict_types=1);
|
|||||||
namespace FireflyIII\Notifications\User;
|
namespace FireflyIII\Notifications\User;
|
||||||
|
|
||||||
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
||||||
|
use FireflyIII\Notifications\ReturnsSettings;
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
|
use Illuminate\Notifications\Messages\SlackMessage;
|
||||||
use Illuminate\Notifications\Notification;
|
use Illuminate\Notifications\Notification;
|
||||||
|
use NotificationChannels\Pushover\PushoverMessage;
|
||||||
|
use Ntfy\Message;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class UserNewPassword
|
* Class UserNewPassword
|
||||||
@@ -67,6 +71,29 @@ class UserNewPassword extends Notification
|
|||||||
/**
|
/**
|
||||||
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
*/
|
*/
|
||||||
|
public function toSlack(User $notifiable)
|
||||||
|
{
|
||||||
|
return new SlackMessage()->content((string) trans('email.reset_pw_message'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toNtfy(User $notifiable): Message
|
||||||
|
{
|
||||||
|
$settings = ReturnsSettings::getSettings('ntfy', 'user', $notifiable);
|
||||||
|
$message = new Message();
|
||||||
|
$message->topic($settings['ntfy_topic']);
|
||||||
|
$message->body((string) trans('email.reset_pw_message'));
|
||||||
|
|
||||||
|
return $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
||||||
|
*/
|
||||||
|
public function toPushover(User $notifiable): PushoverMessage
|
||||||
|
{
|
||||||
|
return PushoverMessage::create((string) trans('email.reset_pw_message'));
|
||||||
|
}
|
||||||
|
|
||||||
public function via(User $notifiable)
|
public function via(User $notifiable)
|
||||||
{
|
{
|
||||||
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
||||||
|
@@ -24,7 +24,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace FireflyIII\Notifications\User;
|
namespace FireflyIII\Notifications\User;
|
||||||
|
|
||||||
use FireflyIII\Notifications\ReturnsAvailableChannels;
|
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
@@ -64,6 +63,7 @@ class UserRegistration extends Notification
|
|||||||
*/
|
*/
|
||||||
public function via(User $notifiable)
|
public function via(User $notifiable)
|
||||||
{
|
{
|
||||||
return ReturnsAvailableChannels::returnChannels('user', $notifiable);
|
// other settings will not be available at this point anyway.
|
||||||
|
return ['mail'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -109,6 +109,7 @@ return [
|
|||||||
|
|
||||||
// reset password
|
// reset password
|
||||||
'reset_pw_subject' => 'Your password reset request',
|
'reset_pw_subject' => 'Your password reset request',
|
||||||
|
'reset_pw_message' => 'You have received password reset instructions in your email. If this was you, please follow the instructions.',
|
||||||
'reset_pw_instructions' => 'Somebody tried to reset your password. If it was you, please follow the link below to do so.',
|
'reset_pw_instructions' => 'Somebody tried to reset your password. If it was you, please follow the link below to do so.',
|
||||||
'reset_pw_warning' => '**PLEASE** verify that the link actually goes to the Firefly III you expect it to go!',
|
'reset_pw_warning' => '**PLEASE** verify that the link actually goes to the Firefly III you expect it to go!',
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user