2020-04-26 04:09:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2020-10-08 18:19:10 +00:00
|
|
|
use App\Traits\HandlesAccountTokens;
|
2020-04-26 04:09:32 +00:00
|
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
2020-10-08 18:19:10 +00:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-04-26 04:09:32 +00:00
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
2020-10-08 18:19:10 +00:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2020-09-10 18:05:26 +00:00
|
|
|
use Mpociot\Teamwork\Traits\UserHasTeams;
|
2020-06-26 23:32:33 +00:00
|
|
|
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
|
|
|
{
|
2020-10-08 18:19:10 +00:00
|
|
|
use UserHasTeams, Notifiable, HasRoles, SoftDeletes, HandlesAccountTokens;
|
2020-04-26 04:09:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
2020-04-29 21:18:34 +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-06-26 23:32:33 +00:00
|
|
|
|
|
|
|
//
|
2020-05-11 15:44:47 +00:00
|
|
|
public function applications()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Application', 'applicantUserID', 'id');
|
|
|
|
}
|
2020-05-13 21:47:51 +00:00
|
|
|
|
2020-05-29 23:20:39 +00:00
|
|
|
public function votes()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Vote', 'userID', 'id');
|
|
|
|
}
|
|
|
|
|
2020-05-13 21:47:51 +00:00
|
|
|
public function profile()
|
|
|
|
{
|
|
|
|
return $this->hasOne('App\Profile', 'userID', 'id');
|
|
|
|
}
|
2020-05-29 23:20:39 +00:00
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
public function bans()
|
|
|
|
{
|
|
|
|
return $this->hasOne('App\Ban', 'userID', 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function comments()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Comment', 'authorID', 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function isBanned()
|
|
|
|
{
|
|
|
|
return !$this->bans()->get()->isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-17 21:44:10 +00:00
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
public function isStaffMember()
|
|
|
|
{
|
|
|
|
return $this->hasAnyRole('reviewer', 'admin', 'hiringManager');
|
|
|
|
}
|
|
|
|
|
2020-07-17 21:44:10 +00:00
|
|
|
public function has2FA()
|
|
|
|
{
|
|
|
|
return !is_null($this->twofa_secret);
|
|
|
|
}
|
|
|
|
|
2020-10-08 18:19:10 +00:00
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
public function routeNotificationForSlack($notification)
|
|
|
|
{
|
|
|
|
return config('slack.webhook.integrationURL');
|
|
|
|
}
|
2020-04-26 04:09:32 +00:00
|
|
|
}
|