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

Реализовать GET /api/chats #177

Open
qelphybox opened this issue Jan 4, 2021 · 1 comment
Open

Реализовать GET /api/chats #177

qelphybox opened this issue Jan 4, 2021 · 1 comment

Comments

@qelphybox
Copy link
Owner

GET /api/chats - Отдает все чаты, в которых участвует юзер

  1. Валидируем данные сессии (https://core.telegram.org/widgets/login#checking-authorization)
  2. В сессии у нас есть данные id, first_name, last_name, username, photo_url, auth_date, hash забираем id. Это id телеграм юзера.
  3. По этому id ищем в бд все чаты, в которых он состоит. Из бд достаем все чаты которые вообще есть в коллекции messages, и фильтруем их методом getChatMember (видимо понадобится либа, которая умеет в запросы в телегу, например telegram-bot-api)
  4. Формируем ответ и если все валидно отдаем:
    200 OK
    {   
      "status": "ok",
      "chats": [
        { "title": "Группа 11б класса", "id": "123123" },
        { "title": "нг 2020", "id": "123124"}
      ] 
    }
  5. Если невалидно, отдаем
    403 Forbidden
    {
      "status": "forbidden"
    }
@Johnny32id
Copy link
Contributor

Беру.

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

No branches or pull requests

2 participants