1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Models/User.php

459 lines
10 KiB
PHP
Raw Normal View History

2015-03-18 00:39:03 +01:00
<?php namespace App\Models;
2015-03-16 22:45:25 +01:00
2015-03-30 21:45:10 +02:00
use Session;
2015-08-14 14:04:33 +02:00
use Event;
2015-03-29 14:37:42 +02:00
use App\Libraries\Utils;
2015-08-14 14:04:33 +02:00
use App\Events\UserSettingsChanged;
2015-09-25 11:57:40 +02:00
use App\Events\UserSignedUp;
2015-03-29 14:37:42 +02:00
use Illuminate\Auth\Authenticatable;
2016-04-26 03:53:39 +02:00
use Illuminate\Foundation\Auth\Access\Authorizable;
2015-03-29 14:37:42 +02:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
2016-04-26 03:53:39 +02:00
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
2015-03-29 14:37:42 +02:00
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
2015-03-31 11:38:24 +02:00
use Illuminate\Database\Eloquent\SoftDeletes;
2015-03-23 07:52:01 +01:00
/**
* Class User
*/
2016-04-26 03:53:39 +02:00
class User extends Model implements AuthenticatableContract, AuthorizableContract, CanResetPasswordContract {
/**
* @var array
*/
public static $all_permissions = [
2016-03-16 00:08:00 +01:00
'create_all' => 0b0001,
'view_all' => 0b0010,
'edit_all' => 0b0100,
];
2016-05-23 18:52:20 +02:00
2016-04-26 03:53:39 +02:00
use Authenticatable, Authorizable, CanResetPassword;
2015-03-16 22:45:25 +01:00
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
2015-03-18 00:39:03 +01:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
2016-02-04 21:35:28 +01:00
protected $fillable = [
'first_name',
'last_name',
'email',
'password',
'phone',
];
2015-03-18 00:39:03 +01:00
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
2015-09-25 11:57:40 +02:00
protected $hidden = ['password', 'remember_token', 'confirmation_code'];
2015-03-18 00:39:03 +01:00
2015-03-31 11:38:24 +02:00
use SoftDeletes;
/**
* @var array
*/
2015-03-31 11:38:24 +02:00
protected $dates = ['deleted_at'];
2015-03-18 00:39:03 +01:00
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
2015-03-16 22:45:25 +01:00
public function account()
{
2015-03-26 04:52:42 +01:00
return $this->belongsTo('App\Models\Account');
2015-03-16 22:45:25 +01:00
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
2015-03-16 22:45:25 +01:00
public function theme()
{
2015-03-26 04:52:42 +01:00
return $this->belongsTo('App\Models\Theme');
2015-03-16 22:45:25 +01:00
}
/**
* @param $value
*/
2016-02-04 21:35:28 +01:00
public function setEmailAttribute($value)
{
$this->attributes['email'] = $this->attributes['username'] = $value;
}
/**
* @return mixed|string
*/
2015-07-02 22:21:29 +02:00
public function getName()
{
return $this->getDisplayName();
}
/**
* @return mixed
*/
2015-03-16 22:45:25 +01:00
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;
}
/**
* @return mixed
*/
2015-03-16 22:45:25 +01:00
public function isPro()
{
return $this->account->isPro();
}
/**
* @param $feature
* @return mixed
*/
public function hasFeature($feature)
{
return $this->account->hasFeature($feature);
}
/**
* @return bool
*/
2016-02-17 16:50:01 +01:00
public function isPaidPro()
{
return $this->isPro($accountDetails) && !$accountDetails['trial'];
2016-02-17 16:50:01 +01:00
}
/**
* @return mixed
*/
public function isTrial()
{
return $this->account->isTrial();
}
/**
* @param null $plan
* @return mixed
*/
2016-04-17 00:34:39 +02:00
public function isEligibleForTrial($plan = null)
{
2016-04-17 00:34:39 +02:00
return $this->account->isEligibleForTrial($plan);
}
/**
* @return int
*/
2015-03-16 22:45:25 +01:00
public function maxInvoiceDesignId()
{
return $this->hasFeature(FEATURE_MORE_INVOICE_DESIGNS) ? 11 : (Utils::isNinja() ? COUNT_FREE_DESIGNS : COUNT_FREE_DESIGNS_SELF_HOST);
2015-03-16 22:45:25 +01:00
}
/**
* @return mixed|string
*/
2015-03-16 22:45:25 +01:00
public function getDisplayName()
{
if ($this->getFullName()) {
return $this->getFullName();
} elseif ($this->email) {
return $this->email;
} else {
return 'Guest';
}
}
/**
* @return string
*/
2015-03-16 22:45:25 +01:00
public function getFullName()
{
if ($this->first_name || $this->last_name) {
return $this->first_name.' '.$this->last_name;
} else {
return '';
}
}
/**
* @return bool
*/
2015-03-16 22:45:25 +01:00
public function showGreyBackground()
{
return !$this->theme_id || in_array($this->theme_id, [2, 3, 5, 6, 7, 8, 10, 11, 12]);
}
/**
* @return mixed
*/
2015-03-16 22:45:25 +01:00
public function getRequestsCount()
{
return Session::get(SESSION_COUNTER, 0);
}
2016-05-23 18:52:20 +02:00
/**
* @param bool $success
* @param bool $forced
* @return bool
*/
2015-03-16 22:45:25 +01:00
public function afterSave($success = true, $forced = false)
{
if ($this->email) {
return parent::afterSave($success = true, $forced = false);
} else {
return true;
}
}
/**
* @return mixed
*/
2015-03-16 22:45:25 +01:00
public function getMaxNumClients()
{
if ($this->hasFeature(FEATURE_MORE_CLIENTS)) {
2015-10-18 09:30:28 +02:00
return MAX_NUM_CLIENTS_PRO;
}
if ($this->id < LEGACY_CUTOFF) {
return MAX_NUM_CLIENTS_LEGACY;
}
return MAX_NUM_CLIENTS;
2015-03-16 22:45:25 +01:00
}
/**
* @return mixed
*/
2016-01-06 15:23:58 +01:00
public function getMaxNumVendors()
{
if ($this->hasFeature(FEATURE_MORE_CLIENTS)) {
2016-01-06 15:23:58 +01:00
return MAX_NUM_VENDORS_PRO;
}
return MAX_NUM_VENDORS;
}
2016-05-23 18:52:20 +02:00
/**
* @return mixed
*/
2015-03-16 22:45:25 +01:00
public function getRememberToken()
{
return $this->remember_token;
}
/**
* @param string $value
*/
2015-03-16 22:45:25 +01:00
public function setRememberToken($value)
{
$this->remember_token = $value;
}
/**
* @return string
*/
2015-03-16 22:45:25 +01:00
public function getRememberTokenName()
{
return 'remember_token';
}
2015-03-23 07:52:01 +01:00
2015-06-16 21:35:35 +02:00
public function clearSession()
{
$keys = [
RECENTLY_VIEWED,
SESSION_USER_ACCOUNTS,
SESSION_TIMEZONE,
SESSION_DATE_FORMAT,
SESSION_DATE_PICKER_FORMAT,
SESSION_DATETIME_FORMAT,
SESSION_CURRENCY,
SESSION_LOCALE,
];
foreach ($keys as $key) {
Session::forget($key);
}
}
/**
* @param $user
*/
2015-09-25 11:57:40 +02:00
public static function onUpdatingUser($user)
2015-07-07 22:08:16 +02:00
{
2015-09-25 11:57:40 +02:00
if ($user->password != $user->getOriginal('password')) {
2015-07-07 22:08:16 +02:00
$user->failed_logins = 0;
}
// if the user changes their email then they need to reconfirm it
if ($user->isEmailBeingChanged()) {
$user->confirmed = 0;
$user->confirmation_code = str_random(RANDOM_KEY_LENGTH);
}
2015-07-07 22:08:16 +02:00
}
/**
* @param $user
*/
2015-09-25 11:57:40 +02:00
public static function onUpdatedUser($user)
{
if (!$user->getOriginal('email')
|| $user->getOriginal('email') == TEST_USERNAME
2015-10-20 10:23:38 +02:00
|| $user->getOriginal('username') == TEST_USERNAME
|| $user->getOriginal('email') == 'tests@bitrock.com') {
2015-09-25 11:57:40 +02:00
event(new UserSignedUp());
}
event(new UserSettingsChanged($user));
}
/**
* @return bool
*/
public function isEmailBeingChanged()
{
return Utils::isNinjaProd()
&& $this->email != $this->getOriginal('email')
&& $this->getOriginal('confirmed');
2015-09-25 11:57:40 +02:00
}
2016-05-23 18:52:20 +02:00
2016-03-16 00:08:00 +01:00
/**
* Set the permissions attribute on the model.
*
* @param mixed $value
* @return $this
*/
protected function setPermissionsAttribute($value){
if(empty($value)) {
$this->attributes['permissions'] = 0;
2016-05-23 18:52:20 +02:00
} else {
2016-03-16 00:08:00 +01:00
$bitmask = 0;
foreach($value as $permission){
2016-06-20 16:14:43 +02:00
if ( ! $permission) {
continue;
}
2016-03-16 00:08:00 +01:00
$bitmask = $bitmask | static::$all_permissions[$permission];
}
$this->attributes['permissions'] = $bitmask;
}
2016-05-23 18:52:20 +02:00
2016-03-16 00:08:00 +01:00
return $this;
}
2016-05-23 18:52:20 +02:00
2016-03-16 00:08:00 +01:00
/**
* Expands the value of the permissions attribute
*
* @param mixed $value
* @return mixed
*/
protected function getPermissionsAttribute($value){
$permissions = [];
2016-03-16 00:08:00 +01:00
foreach(static::$all_permissions as $permission => $bitmask){
if(($value & $bitmask) == $bitmask) {
$permissions[$permission] = $permission;
}
}
2016-05-23 18:52:20 +02:00
2016-03-16 00:08:00 +01:00
return $permissions;
}
2016-05-23 18:52:20 +02:00
2016-03-16 00:08:00 +01:00
/**
* Checks to see if the user has the required permission
*
* @param mixed $permission Either a single permission or an array of possible permissions
* @param boolean True to require all permissions, false to require only one
* @return boolean
*/
public function hasPermission($permission, $requireAll = false){
if ($this->is_admin) {
return true;
} else if(is_string($permission)){
return !empty($this->permissions[$permission]);
} else if(is_array($permission)) {
if($requireAll){
return count(array_diff($permission, $this->permissions)) == 0;
} else {
return count(array_intersect($permission, $this->permissions)) > 0;
}
}
2016-05-23 18:52:20 +02:00
2016-03-16 00:08:00 +01:00
return false;
}
2016-05-23 18:52:20 +02:00
/**
* @param $entity
* @return bool
*/
2016-04-23 17:52:36 +02:00
public function owns($entity) {
return !empty($entity->user_id) && $entity->user_id == $this->id;
}
2016-05-23 18:52:20 +02:00
/**
* @return bool|mixed
*/
2016-05-23 18:52:20 +02:00
public function filterId() {
return $this->hasPermission('view_all') ? false : $this->id;
}
2016-07-11 19:08:43 +02:00
public function caddAddUsers() {
if ( ! $this->hasFeature(FEATURE_USERS)) {
return false;
}
$account = $this->account;
$company = $account->company;
$numUsers = 1;
foreach ($company->accounts as $account) {
$numUsers += $account->users->count() - 1;
}
return $numUsers < $company->num_users;
}
2015-03-16 22:45:25 +01:00
}
2015-07-07 22:08:16 +02:00
User::updating(function ($user) {
2015-09-25 11:57:40 +02:00
User::onUpdatingUser($user);
2015-07-07 22:08:16 +02:00
});
2015-08-14 14:04:33 +02:00
User::updated(function ($user) {
2015-09-25 11:57:40 +02:00
User::onUpdatedUser($user);
});