112 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			3.3 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 InvalidArgumentException;
 | 
						|
use Toby\Eloquent\Models\VacationRequest;
 | 
						|
use Toby\Infrastructure\Slack\Elements\SlackMessage;
 | 
						|
 | 
						|
class VacationRequestCreatedNotification extends Notification
 | 
						|
{
 | 
						|
    use Queueable;
 | 
						|
 | 
						|
    public function __construct(
 | 
						|
        protected VacationRequest $vacationRequest,
 | 
						|
    ) {}
 | 
						|
 | 
						|
    public function via(): array
 | 
						|
    {
 | 
						|
        return [Channels::MAIL, Channels::SLACK];
 | 
						|
    }
 | 
						|
 | 
						|
    public function toSlack(): SlackMessage
 | 
						|
    {
 | 
						|
        $url = route("vacation.requests.show", ["vacationRequest" => $this->vacationRequest->id]);
 | 
						|
 | 
						|
        return (new SlackMessage())
 | 
						|
            ->text("{$this->buildDescription()}\n <${url}|Zobacz szczegóły>");
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @throws InvalidArgumentException
 | 
						|
     */
 | 
						|
    public function toMail(): MailMessage
 | 
						|
    {
 | 
						|
        $url = route(
 | 
						|
            "vacation.requests.show",
 | 
						|
            [
 | 
						|
                "vacationRequest" => $this->vacationRequest,
 | 
						|
            ],
 | 
						|
        );
 | 
						|
        return $this->buildMailMessage($url);
 | 
						|
    }
 | 
						|
 | 
						|
    protected function buildMailMessage(string $url): MailMessage
 | 
						|
    {
 | 
						|
        $user = $this->vacationRequest->user->profile->first_name;
 | 
						|
        $type = $this->vacationRequest->type->label();
 | 
						|
        $from = $this->vacationRequest->from->toDisplayString();
 | 
						|
        $to = $this->vacationRequest->to->toDisplayString();
 | 
						|
        $days = $this->vacationRequest->vacations()->count();
 | 
						|
 | 
						|
        return (new MailMessage())
 | 
						|
            ->greeting(
 | 
						|
                __("Hi :user!", [
 | 
						|
                    "user" => $user,
 | 
						|
                ]),
 | 
						|
            )
 | 
						|
            ->subject($this->buildSubject())
 | 
						|
            ->line($this->buildDescription())
 | 
						|
            ->line(
 | 
						|
                __("Vacation type: :type", [
 | 
						|
                    "type" => $type,
 | 
						|
                ]),
 | 
						|
            )
 | 
						|
            ->line(
 | 
						|
                __("From :from to :to (number of days: :days)", [
 | 
						|
                    "from" => $from,
 | 
						|
                    "to" => $to,
 | 
						|
                    "days" => $days,
 | 
						|
                ]),
 | 
						|
            )
 | 
						|
            ->action(__("Click here for details"), $url);
 | 
						|
    }
 | 
						|
 | 
						|
    protected function buildSubject(): string
 | 
						|
    {
 | 
						|
        $name = $this->vacationRequest->name;
 | 
						|
 | 
						|
        if ($this->vacationRequest->creator()->is($this->vacationRequest->user)) {
 | 
						|
            return __("Vacation request :title has been created", [
 | 
						|
                "title" => $name,
 | 
						|
            ]);
 | 
						|
        }
 | 
						|
 | 
						|
        return __("Vacation request :title has been created on your behalf", [
 | 
						|
            "title" => $name,
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    protected function buildDescription(): string
 | 
						|
    {
 | 
						|
        $name = $this->vacationRequest->name;
 | 
						|
 | 
						|
        if ($this->vacationRequest->creator()->is($this->vacationRequest->user)) {
 | 
						|
            return __("The vacation request :title from user :user has been created successfully.", [
 | 
						|
                "user" => $this->vacationRequest->user->profile->full_name,
 | 
						|
                "title" => $name,
 | 
						|
            ]);
 | 
						|
        }
 | 
						|
 | 
						|
        return __("The vacation request :title has been created successfully by user :creator on your behalf.", [
 | 
						|
            "title" => $this->vacationRequest->name,
 | 
						|
            "creator" => $this->vacationRequest->creator->profile->full_name,
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |