mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:37:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			192 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			192 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Models;
 | |
| 
 | |
| use Eloquent;
 | |
| // use Illuminate\Auth\UserInterface;
 | |
| // use Illuminate\Auth\Reminders\RemindableInterface;
 | |
| use Zizaco\Confide\ConfideUser;
 | |
| 
 | |
| // use Illuminate\Auth\Authenticatable;
 | |
| // use Illuminate\Auth\Passwords\CanResetPassword;
 | |
| // use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
 | |
| // use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
 | |
| 
 | |
| 
 | |
| // use Zizaco\Confide\ConfideUser;
 | |
| use Zizaco\Confide\ConfideUserInterface;
 | |
| 
 | |
| class User extends Eloquent implements ConfideUserInterface {
 | |
| 
 | |
| // class User extends ConfideUser implements UserInterface, RemindableInterface {
 | |
| 
 | |
|     // use Authenticatable, CanResetPassword;
 | |
|     use ConfideUser;
 | |
| 
 | |
|     protected $softDelete = true;
 | |
| 
 | |
|     /**
 | |
|      * The database table used by the model.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $table = 'users';
 | |
| 
 | |
| 
 | |
|     /**
 | |
|      * The attributes that are mass assignable.
 | |
|      *
 | |
|      * @var array
 | |
|      */
 | |
|     protected $fillable = ['email', 'password','agency_id'];
 | |
| 
 | |
|     /**
 | |
|      * The attributes excluded from the model's JSON form.
 | |
|      *
 | |
|      * @var array
 | |
|      */
 | |
|     protected $hidden = ['password', 'remember_token'];
 | |
| 
 | |
| 
 | |
|     public function account()
 | |
|     {
 | |
|         return $this->belongsTo('Account');
 | |
|     }
 | |
| 
 | |
|     public function theme()
 | |
|     {
 | |
|         return $this->belongsTo('Theme');
 | |
|     }
 | |
| 
 | |
|     public function getPersonType()
 | |
|     {
 | |
|         return PERSON_USER;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * 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;
 | |
|     }
 | |
| 
 | |
|     public function isPro()
 | |
|     {
 | |
|         return $this->account->isPro();
 | |
|     }
 | |
| 
 | |
|     public function isDemo()
 | |
|     {
 | |
|         return $this->account->id == Utils::getDemoAccountId();
 | |
|     }
 | |
| 
 | |
|     public function maxInvoiceDesignId()
 | |
|     {
 | |
|         return $this->isPro() ? 10 : COUNT_FREE_DESIGNS;
 | |
|     }
 | |
| 
 | |
|     public function getDisplayName()
 | |
|     {
 | |
|         if ($this->getFullName()) {
 | |
|             return $this->getFullName();
 | |
|         } elseif ($this->email) {
 | |
|             return $this->email;
 | |
|         } else {
 | |
|             return 'Guest';
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function getFullName()
 | |
|     {
 | |
|         if ($this->first_name || $this->last_name) {
 | |
|             return $this->first_name.' '.$this->last_name;
 | |
|         } else {
 | |
|             return '';
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function showGreyBackground()
 | |
|     {
 | |
|         return !$this->theme_id || in_array($this->theme_id, [2, 3, 5, 6, 7, 8, 10, 11, 12]);
 | |
|     }
 | |
| 
 | |
|     public function getRequestsCount()
 | |
|     {
 | |
|         return Session::get(SESSION_COUNTER, 0);
 | |
|     }
 | |
| 
 | |
|     public function getPopOverText()
 | |
|     {
 | |
|         if (!Utils::isNinja() || !Auth::check() || Session::has('error')) {
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         $count = self::getRequestsCount();
 | |
| 
 | |
|         if ($count == 1 || $count % 5 == 0) {
 | |
|             if (!Utils::isRegistered()) {
 | |
|                 return trans('texts.sign_up_to_save');
 | |
|             } elseif (!Auth::user()->account->name) {
 | |
|                 return trans('texts.set_name');
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     public function afterSave($success = true, $forced = false)
 | |
|     {
 | |
|         if ($this->email) {
 | |
|             return parent::afterSave($success = true, $forced = false);
 | |
|         } else {
 | |
|             return true;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function getMaxNumClients()
 | |
|     {
 | |
|         return $this->isPro() ? MAX_NUM_CLIENTS_PRO : MAX_NUM_CLIENTS;
 | |
|     }
 | |
| 
 | |
|     public function getRememberToken()
 | |
|     {
 | |
|         return $this->remember_token;
 | |
|     }
 | |
| 
 | |
|     public function setRememberToken($value)
 | |
|     {
 | |
|         $this->remember_token = $value;
 | |
|     }
 | |
| 
 | |
|     public function getRememberTokenName()
 | |
|     {
 | |
|         return 'remember_token';
 | |
|     }
 | |
| 
 | |
|     // public function confirm(){}
 | |
|     // public function forgotPassword(){}
 | |
|     // public function isValid(){}
 | |
| 
 | |
| }
 |