Heimdall/app/User.php

72 lines
1.5 KiB
PHP
Raw Normal View History

2018-01-26 14:35:01 +00:00
<?php
namespace App;
2022-11-14 12:21:47 +00:00
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;
2018-01-26 14:35:01 +00:00
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
2018-01-26 14:35:01 +00:00
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
2018-10-16 13:14:14 +00:00
'username', 'email', 'password',
2018-01-26 14:35:01 +00:00
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
2018-10-12 13:57:46 +00:00
2022-11-14 12:21:47 +00:00
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
2018-10-12 13:57:46 +00:00
/**
* Get the items for the user.
*/
2022-11-14 12:21:47 +00:00
public function items(): HasMany
2018-10-12 13:57:46 +00:00
{
2022-11-14 12:21:47 +00:00
return $this->hasMany(Item::class);
2018-10-12 13:57:46 +00:00
}
/**
* The settings that belong to the user.
*/
2022-11-14 12:21:47 +00:00
public function settings(): BelongsToMany
{
2022-11-14 12:21:47 +00:00
return $this->belongsToMany(Setting::class)->withPivot('uservalue');
}
2018-10-14 16:27:28 +00:00
public static function currentUser()
{
$current_user = session('current_user');
if ($current_user) { // if logged in, set this user
return $current_user;
} else { // not logged in, get first user
$user = self::where('public_front', true)->first();
if (! $user) {
$user = self::first();
}
2018-10-14 16:27:28 +00:00
session(['current_user' => $user]);
2018-10-14 16:27:28 +00:00
return $user;
}
}
2018-01-26 14:35:01 +00:00
}