2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
2016-12-07 23:46:38 +01:00
|
|
|
|
2015-12-06 19:58:49 +01:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2018-02-11 23:39:50 +01:00
|
|
|
use Pterodactyl\Rules\Username;
|
2018-07-15 07:42:58 +02:00
|
|
|
use Illuminate\Support\Collection;
|
2018-01-01 22:11:44 +01:00
|
|
|
use Illuminate\Validation\Rules\In;
|
2015-12-06 19:58:49 +01:00
|
|
|
use Illuminate\Auth\Authenticatable;
|
2016-12-07 23:46:38 +01:00
|
|
|
use Illuminate\Notifications\Notifiable;
|
2019-09-05 06:21:07 +02:00
|
|
|
use Pterodactyl\Models\Traits\Searchable;
|
2015-12-06 19:58:49 +01:00
|
|
|
use Illuminate\Auth\Passwords\CanResetPassword;
|
2018-01-01 22:11:44 +01:00
|
|
|
use Pterodactyl\Traits\Helpers\AvailableLanguages;
|
2015-12-06 19:58:49 +01:00
|
|
|
use Illuminate\Foundation\Auth\Access\Authorizable;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
|
|
|
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
|
|
|
|
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
|
2016-12-07 23:46:38 +01:00
|
|
|
use Pterodactyl\Notifications\SendPasswordReset as ResetPasswordNotification;
|
2015-12-06 19:58:49 +01:00
|
|
|
|
2019-09-06 06:53:33 +02:00
|
|
|
/**
|
|
|
|
* @property int $id
|
|
|
|
* @property string|null $external_id
|
|
|
|
* @property string $uuid
|
|
|
|
* @property string $username
|
|
|
|
* @property string $email
|
|
|
|
* @property string|null $name_first
|
|
|
|
* @property string|null $name_last
|
|
|
|
* @property string $password
|
|
|
|
* @property string|null $remeber_token
|
|
|
|
* @property string $language
|
|
|
|
* @property bool $root_admin
|
|
|
|
* @property bool $use_totp
|
|
|
|
* @property string|null $totp_secret
|
|
|
|
* @property \Carbon\Carbon|null $totp_authenticated_at
|
|
|
|
* @property bool $gravatar
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
*
|
|
|
|
* @property string $name
|
2020-03-23 02:15:38 +01:00
|
|
|
* @property \Pterodactyl\Models\ApiKey[]|\Illuminate\Database\Eloquent\Collection $apiKeys
|
2019-12-28 21:03:19 +01:00
|
|
|
* @property \Pterodactyl\Models\Server[]|\Illuminate\Database\Eloquent\Collection $servers
|
|
|
|
* @property \Pterodactyl\Models\DaemonKey[]|\Illuminate\Database\Eloquent\Collection $keys
|
2019-09-06 06:53:33 +02:00
|
|
|
*/
|
2019-09-05 06:00:34 +02:00
|
|
|
class User extends Validable implements
|
2017-08-12 22:29:01 +02:00
|
|
|
AuthenticatableContract,
|
|
|
|
AuthorizableContract,
|
2019-09-05 06:00:34 +02:00
|
|
|
CanResetPasswordContract
|
2015-12-06 19:58:49 +01:00
|
|
|
{
|
2019-09-05 06:21:07 +02:00
|
|
|
use Authenticatable, Authorizable, AvailableLanguages, CanResetPassword, Notifiable, Searchable;
|
2015-12-06 19:58:49 +01:00
|
|
|
|
2017-10-27 06:49:54 +02:00
|
|
|
const USER_LEVEL_USER = 0;
|
|
|
|
const USER_LEVEL_ADMIN = 1;
|
|
|
|
|
2018-01-05 05:49:50 +01:00
|
|
|
const FILTER_LEVEL_ALL = 0;
|
|
|
|
const FILTER_LEVEL_OWNER = 1;
|
|
|
|
const FILTER_LEVEL_ADMIN = 2;
|
|
|
|
const FILTER_LEVEL_SUBUSER = 3;
|
|
|
|
|
2018-01-26 04:26:06 +01:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'user';
|
|
|
|
|
2017-05-01 21:28:43 +02:00
|
|
|
/**
|
|
|
|
* Level of servers to display when using access() on a user.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $accessLevel = 'all';
|
|
|
|
|
2015-12-06 19:58:49 +01:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'users';
|
|
|
|
|
|
|
|
/**
|
2017-01-12 21:40:24 +01:00
|
|
|
* A list of mass-assignable variables.
|
2015-12-06 19:58:49 +01:00
|
|
|
*
|
2017-03-11 21:02:04 +01:00
|
|
|
* @var array
|
2015-12-06 19:58:49 +01:00
|
|
|
*/
|
2017-09-25 04:12:30 +02:00
|
|
|
protected $fillable = [
|
2018-02-24 21:47:53 +01:00
|
|
|
'external_id',
|
2017-09-25 04:12:30 +02:00
|
|
|
'username',
|
|
|
|
'email',
|
|
|
|
'name_first',
|
|
|
|
'name_last',
|
|
|
|
'password',
|
|
|
|
'language',
|
|
|
|
'use_totp',
|
|
|
|
'totp_secret',
|
2017-11-18 19:35:33 +01:00
|
|
|
'totp_authenticated_at',
|
2017-09-25 04:12:30 +02:00
|
|
|
'gravatar',
|
|
|
|
'root_admin',
|
|
|
|
];
|
2015-12-06 19:58:49 +01:00
|
|
|
|
2017-03-20 00:36:50 +01:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
2017-08-31 04:11:14 +02:00
|
|
|
'root_admin' => 'boolean',
|
|
|
|
'use_totp' => 'boolean',
|
|
|
|
'gravatar' => 'boolean',
|
2017-03-20 00:36:50 +01:00
|
|
|
];
|
2016-01-27 04:17:51 +01:00
|
|
|
|
2017-11-18 19:35:33 +01:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-09-06 06:53:33 +02:00
|
|
|
protected $dates = ['totp_authenticated_at'];
|
2017-11-18 19:35:33 +01:00
|
|
|
|
2015-12-06 19:58:49 +01:00
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-11-19 23:30:00 +01:00
|
|
|
protected $hidden = ['password', 'remember_token', 'totp_secret', 'totp_authenticated_at'];
|
2015-12-06 19:58:49 +01:00
|
|
|
|
2017-03-15 02:18:36 +01:00
|
|
|
/**
|
|
|
|
* Parameters for search querying.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-07-01 22:29:49 +02:00
|
|
|
protected $searchableColumns = [
|
2018-02-08 04:56:11 +01:00
|
|
|
'username' => 100,
|
|
|
|
'email' => 100,
|
|
|
|
'external_id' => 80,
|
|
|
|
'uuid' => 80,
|
|
|
|
'name_first' => 40,
|
|
|
|
'name_last' => 40,
|
2017-06-25 02:49:09 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default values for specific fields in the database.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
2018-02-25 23:08:01 +01:00
|
|
|
'external_id' => null,
|
2017-06-25 02:49:09 +02:00
|
|
|
'root_admin' => false,
|
|
|
|
'language' => 'en',
|
|
|
|
'use_totp' => false,
|
|
|
|
'totp_secret' => null,
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rules verifying that the data being stored matches the expectations of the database.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-09-05 07:19:57 +02:00
|
|
|
public static $validationRules = [
|
|
|
|
'uuid' => 'required|string|size:36|unique:users,uuid',
|
|
|
|
'email' => 'required|email|unique:users,email',
|
|
|
|
'external_id' => 'sometimes|nullable|string|max:255|unique:users,external_id',
|
|
|
|
'username' => 'required|between:1,255|unique:users,username',
|
|
|
|
'name_first' => 'required|string|between:1,255',
|
|
|
|
'name_last' => 'required|string|between:1,255',
|
2019-12-08 20:02:59 +01:00
|
|
|
'password' => 'sometimes|nullable|string',
|
2017-06-25 02:49:09 +02:00
|
|
|
'root_admin' => 'boolean',
|
2019-09-05 07:19:57 +02:00
|
|
|
'language' => 'required|string',
|
2017-06-25 02:49:09 +02:00
|
|
|
'use_totp' => 'boolean',
|
|
|
|
'totp_secret' => 'nullable|string',
|
|
|
|
];
|
2017-04-01 19:14:49 +02:00
|
|
|
|
2018-01-01 22:11:44 +01:00
|
|
|
/**
|
|
|
|
* Implement language verification by overriding Eloquence's gather
|
|
|
|
* rules function.
|
|
|
|
*/
|
2019-09-05 07:26:28 +02:00
|
|
|
public static function getRules()
|
2018-01-01 22:11:44 +01:00
|
|
|
{
|
2019-12-08 19:44:58 +01:00
|
|
|
$rules = parent::getRules();
|
2019-09-05 07:26:28 +02:00
|
|
|
|
2018-01-01 22:11:44 +01:00
|
|
|
$rules['language'][] = new In(array_keys((new self)->getAvailableLanguages()));
|
2018-02-11 23:39:50 +01:00
|
|
|
$rules['username'][] = new Username;
|
2018-01-01 22:11:44 +01:00
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2018-07-15 07:42:58 +02:00
|
|
|
/**
|
|
|
|
* Return the user model in a format that can be passed over to Vue templates.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function toVueObject(): array
|
|
|
|
{
|
|
|
|
return (new Collection($this->toArray()))->except(['id', 'external_id'])->toArray();
|
|
|
|
}
|
|
|
|
|
2016-09-03 23:09:00 +02:00
|
|
|
/**
|
|
|
|
* Send the password reset notification.
|
|
|
|
*
|
2017-08-22 05:10:48 +02:00
|
|
|
* @param string $token
|
2016-09-03 23:09:00 +02:00
|
|
|
*/
|
|
|
|
public function sendPasswordResetNotification($token)
|
|
|
|
{
|
|
|
|
$this->notify(new ResetPasswordNotification($token));
|
|
|
|
}
|
2017-01-18 21:13:05 +01:00
|
|
|
|
2017-06-11 05:28:44 +02:00
|
|
|
/**
|
2018-05-13 16:50:56 +02:00
|
|
|
* Store the username as a lowercase string.
|
2017-06-11 05:28:44 +02:00
|
|
|
*
|
2017-08-22 05:10:48 +02:00
|
|
|
* @param string $value
|
2017-06-11 05:28:44 +02:00
|
|
|
*/
|
2018-02-11 23:39:50 +01:00
|
|
|
public function setUsernameAttribute(string $value)
|
2017-06-11 05:28:44 +02:00
|
|
|
{
|
2018-02-11 23:39:50 +01:00
|
|
|
$this->attributes['username'] = mb_strtolower($value);
|
2017-06-11 05:28:44 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 05:13:33 +02:00
|
|
|
/**
|
2018-05-13 16:50:56 +02:00
|
|
|
* Return a concatenated result for the accounts full name.
|
2017-09-16 05:13:33 +02:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getNameAttribute()
|
|
|
|
{
|
2019-11-03 21:20:11 +01:00
|
|
|
return trim($this->name_first . ' ' . $this->name_last);
|
2017-09-16 05:13:33 +02:00
|
|
|
}
|
|
|
|
|
2017-02-09 23:43:54 +01:00
|
|
|
/**
|
|
|
|
* Returns all servers that a user owns.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function servers()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Server::class, 'owner_id');
|
|
|
|
}
|
2017-04-14 05:49:47 +02:00
|
|
|
|
2017-09-25 04:12:30 +02:00
|
|
|
/**
|
|
|
|
* Return all of the daemon keys that a user belongs to.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function keys()
|
|
|
|
{
|
|
|
|
return $this->hasMany(DaemonKey::class);
|
|
|
|
}
|
2020-03-23 02:15:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function apiKeys()
|
|
|
|
{
|
|
|
|
return $this->hasMany(ApiKey::class)
|
|
|
|
->where('key_type', ApiKey::TYPE_ACCOUNT);
|
|
|
|
}
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|