74 lines
3.3 KiB
Dart
74 lines
3.3 KiB
Dart
import 'package:core/core.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:tmail_ui_user/features/base/base_bindings.dart';
|
|
import 'package:tmail_ui_user/features/login/data/datasource/authentication_datasource.dart';
|
|
import 'package:tmail_ui_user/features/login/data/datasource/authentication_oidc_datasource.dart';
|
|
import 'package:tmail_ui_user/features/login/data/datasource_impl/authentication_datasource_impl.dart';
|
|
import 'package:tmail_ui_user/features/login/data/datasource_impl/authentication_oidc_datasource_impl.dart';
|
|
import 'package:tmail_ui_user/features/login/data/network/oidc_http_client.dart';
|
|
import 'package:tmail_ui_user/features/login/data/repository/authentication_oidc_repository_impl.dart';
|
|
import 'package:tmail_ui_user/features/login/data/repository/authentication_repository_impl.dart';
|
|
import 'package:tmail_ui_user/features/login/data/repository/credential_repository_impl.dart';
|
|
import 'package:tmail_ui_user/features/login/domain/repository/authentication_oidc_repository.dart';
|
|
import 'package:tmail_ui_user/features/login/domain/repository/authentication_repository.dart';
|
|
import 'package:tmail_ui_user/features/login/domain/repository/credential_repository.dart';
|
|
import 'package:tmail_ui_user/features/login/domain/usecases/authentication_user_interactor.dart';
|
|
import 'package:tmail_ui_user/features/login/domain/usecases/check_oidc_is_available_interactor.dart';
|
|
import 'package:tmail_ui_user/features/login/presentation/login_controller.dart';
|
|
|
|
class LoginBindings extends BaseBindings {
|
|
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut(() => OIDCHttpClient(Get.find<DioClient>()));
|
|
super.dependencies();
|
|
}
|
|
|
|
@override
|
|
void bindingsController() {
|
|
Get.lazyPut(() => LoginController(
|
|
Get.find<AuthenticationInteractor>(),
|
|
Get.find<DynamicUrlInterceptors>(),
|
|
Get.find<AuthorizationInterceptors>(),
|
|
Get.find<CheckOIDCIsAvailableInteractor>(),
|
|
));
|
|
}
|
|
|
|
@override
|
|
void bindingsDataSource() {
|
|
Get.lazyPut<AuthenticationDataSource>(() => Get.find<AuthenticationDataSourceImpl>());
|
|
Get.lazyPut<AuthenticationOIDCDataSource>(() => Get.find<AuthenticationOIDCDataSourceImpl>());
|
|
}
|
|
|
|
@override
|
|
void bindingsDataSourceImpl() {
|
|
Get.lazyPut(() => AuthenticationDataSourceImpl());
|
|
Get.lazyPut(() => AuthenticationOIDCDataSourceImpl(Get.find<OIDCHttpClient>()));
|
|
}
|
|
|
|
@override
|
|
void bindingsInteractor() {
|
|
Get.lazyPut(() => AuthenticationInteractor(
|
|
Get.find<AuthenticationRepository>(),
|
|
Get.find<CredentialRepository>(),
|
|
));
|
|
Get.lazyPut(() => CheckOIDCIsAvailableInteractor(
|
|
Get.find<AuthenticationOIDCRepository>(),
|
|
));
|
|
}
|
|
|
|
@override
|
|
void bindingsRepository() {
|
|
Get.lazyPut<CredentialRepository>(() => Get.find<CredentialRepositoryImpl>());
|
|
Get.lazyPut<AuthenticationRepository>(() => Get.find<AuthenticationRepositoryImpl>());
|
|
Get.lazyPut<AuthenticationOIDCRepository>(() => Get.find<AuthenticationOIDCRepositoryImpl>());
|
|
}
|
|
|
|
@override
|
|
void bindingsRepositoryImpl() {
|
|
Get.lazyPut(() => CredentialRepositoryImpl(Get.find<SharedPreferences>()));
|
|
Get.lazyPut(() => AuthenticationRepositoryImpl(Get.find<AuthenticationDataSource>()));
|
|
Get.lazyPut(() => AuthenticationOIDCRepositoryImpl(Get.find<AuthenticationOIDCDataSource>()));
|
|
}
|
|
} |