rbrecruiter/app/User.php

107 lines
2.6 KiB
PHP
Raw Normal View History

2020-04-26 04:09:32 +00:00
<?php
2020-10-21 00:01:41 +00:00
/*
* Copyright © 2020 Miguel Nogueira
*
* This file is part of Raspberry Staff Manager.
*
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Raspberry Staff Manager is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
*/
2020-04-26 04:09:32 +00:00
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Spatie\Permission\Traits\HasRoles;
2020-04-26 04:09:32 +00:00
2020-09-03 19:06:29 +00:00
class User extends Authenticatable implements MustVerifyEmail
2020-04-26 04:09:32 +00:00
{
use Notifiable;
use HasRoles;
2020-04-26 04:09:32 +00:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
2020-10-21 00:01:41 +00:00
'name', 'email', 'password', 'originalIP', 'username', 'uuid', 'dob',
2020-04-26 04:09:32 +00:00
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
2020-05-11 15:44:47 +00:00
//
2020-05-11 15:44:47 +00:00
public function applications()
{
return $this->hasMany('App\Application', 'applicantUserID', 'id');
}
public function votes()
{
return $this->hasMany('App\Vote', 'userID', 'id');
}
public function profile()
{
return $this->hasOne('App\Profile', 'userID', 'id');
}
public function bans()
{
return $this->hasOne('App\Ban', 'userID', 'id');
}
public function comments()
{
return $this->hasMany('App\Comment', 'authorID', 'id');
}
public function isBanned()
{
2020-10-21 00:01:41 +00:00
return ! $this->bans()->get()->isEmpty();
}
public function isStaffMember()
{
return $this->hasAnyRole('reviewer', 'admin', 'hiringManager');
}
2020-07-17 21:44:10 +00:00
public function has2FA()
{
2020-10-21 00:01:41 +00:00
return ! is_null($this->twofa_secret);
2020-07-17 21:44:10 +00:00
}
public function routeNotificationForSlack($notification)
{
2020-10-21 00:01:41 +00:00
return config('slack.webhook.integrationURL');
}
2020-04-26 04:09:32 +00:00
}