* - changed limits for displayed items * - transferred to models * - updated tests
		
			
				
	
	
		
			137 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			137 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Toby\Eloquent\Models;
 | |
| 
 | |
| use Database\Factories\UserFactory;
 | |
| use Illuminate\Database\Eloquent\Builder;
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Relations\HasMany;
 | |
| use Illuminate\Database\Eloquent\Relations\HasOne;
 | |
| use Illuminate\Database\Eloquent\SoftDeletes;
 | |
| use Illuminate\Foundation\Auth\User as Authenticatable;
 | |
| use Illuminate\Notifications\Notifiable;
 | |
| use Illuminate\Support\Collection;
 | |
| use Toby\Domain\Enums\EmploymentForm;
 | |
| use Toby\Domain\Enums\Role;
 | |
| use Toby\Domain\Notifications\Notifiable as NotifiableInterface;
 | |
| 
 | |
| /**
 | |
|  * @property int $id
 | |
|  * @property string $email
 | |
|  * @property string $password
 | |
|  * @property Role $role
 | |
|  * @property Profile $profile
 | |
|  * @property Collection $vacationLimits
 | |
|  * @property Collection $vacationRequests
 | |
|  * @property Collection $vacations
 | |
|  */
 | |
| class User extends Authenticatable implements NotifiableInterface
 | |
| {
 | |
|     use HasFactory;
 | |
|     use Notifiable;
 | |
|     use SoftDeletes;
 | |
| 
 | |
|     protected $guarded = [];
 | |
|     protected $casts = [
 | |
|         "role" => Role::class,
 | |
|         "last_active_at" => "datetime",
 | |
|         "employment_form" => EmploymentForm::class,
 | |
|         "employment_date" => "date",
 | |
|     ];
 | |
|     protected $hidden = [
 | |
|         "remember_token",
 | |
|     ];
 | |
|     protected $with = [
 | |
|         "profile",
 | |
|     ];
 | |
|     protected $perPage = 50;
 | |
| 
 | |
|     public function profile(): HasOne
 | |
|     {
 | |
|         return $this->hasOne(Profile::class);
 | |
|     }
 | |
| 
 | |
|     public function vacationLimits(): HasMany
 | |
|     {
 | |
|         return $this->hasMany(VacationLimit::class);
 | |
|     }
 | |
| 
 | |
|     public function vacationRequests(): HasMany
 | |
|     {
 | |
|         return $this->hasMany(VacationRequest::class);
 | |
|     }
 | |
| 
 | |
|     public function createdVacationRequests(): HasMany
 | |
|     {
 | |
|         return $this->hasMany(VacationRequest::class, "creator_id");
 | |
|     }
 | |
| 
 | |
|     public function vacations(): HasMany
 | |
|     {
 | |
|         return $this->hasMany(Vacation::class);
 | |
|     }
 | |
| 
 | |
|     public function keys(): HasMany
 | |
|     {
 | |
|         return $this->hasMany(Key::class);
 | |
|     }
 | |
| 
 | |
|     public function hasRole(Role $role): bool
 | |
|     {
 | |
|         return $this->role === $role;
 | |
|     }
 | |
| 
 | |
|     public function hasVacationLimit(YearPeriod $yearPeriod): bool
 | |
|     {
 | |
|         return $this->vacationLimits()
 | |
|             ->whereBelongsTo($yearPeriod)
 | |
|             ->whereNotNull("days")
 | |
|             ->exists();
 | |
|     }
 | |
| 
 | |
|     public function scopeSearch(Builder $query, ?string $text): Builder
 | |
|     {
 | |
|         if ($text === null) {
 | |
|             return $query;
 | |
|         }
 | |
| 
 | |
|         return $query
 | |
|             ->where("email", "ILIKE", "%{$text}%")
 | |
|             ->orWhereRelation(
 | |
|                 "profile",
 | |
|                 fn(Builder $query): Builder => $query
 | |
|                     ->where("first_name", "ILIKE", "%{$text}%")
 | |
|                     ->orWhere("last_name", "ILIKE", "%{$text}%"),
 | |
|             );
 | |
|     }
 | |
| 
 | |
|     public function scopeOrderByProfileField(Builder $query, string $field): Builder
 | |
|     {
 | |
|         $profileQuery = Profile::query()->select($field)->whereColumn("users.id", "profiles.user_id");
 | |
| 
 | |
|         return $query->orderBy($profileQuery);
 | |
|     }
 | |
| 
 | |
|     public function scopeWithVacationLimitIn(Builder $query, YearPeriod $yearPeriod): Builder
 | |
|     {
 | |
|         return $query->whereRelation(
 | |
|             "vacationlimits",
 | |
|             fn(Builder $query): Builder => $query
 | |
|                 ->whereBelongsTo($yearPeriod)
 | |
|                 ->whereNotNull("days"),
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function routeNotificationForSlack()
 | |
|     {
 | |
|         return $this->profile->slack_id;
 | |
|     }
 | |
| 
 | |
|     protected static function newFactory(): UserFactory
 | |
|     {
 | |
|         return UserFactory::new();
 | |
|     }
 | |
| }
 |