* #132 - added translations * wip * #132 - added translations * #132 - cs fix * #132 - cs fix Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl>
		
			
				
	
	
		
			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 = "Work remotely today";
 | 
						|
 | 
						|
    public function handle(Request $request): Response
 | 
						|
    {
 | 
						|
        $user = $this->findUserBySlackId($request->userId);
 | 
						|
 | 
						|
        $this->createRemoteDay($user, Carbon::today());
 | 
						|
 | 
						|
        return $this->respondToSlack(__(":white_check_mark: You work remotely today"));
 | 
						|
    }
 | 
						|
 | 
						|
    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);
 | 
						|
    }
 | 
						|
}
 |