2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2018-02-11 22:39:50 +00:00
|
|
|
use Pterodactyl\Rules\Username;
|
2022-05-28 21:03:58 +00:00
|
|
|
use Pterodactyl\Facades\Activity;
|
2018-07-15 05:42:58 +00:00
|
|
|
use Illuminate\Support\Collection;
|
2018-01-01 21:11:44 +00:00
|
|
|
use Illuminate\Validation\Rules\In;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Illuminate\Auth\Authenticatable;
|
2016-12-07 22:46:38 +00:00
|
|
|
use Illuminate\Notifications\Notifiable;
|
2020-07-07 04:25:00 +00:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
2022-05-22 23:03:51 +00:00
|
|
|
use Pterodactyl\Models\Traits\HasAccessTokens;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Illuminate\Auth\Passwords\CanResetPassword;
|
2022-11-28 16:56:03 +00:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2022-12-15 00:05:46 +00:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
2018-01-01 21:11:44 +00:00
|
|
|
use Pterodactyl\Traits\Helpers\AvailableLanguages;
|
2022-05-14 21:31:53 +00:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Illuminate\Foundation\Auth\Access\Authorizable;
|
2022-05-29 20:19:04 +00:00
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
2015-12-06 18:58:49 +00:00
|
|
|
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 22:46:38 +00:00
|
|
|
use Pterodactyl\Notifications\SendPasswordReset as ResetPasswordNotification;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2019-09-06 04:53:33 +00:00
|
|
|
/**
|
2022-05-22 18:57:06 +00:00
|
|
|
* Pterodactyl\Models\User.
|
2022-05-14 21:31:53 +00:00
|
|
|
*
|
2021-01-28 04:52:11 +00:00
|
|
|
* @property int $id
|
|
|
|
* @property string|null $external_id
|
|
|
|
* @property string $uuid
|
|
|
|
* @property string $username
|
|
|
|
* @property string $email
|
|
|
|
* @property string $password
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property string|null $remember_token
|
2021-01-28 04:52:11 +00:00
|
|
|
* @property string $language
|
2022-12-15 00:05:46 +00:00
|
|
|
* @property int|null $admin_role_id
|
2021-01-28 04:52:11 +00:00
|
|
|
* @property bool $root_admin
|
|
|
|
* @property bool $use_totp
|
|
|
|
* @property string|null $totp_secret
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property \Illuminate\Support\Carbon|null $totp_authenticated_at
|
2021-01-28 04:52:11 +00:00
|
|
|
* @property bool $gravatar
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
2022-12-15 19:26:34 +00:00
|
|
|
* @property string $avatar_url
|
|
|
|
* @property string|null $admin_role_name
|
|
|
|
* @property string $md5
|
|
|
|
* @property \Pterodactyl\Models\AdminRole|null $adminRole
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\ApiKey[] $apiKeys
|
2022-05-14 21:31:53 +00:00
|
|
|
* @property int|null $api_keys_count
|
|
|
|
* @property \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
|
|
|
|
* @property int|null $notifications_count
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\RecoveryToken[] $recoveryTokens
|
2022-05-14 21:31:53 +00:00
|
|
|
* @property int|null $recovery_tokens_count
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\Server[] $servers
|
2022-05-14 21:31:53 +00:00
|
|
|
* @property int|null $servers_count
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\UserSSHKey[] $sshKeys
|
|
|
|
* @property int|null $ssh_keys_count
|
2022-05-22 18:57:06 +00:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Pterodactyl\Models\ApiKey[] $tokens
|
|
|
|
* @property int|null $tokens_count
|
2022-05-14 21:31:53 +00:00
|
|
|
*
|
|
|
|
* @method static \Database\Factories\UserFactory factory(...$parameters)
|
|
|
|
* @method static Builder|User newModelQuery()
|
|
|
|
* @method static Builder|User newQuery()
|
|
|
|
* @method static Builder|User query()
|
|
|
|
* @method static Builder|User whereCreatedAt($value)
|
|
|
|
* @method static Builder|User whereEmail($value)
|
|
|
|
* @method static Builder|User whereExternalId($value)
|
|
|
|
* @method static Builder|User whereGravatar($value)
|
|
|
|
* @method static Builder|User whereId($value)
|
|
|
|
* @method static Builder|User whereLanguage($value)
|
|
|
|
* @method static Builder|User whereNameFirst($value)
|
|
|
|
* @method static Builder|User whereNameLast($value)
|
|
|
|
* @method static Builder|User wherePassword($value)
|
|
|
|
* @method static Builder|User whereRememberToken($value)
|
|
|
|
* @method static Builder|User whereRootAdmin($value)
|
|
|
|
* @method static Builder|User whereTotpAuthenticatedAt($value)
|
|
|
|
* @method static Builder|User whereTotpSecret($value)
|
|
|
|
* @method static Builder|User whereUpdatedAt($value)
|
|
|
|
* @method static Builder|User whereUseTotp($value)
|
|
|
|
* @method static Builder|User whereUsername($value)
|
|
|
|
* @method static Builder|User whereUuid($value)
|
2022-10-14 16:59:20 +00:00
|
|
|
*
|
2022-11-25 20:29:04 +00:00
|
|
|
* @mixin \Barryvdh\LaravelIdeHelper\Eloquent
|
|
|
|
* @mixin \Illuminate\Database\Query\Builder
|
|
|
|
* @mixin \Illuminate\Database\Eloquent\Builder
|
2019-09-06 04:53:33 +00:00
|
|
|
*/
|
2020-04-04 06:22:35 +00:00
|
|
|
class User extends Model implements
|
2017-08-12 20:29:01 +00:00
|
|
|
AuthenticatableContract,
|
|
|
|
AuthorizableContract,
|
2019-09-05 04:00:34 +00:00
|
|
|
CanResetPasswordContract
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2020-04-04 06:22:35 +00:00
|
|
|
use Authenticatable;
|
|
|
|
use Authorizable;
|
|
|
|
use AvailableLanguages;
|
|
|
|
use CanResetPassword;
|
2022-05-22 23:03:51 +00:00
|
|
|
use HasAccessTokens;
|
2020-04-04 06:22:35 +00:00
|
|
|
use Notifiable;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
public const USER_LEVEL_USER = 0;
|
|
|
|
public const USER_LEVEL_ADMIN = 1;
|
2017-10-27 04:49:54 +00:00
|
|
|
|
2018-01-26 03:26:06 +00:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
2021-01-23 20:33:34 +00:00
|
|
|
public const RESOURCE_NAME = 'user';
|
2018-01-26 03:26:06 +00:00
|
|
|
|
2017-05-01 19:28:43 +00:00
|
|
|
/**
|
|
|
|
* Level of servers to display when using access() on a user.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
protected string $accessLevel = 'all';
|
2017-05-01 19:28:43 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*/
|
|
|
|
protected $table = 'users';
|
|
|
|
|
|
|
|
/**
|
2017-01-12 20:40:24 +00:00
|
|
|
* A list of mass-assignable variables.
|
2015-12-06 18:58:49 +00:00
|
|
|
*/
|
2017-09-25 02:12:30 +00:00
|
|
|
protected $fillable = [
|
2018-02-24 20:47:53 +00:00
|
|
|
'external_id',
|
2017-09-25 02:12:30 +00:00
|
|
|
'username',
|
|
|
|
'email',
|
|
|
|
'password',
|
|
|
|
'language',
|
|
|
|
'use_totp',
|
|
|
|
'totp_secret',
|
2017-11-18 18:35:33 +00:00
|
|
|
'totp_authenticated_at',
|
2017-09-25 02:12:30 +00:00
|
|
|
'gravatar',
|
|
|
|
'root_admin',
|
|
|
|
];
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2017-03-19 23:36:50 +00:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
2017-08-31 02:11:14 +00:00
|
|
|
'root_admin' => 'boolean',
|
|
|
|
'use_totp' => 'boolean',
|
|
|
|
'gravatar' => 'boolean',
|
2023-02-23 19:30:16 +00:00
|
|
|
'totp_authenticated_at' => 'datetime',
|
2017-03-19 23:36:50 +00:00
|
|
|
];
|
2016-01-27 03:17:51 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*/
|
2017-11-19 22:30:00 +00:00
|
|
|
protected $hidden = ['password', 'remember_token', 'totp_secret', 'totp_authenticated_at'];
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2017-06-25 00:49:09 +00:00
|
|
|
/**
|
|
|
|
* Default values for specific fields in the database.
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
2018-02-25 22:08:01 +00:00
|
|
|
'external_id' => null,
|
2017-06-25 00:49:09 +00: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.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public static array $validationRules = [
|
2019-09-05 05:19:57 +00:00
|
|
|
'uuid' => 'required|string|size:36|unique:users,uuid',
|
2020-09-26 23:29:26 +00:00
|
|
|
'email' => 'required|email|between:1,191|unique:users,email',
|
|
|
|
'external_id' => 'sometimes|nullable|string|max:191|unique:users,external_id',
|
|
|
|
'username' => 'required|between:1,191|unique:users,username',
|
2019-12-08 19:02:59 +00:00
|
|
|
'password' => 'sometimes|nullable|string',
|
2017-06-25 00:49:09 +00:00
|
|
|
'root_admin' => 'boolean',
|
2020-06-26 04:42:21 +00:00
|
|
|
'language' => 'string',
|
2017-06-25 00:49:09 +00:00
|
|
|
'use_totp' => 'boolean',
|
|
|
|
'totp_secret' => 'nullable|string',
|
|
|
|
];
|
2017-04-01 17:14:49 +00:00
|
|
|
|
2018-01-01 21:11:44 +00:00
|
|
|
/**
|
|
|
|
* Implement language verification by overriding Eloquence's gather
|
|
|
|
* rules function.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public static function getRules(): array
|
2018-01-01 21:11:44 +00:00
|
|
|
{
|
2019-12-08 18:44:58 +00:00
|
|
|
$rules = parent::getRules();
|
2019-09-05 05:26:28 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
$rules['language'][] = new In(array_keys((new self())->getAvailableLanguages()));
|
|
|
|
$rules['username'][] = new Username();
|
2018-01-01 21:11:44 +00:00
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2018-07-15 05:42:58 +00:00
|
|
|
/**
|
2022-12-15 00:05:46 +00:00
|
|
|
* Return the user model in a format that can be passed over to React templates.
|
2018-07-15 05:42:58 +00:00
|
|
|
*/
|
2022-12-15 00:05:46 +00:00
|
|
|
public function toReactObject(): array
|
2018-07-15 05:42:58 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return Collection::make($this->append(['avatar_url', 'admin_role_name'])->toArray())
|
|
|
|
->except(['id', 'external_id', 'admin_role', 'admin_role_id'])
|
|
|
|
->toArray();
|
2018-07-15 05:42:58 +00:00
|
|
|
}
|
|
|
|
|
2016-09-03 21:09:00 +00:00
|
|
|
/**
|
|
|
|
* Send the password reset notification.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param string $token
|
2016-09-03 21:09:00 +00:00
|
|
|
*/
|
|
|
|
public function sendPasswordResetNotification($token)
|
|
|
|
{
|
2022-05-29 22:48:35 +00:00
|
|
|
Activity::event('auth:reset-password')
|
2022-05-28 21:03:58 +00:00
|
|
|
->withRequestMetadata()
|
|
|
|
->subject($this)
|
|
|
|
->log('sending password reset email');
|
|
|
|
|
2016-09-03 21:09:00 +00:00
|
|
|
$this->notify(new ResetPasswordNotification($token));
|
|
|
|
}
|
2017-01-18 20:13:05 +00:00
|
|
|
|
2017-06-11 03:28:44 +00:00
|
|
|
/**
|
2018-05-13 14:50:56 +00:00
|
|
|
* Store the username as a lowercase string.
|
2017-06-11 03:28:44 +00:00
|
|
|
*/
|
2018-02-11 22:39:50 +00:00
|
|
|
public function setUsernameAttribute(string $value)
|
2017-06-11 03:28:44 +00:00
|
|
|
{
|
2018-02-11 22:39:50 +00:00
|
|
|
$this->attributes['username'] = mb_strtolower($value);
|
2017-06-11 03:28:44 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 19:26:34 +00:00
|
|
|
public function avatarUrl(): Attribute
|
2022-12-15 00:05:46 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return Attribute::make(
|
|
|
|
get: fn () => 'https://www.gravatar.com/avatar/' . $this->md5 . '.jpg',
|
|
|
|
);
|
2022-12-15 00:05:46 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 19:26:34 +00:00
|
|
|
public function adminRoleName(): Attribute
|
2022-12-15 00:05:46 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return Attribute::make(
|
|
|
|
get: fn () => is_null($this->adminRole) ? ($this->root_admin ? 'None' : null) : $this->adminRole->name,
|
|
|
|
);
|
2022-12-15 00:05:46 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 19:26:34 +00:00
|
|
|
public function md5(): Attribute
|
2022-12-15 00:05:46 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return Attribute::make(
|
|
|
|
get: fn () => md5(strtolower($this->email)),
|
|
|
|
);
|
2022-12-15 00:05:46 +00:00
|
|
|
}
|
|
|
|
|
2017-02-09 22:43:54 +00:00
|
|
|
/**
|
2022-12-15 19:26:34 +00:00
|
|
|
* Returns all the activity logs where this user is the subject — not to
|
|
|
|
* be confused by activity logs where this user is the _actor_.
|
2017-02-09 22:43:54 +00:00
|
|
|
*/
|
2022-12-15 19:26:34 +00:00
|
|
|
public function activity(): MorphToMany
|
2017-02-09 22:43:54 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return $this->morphToMany(ActivityLog::class, 'subject', 'activity_log_subjects');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function adminRole(): HasOne
|
|
|
|
{
|
|
|
|
return $this->hasOne(AdminRole::class, 'id', 'admin_role_id');
|
2017-02-09 22:43:54 +00:00
|
|
|
}
|
2017-04-14 03:49:47 +00:00
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
public function apiKeys(): HasMany
|
2020-03-23 01:15:38 +00:00
|
|
|
{
|
|
|
|
return $this->hasMany(ApiKey::class)
|
|
|
|
->where('key_type', ApiKey::TYPE_ACCOUNT);
|
|
|
|
}
|
2020-07-03 04:55:25 +00:00
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
public function recoveryTokens(): HasMany
|
2020-07-03 04:55:25 +00:00
|
|
|
{
|
|
|
|
return $this->hasMany(RecoveryToken::class);
|
|
|
|
}
|
2020-07-07 04:25:00 +00:00
|
|
|
|
2022-12-15 19:26:34 +00:00
|
|
|
public function servers(): HasMany
|
2022-05-29 20:19:04 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return $this->hasMany(Server::class, 'owner_id');
|
2022-05-29 20:19:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 19:26:34 +00:00
|
|
|
public function sshKeys(): HasMany
|
2022-11-28 16:56:03 +00:00
|
|
|
{
|
2022-12-15 19:26:34 +00:00
|
|
|
return $this->hasMany(UserSSHKey::class);
|
2022-11-28 16:56:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 04:25:00 +00:00
|
|
|
/**
|
2022-10-14 16:59:20 +00:00
|
|
|
* Returns all the servers that a user can access by way of being the owner of the
|
2020-07-07 04:25:00 +00:00
|
|
|
* server, or because they are assigned as a subuser for that server.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function accessibleServers(): Builder
|
2020-07-07 04:25:00 +00:00
|
|
|
{
|
2020-07-10 04:32:31 +00:00
|
|
|
return Server::query()
|
2020-07-07 04:25:00 +00:00
|
|
|
->select('servers.*')
|
|
|
|
->leftJoin('subusers', 'subusers.server_id', '=', 'servers.id')
|
|
|
|
->where(function (Builder $builder) {
|
|
|
|
$builder->where('servers.owner_id', $this->id)->orWhere('subusers.user_id', $this->id);
|
|
|
|
})
|
|
|
|
->groupBy('servers.id');
|
|
|
|
}
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|