Replace session repository

This commit is contained in:
Lance Pioch 2022-10-24 00:44:59 -04:00
parent e49ba65709
commit e411707f4b
3 changed files with 0 additions and 55 deletions

View file

@ -1,34 +0,0 @@
<?php
namespace Pterodactyl\Repositories\Eloquent;
use Pterodactyl\Models\Session;
use Illuminate\Support\Collection;
use Pterodactyl\Contracts\Repository\SessionRepositoryInterface;
class SessionRepository extends EloquentRepository implements SessionRepositoryInterface
{
/**
* Return the model backing this repository.
*/
public function model(): string
{
return Session::class;
}
/**
* Return all the active sessions for a user.
*/
public function getUserSessions(int $user): Collection
{
return $this->getBuilder()->where('user_id', $user)->get($this->getColumns());
}
/**
* Delete a session for a given user.
*/
public function deleteUserSession(int $user, string $session): ?int
{
return $this->getBuilder()->where('user_id', $user)->where('id', $session)->delete();
}
}