Skip to content

Commit

Permalink
Merge pull request #15809 from marcusmoore/fixes/teams
Browse files Browse the repository at this point in the history
Fixed Microsoft Teams notifications
  • Loading branch information
snipe authored Nov 13, 2024
2 parents 73383c6 + e80a456 commit 5084843
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions app/Listeners/CheckoutableListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
use Illuminate\Support\Facades\Notification;
use Exception;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Str;
use Osama\LaravelTeamsNotification\TeamsNotification;

class CheckoutableListener
Expand Down Expand Up @@ -94,7 +95,7 @@ public function onCheckedOut($event)
// Send Webhook notification
try{
if ($this->shouldSendWebhookNotification()) {
if (Setting::getSettings()->webhook_selected === 'microsoft') {
if ($this->newMicrosoftTeamsWebhookEnabled()) {
$message = $this->getCheckoutNotification($event)->toMicrosoftTeams();
$notification = new TeamsNotification(Setting::getSettings()->webhook_endpoint);
$notification->success()->sendMessage($message[0], $message[1]); // Send the message to Microsoft Teams
Expand Down Expand Up @@ -176,7 +177,7 @@ public function onCheckedIn($event)
// Send Webhook notification
try {
if ($this->shouldSendWebhookNotification()) {
if (Setting::getSettings()->webhook_selected === 'microsoft') {
if ($this->newMicrosoftTeamsWebhookEnabled()) {
$message = $this->getCheckinNotification($event)->toMicrosoftTeams();
$notification = new TeamsNotification(Setting::getSettings()->webhook_endpoint);
$notification->success()->sendMessage($message[0], $message[1]); // Send the message to Microsoft Teams
Expand Down Expand Up @@ -345,4 +346,9 @@ private function checkoutableShouldSendEmail($event): bool
}
return (method_exists($event->checkoutable, 'checkin_email') && $event->checkoutable->checkin_email());
}

private function newMicrosoftTeamsWebhookEnabled(): bool
{
return Setting::getSettings()->webhook_selected === 'microsoft' && Str::contains(Setting::getSettings()->webhook_endpoint, 'workflows');
}
}
7 changes: 3 additions & 4 deletions app/Livewire/SlackSettingsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,9 @@ public function updatedWebhookSelected() {
$this->webhook_channel = '#NA';
}
}
public function updatedwebhookEndpoint() {
$this->teams_webhook_deprecated = !Str::contains($this->webhook_endpoint, 'workflows');
}
public function updatedwebhookEndpoint() {

public function updatedwebhookEndpoint()
{
$this->teams_webhook_deprecated = !Str::contains($this->webhook_endpoint, 'workflows');
}

Expand Down
3 changes: 2 additions & 1 deletion app/Notifications/CheckoutAssetNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ public function toSlack() :SlackMessage
->content($note);
});
}
public function toMicrosoftTeams() : array

public function toMicrosoftTeams()
{
$target = $this->target;
$admin = $this->admin;
Expand Down

0 comments on commit 5084843

Please sign in to comment.