Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(terminate_all_session): Terminate all user sessions #35

Merged
merged 3 commits into from
Nov 28, 2023

Conversation

AlexanderZharyuk
Copy link
Owner

Task #7

Copy link
Collaborator

@VyacheslavKazakov VyacheslavKazakov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

в виду норм, но есть пара комментариев, проверить в живую не смог, у меня под 3.11 питоном не работает aioredis библиотека, написал коммент на эту тему

@@ -14,7 +14,7 @@ class Settings(BaseSettings):
listen_port: int = 8000
allowed_hosts: list = const.DEFAULT_ALLOWED_HOSTS

redis_host: str = "redis"
redis_host: str = "localhost"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут лучше оставить имя контейнера по умолчанию

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

имхо, когда будем собирать докер - это может усложнить работу, лучше 'redis'
то же самое с postgres, но я могу это поправить в ветке с докером

src/core/config.py Show resolved Hide resolved
src/v1/auth/routers.py Show resolved Hide resolved
src/db/redis.py Outdated Show resolved Hide resolved
src/v1/auth/service.py Outdated Show resolved Hide resolved
Copy link
Collaborator

@VyacheslavKazakov VyacheslavKazakov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

есть пара комментов
работу с куками не проверил, надеюсь что все ок
может мы будем принимать access_token не только кук, но и в теле его искать будем? кажется что наставник говорил что это норм практика

@@ -14,7 +14,7 @@ class Settings(BaseSettings):
listen_port: int = 8000
allowed_hosts: list = const.DEFAULT_ALLOWED_HOSTS

redis_host: str = "redis"
redis_host: str = "localhost"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

имхо, когда будем собирать докер - это может усложнить работу, лучше 'redis'
то же самое с postgres, но я могу это поправить в ветке с докером

return await conn.delete(signature_key)

async def delete_all(self, user_id: UUID4, count_size: int = 10) -> int:
pattern = f"{self.namespace}:{user_id}:*"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

возможно я не понимаю как клиент редиса работает, но если мы создаем только пары ключ-значение вида f"{self.namespace}:{user_id}": signature то зачем нам такой паттерн поиска
f"{self.namespace}:{user_id}:*"
?

  1. кажется что будет всего один такой ключ - у нас у каждого пользователя одна сигнатура
  2. ключ при сохранении на включает замыкающее ":" + какие-либо еще символы

@@ -54,3 +54,25 @@ async def logout(
)
return LogoutResponse()


Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

заметил что в logout методе есть access_token из кук, но он никуда дальше не передается
по идее надо по нему верификацию делать как в terminate_all_sessions

@AlexanderZharyuk AlexanderZharyuk merged commit 1ca9e12 into master Nov 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants