Skip to content

Commit

Permalink
fix: Added new Slack/Discord notification when a corporation is warde…
Browse files Browse the repository at this point in the history
…cced
  • Loading branch information
moppa committed Nov 15, 2023
1 parent 0b70be0 commit 2cd3c9c
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Config/notifications.alerts.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,12 @@
'slack' => \Seat\Notifications\Notifications\Structures\Slack\StructureWentLowPower::class,
],
],
'WarDeclared' => [
'label' => 'notifications::alerts.corporation_war_declared',
'handlers' => [
'slack' => \Seat\Notifications\Notifications\Wars\Slack\WarDeclared::class,
],
],
'inactive_member' => [
'label' => 'notifications::alerts.war_inactive_member',
'handlers' => [
Expand Down
104 changes: 104 additions & 0 deletions src/Notifications/Wars/Slack/WarDeclared.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
<?php

/*
* This file is part of SeAT
*
* Copyright (C) 2015 to 2022 Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

namespace Seat\Notifications\Notifications\Wars\Slack;

use Illuminate\Notifications\Messages\SlackMessage;
use Seat\Eveapi\Models\Character\CharacterNotification;
use Seat\Eveapi\Models\Universe\UniverseName;
use Seat\Notifications\Notifications\AbstractNotification;

/**
* Class WarDeclared.
*
* @package Seat\Notifications\Notifications\Wars\Slack
*/
class WarDeclared extends AbstractNotification
{
/**
* @var \Seat\Eveapi\Models\Character\CharacterNotification
*/
private $notification;

/**
* WarDeclared constructor.
*
* @param \Seat\Eveapi\Models\Character\CharacterNotification $notification
*/
public function __construct(CharacterNotification $notification)
{
$this->notification = $notification;
}

/**
* @param $notifiable
* @return array
*/
public function via($notifiable)
{
return ['slack'];
}

/**
* @param $notifiable
* @return \Illuminate\Notifications\Messages\SlackMessage
*/
public function toSlack($notifiable)
{
$message = (new SlackMessage())
->from('SeAT War Observer')
->content('A new War has been declared !')
->attachment(function ($attachment) {
$attachment
->field(function ($field) {
$entity = UniverseName::firstOrNew(
['entity_id' => $this->notification->text['declaredByID']],
['name' => trans('web::seat.unknown')]
);

$field->title('Aggressor')
->content($entity->name);
})
->field(function ($field) {
$entity = UniverseName::firstOrNew(
['entity_id' => $this->notification->text['againstID']],
['name' => trans('web::seat.unknown')]
);

$field->title('Defender')
->content($entity->name);
});
})
->attachment(function ($attachment) {
$attachment
->field(function ($field) {
$field->title('Start in')
->content(sprintf('%d hours', $this->notification->text['delayHours']));
});
});

($this->notification->text['hostileState']) ?
$message->error() : $message->warning();

return $message;
}
}
1 change: 1 addition & 0 deletions src/resources/lang/en/alerts.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
'character_left_corporation' => 'Corporation Leaving Character',
'corporation_alliance_bill' => 'New Alliance Bill',
'corporation_application_new' => 'New Corporation Application',
'corporation_war_declared' => 'Corporation War Declared',
'moon_mining_extraction_finished' => 'MM Finished Extractions',
'moon_mining_extraction_started' => 'MM Started Extractions',
'orbital_attacked' => 'Attacked Customs Office',
Expand Down

0 comments on commit 2cd3c9c

Please sign in to comment.