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

SIGN-0001 Sign-In Intergration #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

VnukovNS
Copy link
Collaborator

@VnukovNS VnukovNS commented Apr 3, 2023

У Гугловской аутентофикации для проверки есть метод GoogleSignIn.getLastSignedInAccount(context) который требует в себя контекст и возвращает аккаунт, если пользователь залогинен, если пользователь вышел, то вернется нулл, соответственно мы пробрасываем эксепшн, если пришел нулл, либо же возвращаем аккаунт, который был авторизован.

Если нам не нужен аккаунт, то можно прост прокидывать эксепшн - пока не понятно как лучше сделать

import com.google.android.gms.auth.api.signin.GoogleSignInAccount
import ru.easycode.words504.domain.HandleError

interface SignInDataSource {
Copy link
Contributor

Choose a reason for hiding this comment

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

  1. Не нравится нейминг: Data Sourcе, судя по названию должен возвращать какие-то данные. Нужно либо название интерфейса исправить, либо название метода check...().

@@ -0,0 +1,24 @@
package ru.easycode.words504.languages.data.cloud
Copy link
Contributor

Choose a reason for hiding this comment

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

  1. Почему логика по логину в гугл акк лежит в пакете languages?


interface SignInDataSource {

suspend fun checkSignIn(): GoogleSignInAccount
Copy link
Contributor

Choose a reason for hiding this comment

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

  1. Название метода check...() как-то тоже странно вяжется, судя по тому, что он отдает гугл акк. Нужно подумать над неймингом.

suspend fun checkSignIn(): GoogleSignInAccount

class Base(
private val context: Context,
Copy link
Collaborator

Choose a reason for hiding this comment

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

контекст апликейшна подойдет? проверил на юайке? сделай в мейн активити кнопку для проверки

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