phpvms/app/Models/User.php

223 lines
5.0 KiB
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Models;
2017-06-09 02:28:26 +08:00
use App\Models\Enums\JournalType;
2018-02-11 03:25:40 +08:00
use App\Models\Enums\PirepState;
use App\Models\Traits\JournalTrait;
2017-06-09 02:28:26 +08:00
use Illuminate\Foundation\Auth\User as Authenticatable;
2018-02-21 12:33:09 +08:00
use Illuminate\Notifications\Notifiable;
2017-12-16 02:36:13 +08:00
use Laratrust\Traits\LaratrustUserTrait;
2017-06-09 02:28:26 +08:00
/**
* @property int id
* @property int pilot_id
* @property string name
* @property string email
* @property string password
* @property string api_key
* @property mixed timezone
* @property string ident
2018-04-02 19:47:31 +08:00
* @property string curr_airport_id
* @property string home_airport_id
* @property Airline airline
* @property Flight[] flights
* @property string flight_time
* @property string remember_token
* @property \Carbon\Carbon created_at
* @property \Carbon\Carbon updated_at
* @property Rank rank
* @property Journal journal
2018-08-20 22:48:39 +08:00
* @property int rank_id
* @property int state
2018-05-25 11:17:41 +08:00
* @property bool opt_in
* @mixin \Illuminate\Notifications\Notifiable
2017-12-16 02:36:13 +08:00
* @mixin \Laratrust\Traits\LaratrustUserTrait
2017-06-09 02:28:26 +08:00
*/
class User extends Authenticatable
{
use JournalTrait;
2017-12-16 02:36:13 +08:00
use LaratrustUserTrait;
use Notifiable;
2017-06-09 02:28:26 +08:00
public $table = 'users';
/**
* The journal type for when it's being created
*/
public $journal_type = JournalType::USER;
protected $fillable = [
'id',
'name',
'email',
'password',
'pilot_id',
'airline_id',
'rank_id',
2017-12-31 02:15:26 +08:00
'api_key',
2018-01-10 09:08:16 +08:00
'country',
'home_airport_id',
'curr_airport_id',
'last_pirep_id',
'flights',
'flight_time',
2018-09-05 08:09:33 +08:00
'transfer_time',
2018-04-02 19:47:31 +08:00
'avatar',
'timezone',
'state',
'status',
'toc_accepted',
2018-05-25 11:17:41 +08:00
'opt_in',
'created_at',
'updated_at',
];
2017-06-09 02:28:26 +08:00
/**
* The attributes that should be hidden for arrays.
*/
protected $hidden = [
'api_key',
'password',
'remember_token',
];
protected $casts = [
'id' => 'integer',
'pilot_id' => 'integer',
2018-09-05 09:27:16 +08:00
'flights' => 'integer',
'flight_time' => 'integer',
'transfer_time' => 'integer',
'balance' => 'double',
'state' => 'integer',
'status' => 'integer',
'toc_accepted' => 'boolean',
2018-09-05 09:27:16 +08:00
'opt_in' => 'boolean',
];
2017-06-29 08:56:10 +08:00
public static $rules = [
'name' => 'required',
2018-01-03 13:15:48 +08:00
'email' => 'required|email',
];
2018-01-01 03:08:41 +08:00
/**
* @return string
*/
public function getIdentAttribute()
2017-07-03 10:25:48 +08:00
{
$length = setting('pilots.id_length');
2019-07-17 02:06:13 +08:00
return $this->airline->icao.str_pad($this->pilot_id, $length, '0', STR_PAD_LEFT);
2018-01-01 03:08:41 +08:00
}
2018-02-07 00:33:39 +08:00
/**
2018-02-07 01:02:40 +08:00
* Shorthand for getting the timezone
2018-08-27 00:40:04 +08:00
*
2018-02-07 01:02:40 +08:00
* @return string
2018-02-07 00:33:39 +08:00
*/
2018-02-07 01:02:40 +08:00
public function getTzAttribute(): string
2018-02-07 00:33:39 +08:00
{
return $this->timezone;
}
2018-02-07 01:02:40 +08:00
/**
* Shorthand for setting the timezone
2018-08-27 00:40:04 +08:00
*
2018-02-07 01:02:40 +08:00
* @param $value
*/
public function setTzAttribute($value)
{
$this->attributes['timezone'] = $value;
}
2018-05-25 11:17:41 +08:00
/**
2018-08-27 00:40:04 +08:00
* Return a File model
*/
public function getAvatarAttribute()
{
if (!$this->attributes['avatar']) {
2018-08-27 00:40:04 +08:00
return;
}
return new File([
2018-08-27 00:40:04 +08:00
'path' => $this->attributes['avatar'],
]);
}
2018-02-07 01:02:40 +08:00
2018-01-01 03:08:41 +08:00
/**
* @param mixed $size Size of the gravatar, in pixels
2018-08-27 00:40:04 +08:00
*
2018-01-01 03:08:41 +08:00
* @return string
*/
public function gravatar($size = null)
{
2018-01-08 23:22:12 +08:00
$default = config('gravatar.default');
$uri = config('gravatar.url')
.md5(strtolower(trim($this->email))).'?d='.urlencode($default);
if ($size !== null) {
$uri .= '&s='.$size;
}
return $uri;
}
2017-06-29 08:56:10 +08:00
/**
* Foreign Keys
*/
public function airline()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airline::class, 'airline_id');
2017-06-29 08:56:10 +08:00
}
public function awards()
{
return $this->hasMany(UserAward::class, 'user_id');
}
2017-06-29 08:56:10 +08:00
public function home_airport()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airport::class, 'home_airport_id');
2017-06-29 08:56:10 +08:00
}
public function current_airport()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airport::class, 'curr_airport_id');
2017-06-29 08:56:10 +08:00
}
public function last_pirep()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Pirep::class, 'last_pirep_id');
}
/**
* These are the flights they've bid on
*/
public function flights()
{
return $this->belongsToMany(Flight::class, 'bids');
}
/**
* The bid rows
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function bids()
2017-08-04 10:02:02 +08:00
{
2018-02-28 03:25:32 +08:00
return $this->hasMany(Bid::class, 'user_id');
2017-08-04 10:02:02 +08:00
}
2017-06-30 04:50:16 +08:00
public function pireps()
{
2018-02-11 03:25:40 +08:00
return $this->hasMany(Pirep::class, 'user_id')
->where('state', '!=', PirepState::CANCELLED);
2017-06-30 04:50:16 +08:00
}
2017-06-29 08:56:10 +08:00
public function rank()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Rank::class, 'rank_id');
2017-06-29 08:56:10 +08:00
}
2017-06-09 02:28:26 +08:00
}