* #126 - vacation request reminders * #126 - fix workdays * #126 - changes * #126 - cs fix * #5 - bump codestyle * #126 - fix * #126 - fix * #126 - fix * #126 - fix * #126 - tests * #126 - fix * #126 - fix * #126 - fix seeders * #126 - fix * #126 - tests Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Toby\Domain\Notifications;
 | |
| 
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Notifications\Messages\MailMessage;
 | |
| use Illuminate\Notifications\Notification;
 | |
| use Illuminate\Support\Carbon;
 | |
| use Illuminate\Support\Collection;
 | |
| use Toby\Infrastructure\Slack\Elements\SlackMessage;
 | |
| use Toby\Infrastructure\Slack\Elements\VacationRequestsAttachment;
 | |
| 
 | |
| class VacationRequestsSummaryNotification extends Notification
 | |
| {
 | |
|     use Queueable;
 | |
| 
 | |
|     public function __construct(
 | |
|         protected Carbon $day,
 | |
|         protected Collection $vacationRequests,
 | |
|     ) {}
 | |
| 
 | |
|     public function via(): array
 | |
|     {
 | |
|         return [Channels::MAIL, Channels::SLACK];
 | |
|     }
 | |
| 
 | |
|     public function toSlack(): SlackMessage
 | |
|     {
 | |
|         return (new SlackMessage())
 | |
|             ->text("Wnioski oczekujące na Twoją akcję - stan na dzień {$this->day->toDisplayString()}:")
 | |
|             ->withAttachment(new VacationRequestsAttachment($this->vacationRequests));
 | |
|     }
 | |
| 
 | |
|     public function toMail(Notifiable $notifiable): MailMessage
 | |
|     {
 | |
|         $url = route(
 | |
|             "vacation.requests.indexForApprovers",
 | |
|             [
 | |
|                 "status" => "waiting_for_action",
 | |
|             ],
 | |
|         );
 | |
| 
 | |
|         return $this->buildMailMessage($notifiable, $url);
 | |
|     }
 | |
| 
 | |
|     protected function buildMailMessage(Notifiable $notifiable, string $url): MailMessage
 | |
|     {
 | |
|         $user = $notifiable->profile->first_name;
 | |
| 
 | |
|         $message = (new MailMessage())
 | |
|             ->greeting(
 | |
|                 __("Hi :user!", [
 | |
|                     "user" => $user,
 | |
|                 ]),
 | |
|             )
 | |
|             ->line("Lista wniosków oczekujących na Twoją akcję - stan na dzień {$this->day->toDisplayString()}:")
 | |
|             ->subject("Wnioski oczekujące na akcje - stan na dzień {$this->day->toDisplayString()}");
 | |
| 
 | |
|         foreach ($this->vacationRequests as $request) {
 | |
|             $message->line(
 | |
|                 "Wniosek nr {$request->name} użytkownika {$request->user->profile->full_name} ({$request->from->toDisplayString()} - {$request->to->toDisplayString()})",
 | |
|             );
 | |
|         }
 | |
| 
 | |
|         return $message
 | |
|             ->action("Przejdź do wniosków", $url);
 | |
|     }
 | |
| }
 |