'[]', 'permissions' => '[]', ]; /** * Fields that should not be included when calling toArray() or toJson() * on this model. */ protected $hidden = ['token']; /** @var array */ public static array $validationRules = [ 'user_id' => 'required|exists:users,id', 'key_type' => 'present|integer|min:0|max:2', 'identifier' => 'required|string|size:16|unique:api_keys,identifier', 'token' => 'required|string', 'permissions' => 'array', 'permissions.*' => 'integer|min:0|max:3', 'memo' => 'required|nullable|string|max:500', 'allowed_ips' => 'array', 'allowed_ips.*' => 'string', 'last_used_at' => 'nullable|date', 'expires_at' => 'nullable|date', ]; protected function casts(): array { return [ 'permissions' => 'array', 'allowed_ips' => 'array', 'user_id' => 'int', 'last_used_at' => 'datetime', 'expires_at' => 'datetime', 'token' => 'encrypted', self::CREATED_AT => 'datetime', self::UPDATED_AT => 'datetime', ]; } /** * Returns the user this token is assigned to. */ public function user(): BelongsTo { return $this->belongsTo(User::class); } public function tokenable() { // @phpstan-ignore return.type return $this->user(); } /** * Returns the permission for the given resource. */ public function getPermission(string $resource): int { return $this->permissions[$resource] ?? AdminAcl::NONE; } public const DEFAULT_RESOURCE_NAMES = [ Server::RESOURCE_NAME, Node::RESOURCE_NAME, Allocation::RESOURCE_NAME, User::RESOURCE_NAME, Egg::RESOURCE_NAME, DatabaseHost::RESOURCE_NAME, Database::RESOURCE_NAME, Mount::RESOURCE_NAME, Role::RESOURCE_NAME, ]; /** @var string[] */ protected static array $customResourceNames = []; public static function registerCustomResourceName(string $resourceName): void { static::$customResourceNames[] = $resourceName; } /** * Returns a list of all possible permission keys. * * @return string[] */ public static function getPermissionList(): array { return array_unique(array_merge(self::DEFAULT_RESOURCE_NAMES, self::$customResourceNames)); } /** * Finds the model matching the provided token. * * @param string $token */ public static function findToken($token): ?self { $identifier = substr($token, 0, self::IDENTIFIER_LENGTH); /** @var static|null $model */ $model = static::where('identifier', $identifier)->first(); if (!is_null($model) && $model->token === substr($token, strlen($identifier))) { return $model; } return null; } /** * Returns the standard prefix for API keys in the system. */ public static function getPrefixForType(int $type): string { Assert::oneOf($type, [self::TYPE_ACCOUNT, self::TYPE_APPLICATION]); return $type === self::TYPE_ACCOUNT ? 'plcn_' : 'peli_'; } /** * Generates a new identifier for an API key. */ public static function generateTokenIdentifier(int $type): string { $prefix = self::getPrefixForType($type); return $prefix . Str::random(self::IDENTIFIER_LENGTH - strlen($prefix)); } }