2013-11-26 13:45:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Auth\UserInterface;
|
|
|
|
use Illuminate\Auth\Reminders\RemindableInterface;
|
|
|
|
use Zizaco\Confide\ConfideUser;
|
|
|
|
|
2013-12-07 21:33:07 +01:00
|
|
|
class User extends ConfideUser implements UserInterface, RemindableInterface
|
2013-12-01 21:58:25 +01:00
|
|
|
{
|
2013-11-26 13:45:07 +01:00
|
|
|
protected $softDelete = true;
|
2013-12-01 21:58:25 +01:00
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
public static $rules = array(
|
|
|
|
/*
|
|
|
|
'username' => 'required|email|unique:users',
|
|
|
|
'email' => 'required|email|unique:users',
|
|
|
|
*/
|
2014-01-13 20:22:43 +01:00
|
|
|
'password' => 'required|between:6,20|confirmed',
|
|
|
|
'password_confirmation' => 'between:6,20',
|
2013-11-26 13:45:07 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The database table used by the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'users';
|
|
|
|
|
|
|
|
public function account()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Account');
|
|
|
|
}
|
|
|
|
|
2013-12-05 16:23:24 +01:00
|
|
|
public function theme()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('Theme');
|
|
|
|
}
|
|
|
|
|
2013-12-01 21:58:25 +01:00
|
|
|
public function getPersonType()
|
|
|
|
{
|
|
|
|
return PERSON_USER;
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unique identifier for the user.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getAuthIdentifier()
|
|
|
|
{
|
|
|
|
return $this->getKey();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the password for the user.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getAuthPassword()
|
|
|
|
{
|
|
|
|
return $this->password;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the e-mail address where password reminders are sent.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getReminderEmail()
|
|
|
|
{
|
|
|
|
return $this->email;
|
|
|
|
}
|
|
|
|
|
2014-01-09 00:22:56 +01:00
|
|
|
public function getDisplayName()
|
|
|
|
{
|
2014-01-12 19:55:33 +01:00
|
|
|
if ($this->getFullName())
|
|
|
|
{
|
|
|
|
return $this->getFullName();
|
|
|
|
}
|
|
|
|
else if ($this->email)
|
2014-01-09 00:22:56 +01:00
|
|
|
{
|
|
|
|
return $this->email;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-12 19:55:33 +01:00
|
|
|
return 'Guest';
|
2014-01-09 00:22:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-12 19:55:33 +01:00
|
|
|
|
2013-11-26 22:45:10 +01:00
|
|
|
public function getFullName()
|
|
|
|
{
|
2014-01-12 19:55:33 +01:00
|
|
|
if ($this->first_name || $this->last_name)
|
2013-11-26 22:45:10 +01:00
|
|
|
{
|
2014-01-12 19:55:33 +01:00
|
|
|
return $this->first_name . ' ' . $this->last_name;
|
2013-11-26 22:45:10 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-12 19:55:33 +01:00
|
|
|
return '';
|
2013-11-26 22:45:10 +01:00
|
|
|
}
|
2013-12-02 20:54:24 +01:00
|
|
|
}
|
2013-12-07 19:45:00 +01:00
|
|
|
|
|
|
|
public function showGreyBackground()
|
|
|
|
{
|
|
|
|
return !$this->theme_id || in_array($this->theme_id, [2, 3, 5, 6, 7, 8, 10, 11, 12]);
|
|
|
|
}
|
2014-01-08 21:09:47 +01:00
|
|
|
|
|
|
|
public function afterSave($success=true, $forced = false)
|
|
|
|
{
|
|
|
|
if ($this->email)
|
|
|
|
{
|
|
|
|
return parent::afterSave($success=true, $forced = false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|