-
Notifications
You must be signed in to change notification settings - Fork 2
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
base: main
Are you sure you want to change the base?
Conversation
import com.google.android.gms.auth.api.signin.GoogleSignInAccount | ||
import ru.easycode.words504.domain.HandleError | ||
|
||
interface SignInDataSource { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Не нравится нейминг: Data Sourcе, судя по названию должен возвращать какие-то данные. Нужно либо название интерфейса исправить, либо название метода check...().
@@ -0,0 +1,24 @@ | |||
package ru.easycode.words504.languages.data.cloud |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Почему логика по логину в гугл акк лежит в пакете languages?
|
||
interface SignInDataSource { | ||
|
||
suspend fun checkSignIn(): GoogleSignInAccount |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Название метода check...() как-то тоже странно вяжется, судя по тому, что он отдает гугл акк. Нужно подумать над неймингом.
suspend fun checkSignIn(): GoogleSignInAccount | ||
|
||
class Base( | ||
private val context: Context, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
контекст апликейшна подойдет? проверил на юайке? сделай в мейн активити кнопку для проверки
У Гугловской аутентофикации для проверки есть метод GoogleSignIn.getLastSignedInAccount(context) который требует в себя контекст и возвращает аккаунт, если пользователь залогинен, если пользователь вышел, то вернется нулл, соответственно мы пробрасываем эксепшн, если пришел нулл, либо же возвращаем аккаунт, который был авторизован.
Если нам не нужен аккаунт, то можно прост прокидывать эксепшн - пока не понятно как лучше сделать