2013-11-26 14:45:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Auth\UserInterface;
|
|
|
|
|
use Illuminate\Auth\Reminders\RemindableInterface;
|
|
|
|
|
use Zizaco\Confide\ConfideUser;
|
|
|
|
|
|
2013-12-07 22:33:07 +02:00
|
|
|
class User extends ConfideUser implements UserInterface, RemindableInterface
|
2013-12-01 22:58:25 +02:00
|
|
|
{
|
2013-11-26 14:45:07 +02:00
|
|
|
protected $softDelete = true;
|
2013-12-01 22:58:25 +02:00
|
|
|
|
2013-11-26 14:45:07 +02:00
|
|
|
public static $rules = array(
|
2014-01-16 21:12:46 +00:00
|
|
|
/*
|
2014-01-15 14:01:24 +00:00
|
|
|
'username' => 'required|unique:users',
|
2014-01-14 11:52:56 +00:00
|
|
|
'password' => 'required|between:6,32|confirmed',
|
|
|
|
|
'password_confirmation' => 'between:6,32',
|
2014-01-16 21:12:46 +00:00
|
|
|
*/
|
2013-11-26 14:45:07 +02:00
|
|
|
);
|
|
|
|
|
|
2014-01-15 14:01:24 +00:00
|
|
|
protected $updateRules = array(
|
2014-01-16 21:12:46 +00:00
|
|
|
/*
|
2014-01-15 14:01:24 +00:00
|
|
|
'email' => 'required|unique:users',
|
|
|
|
|
'username' => 'required|unique:users',
|
2014-01-16 21:12:46 +00:00
|
|
|
*/
|
2014-01-15 14:01:24 +00:00
|
|
|
);
|
|
|
|
|
|
2013-11-26 14:45:07 +02:00
|
|
|
/**
|
|
|
|
|
* The database table used by the model.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $table = 'users';
|
|
|
|
|
|
|
|
|
|
public function account()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo('Account');
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-05 17:23:24 +02:00
|
|
|
public function theme()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo('Theme');
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-01 22:58:25 +02:00
|
|
|
public function getPersonType()
|
|
|
|
|
{
|
|
|
|
|
return PERSON_USER;
|
|
|
|
|
}
|
2013-11-26 14:45:07 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the unique identifier for the user.
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function getAuthIdentifier()
|
2014-07-27 23:31:41 +03:00
|
|
|
{
|
2013-11-26 14:45:07 +02:00
|
|
|
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-04-12 21:55:40 +03:00
|
|
|
public function isPro()
|
|
|
|
|
{
|
|
|
|
|
return $this->account->isPro();
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-08 23:22:56 +00:00
|
|
|
public function getDisplayName()
|
|
|
|
|
{
|
2014-01-12 18:55:33 +00:00
|
|
|
if ($this->getFullName())
|
|
|
|
|
{
|
|
|
|
|
return $this->getFullName();
|
|
|
|
|
}
|
|
|
|
|
else if ($this->email)
|
2014-01-08 23:22:56 +00:00
|
|
|
{
|
|
|
|
|
return $this->email;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-01-12 18:55:33 +00:00
|
|
|
return 'Guest';
|
2014-01-08 23:22:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-12 18:55:33 +00:00
|
|
|
|
2013-11-26 23:45:10 +02:00
|
|
|
public function getFullName()
|
|
|
|
|
{
|
2014-01-12 18:55:33 +00:00
|
|
|
if ($this->first_name || $this->last_name)
|
2013-11-26 23:45:10 +02:00
|
|
|
{
|
2014-01-12 18:55:33 +00:00
|
|
|
return $this->first_name . ' ' . $this->last_name;
|
2013-11-26 23:45:10 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-01-12 18:55:33 +00:00
|
|
|
return '';
|
2013-11-26 23:45:10 +02:00
|
|
|
}
|
2013-12-02 21:54:24 +02:00
|
|
|
}
|
2013-12-07 20:45:00 +02: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 20:09:47 +00:00
|
|
|
|
2014-04-22 23:10:14 +03:00
|
|
|
public function getRequestsCount()
|
2014-03-19 18:17:26 +02:00
|
|
|
{
|
2014-04-22 23:10:14 +03:00
|
|
|
return Session::get(SESSION_COUNTER, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getPopOverText()
|
|
|
|
|
{
|
2014-04-25 16:04:57 +03:00
|
|
|
if (!Auth::check() || Session::has('error'))
|
2014-04-22 23:10:14 +03:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$count = self::getRequestsCount();
|
2014-07-07 09:43:16 +03:00
|
|
|
|
2014-04-22 23:10:14 +03:00
|
|
|
if ($count == 1 || $count % 5 == 0)
|
|
|
|
|
{
|
|
|
|
|
if (!Utils::isRegistered())
|
|
|
|
|
{
|
|
|
|
|
return trans('texts.sign_up_to_save');
|
|
|
|
|
}
|
|
|
|
|
else if (!Auth::user()->account->name)
|
|
|
|
|
{
|
|
|
|
|
return trans('texts.set_name');
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-19 18:17:26 +02:00
|
|
|
|
2014-04-22 23:10:14 +03:00
|
|
|
return false;
|
2014-03-19 18:17:26 +02:00
|
|
|
}
|
|
|
|
|
|
2014-01-08 20:09:47 +00:00
|
|
|
public function afterSave($success=true, $forced = false)
|
|
|
|
|
{
|
|
|
|
|
if ($this->email)
|
|
|
|
|
{
|
|
|
|
|
return parent::afterSave($success=true, $forced = false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-04-13 16:34:58 +03:00
|
|
|
|
|
|
|
|
public function getMaxNumClients()
|
|
|
|
|
{
|
|
|
|
|
return $this->isPro() ? MAX_NUM_CLIENTS_PRO : MAX_NUM_CLIENTS;
|
|
|
|
|
}
|
2014-04-17 17:48:56 +03:00
|
|
|
|
|
|
|
|
public function getRememberToken()
|
|
|
|
|
{
|
|
|
|
|
return $this->remember_token;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setRememberToken($value)
|
|
|
|
|
{
|
|
|
|
|
$this->remember_token = $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getRememberTokenName()
|
|
|
|
|
{
|
|
|
|
|
return 'remember_token';
|
2014-07-27 23:31:41 +03:00
|
|
|
}
|
2013-11-26 14:45:07 +02:00
|
|
|
}
|