46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Toby\Infrastructure\Slack\Handlers;
 | |
| 
 | |
| use Illuminate\Support\Carbon;
 | |
| use Spatie\SlashCommand\Request;
 | |
| use Spatie\SlashCommand\Response;
 | |
| use Toby\Domain\Actions\VacationRequest\CreateAction;
 | |
| use Toby\Domain\Enums\VacationType;
 | |
| use Toby\Eloquent\Models\User;
 | |
| use Toby\Eloquent\Models\YearPeriod;
 | |
| use Toby\Infrastructure\Slack\Traits\FindsUserBySlackId;
 | |
| 
 | |
| class HomeOffice extends SignatureHandler
 | |
| {
 | |
|     use FindsUserBySlackId;
 | |
| 
 | |
|     protected $signature = "toby zdalnie";
 | |
|     protected $description = "Pracuj dzisiaj zdalnie";
 | |
| 
 | |
|     public function handle(Request $request): Response
 | |
|     {
 | |
|         $user = $this->findUserBySlackId($request->userId);
 | |
| 
 | |
|         $this->createRemoteday($user, Carbon::today());
 | |
| 
 | |
|         return $this->respondToSlack(":white_check_mark: Pracujesz dzisiaj zdalnie");
 | |
|     }
 | |
| 
 | |
|     protected function createRemoteday(User $user, Carbon $date): void
 | |
|     {
 | |
|         $yearPeriod = YearPeriod::findByYear($date->year);
 | |
| 
 | |
|         app(CreateAction::class)->execute([
 | |
|             "user_id" => $user->id,
 | |
|             "type" => VacationType::HomeOffice,
 | |
|             "from" => $date,
 | |
|             "to" => $date,
 | |
|             "year_period_id" => $yearPeriod->id,
 | |
|             "flow_skipped" => false,
 | |
|         ], $user);
 | |
|     }
 | |
| }
 |