189 lines
5.9 KiB
Dart
189 lines
5.9 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:rasadyar_chicken/chicken.dart';
|
|
import 'package:rasadyar_chicken/data/common/dio_error_handler.dart';
|
|
import 'package:rasadyar_chicken/data/di/chicken_di.dart';
|
|
import 'package:rasadyar_chicken/data/models/request/login_request/login_request_model.dart';
|
|
import 'package:rasadyar_chicken/data/models/response/user_info/user_info_model.dart';
|
|
import 'package:rasadyar_chicken/data/models/response/user_profile_model/user_profile_model.dart';
|
|
import 'package:rasadyar_chicken/data/repositories/auth/auth_repository.dart';
|
|
import 'package:rasadyar_chicken/presentation/widget/captcha/logic.dart';
|
|
import 'package:rasadyar_core/core.dart';
|
|
|
|
enum AuthType { useAndPass, otp }
|
|
|
|
enum AuthStatus { init }
|
|
|
|
enum OtpStatus { init, sent, verified, reSend }
|
|
|
|
class AuthLogic extends GetxController with GetTickerProviderStateMixin {
|
|
GlobalKey<FormState> formKey = GlobalKey<FormState>();
|
|
|
|
late AnimationController _textAnimationController;
|
|
late Animation<double> textAnimation;
|
|
RxBool showCard = false.obs;
|
|
RxBool rememberMe = false.obs;
|
|
|
|
Rx<GlobalKey<FormState>> formKeyOtp = GlobalKey<FormState>().obs;
|
|
Rx<GlobalKey<FormState>> formKeySentOtp = GlobalKey<FormState>().obs;
|
|
Rx<TextEditingController> usernameController = TextEditingController().obs;
|
|
Rx<TextEditingController> passwordController = TextEditingController().obs;
|
|
Rx<TextEditingController> phoneOtpNumberController = TextEditingController().obs;
|
|
Rx<TextEditingController> otpCodeController = TextEditingController().obs;
|
|
|
|
var captchaController = Get.find<CaptchaWidgetLogic>();
|
|
|
|
RxnString phoneNumber = RxnString(null);
|
|
RxBool isLoading = false.obs;
|
|
RxBool isDisabled = true.obs;
|
|
TokenStorageService tokenStorageService = Get.find<TokenStorageService>();
|
|
|
|
Rx<AuthType> authType = AuthType.useAndPass.obs;
|
|
Rx<AuthStatus> authStatus = AuthStatus.init.obs;
|
|
Rx<OtpStatus> otpStatus = OtpStatus.init.obs;
|
|
|
|
RxInt secondsRemaining = 120.obs;
|
|
Timer? _timer;
|
|
|
|
AuthRepository authRepository = diChicken.get<AuthRepository>();
|
|
|
|
final Module _module = Get.arguments;
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
|
|
_textAnimationController =
|
|
AnimationController(vsync: this, duration: const Duration(milliseconds: 1200))
|
|
..repeat(reverse: true, count: 2).whenComplete(() {
|
|
showCard.value = true;
|
|
});
|
|
|
|
textAnimation = CurvedAnimation(parent: _textAnimationController, curve: Curves.easeInOut);
|
|
|
|
initUserPassData();
|
|
}
|
|
|
|
@override
|
|
void onReady() {
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
_timer?.cancel();
|
|
super.onClose();
|
|
}
|
|
|
|
void startTimer() {
|
|
_timer?.cancel();
|
|
secondsRemaining.value = 120;
|
|
|
|
_timer = Timer.periodic(const Duration(seconds: 1), (timer) {
|
|
if (secondsRemaining.value > 0) {
|
|
secondsRemaining.value--;
|
|
} else {
|
|
timer.cancel();
|
|
}
|
|
});
|
|
}
|
|
|
|
void stopTimer() {
|
|
_timer?.cancel();
|
|
}
|
|
|
|
String get timeFormatted {
|
|
final minutes = secondsRemaining.value ~/ 60;
|
|
final seconds = secondsRemaining.value % 60;
|
|
return '${minutes.toString().padLeft(2, '0')}:${seconds.toString().padLeft(2, '0')}';
|
|
}
|
|
|
|
bool _isFormValid() {
|
|
final isCaptchaValid = captchaController.formKey.currentState?.validate() ?? false;
|
|
final isFormValid = formKey.currentState?.validate() ?? false;
|
|
return isCaptchaValid && isFormValid;
|
|
}
|
|
|
|
LoginRequestModel _buildLoginRequest() {
|
|
final phone = usernameController.value.text;
|
|
final pass = passwordController.value.text;
|
|
final code = captchaController.textController.value.text;
|
|
final key = captchaController.captchaKey.value;
|
|
|
|
return LoginRequestModel.createWithCaptcha(
|
|
username: phone,
|
|
password: pass,
|
|
captchaCode: code,
|
|
captchaKey: key!,
|
|
);
|
|
}
|
|
|
|
Future<void> submitLoginForm() async {
|
|
if (!_isFormValid()) return;
|
|
AuthRepository authTmp = diChicken.get<AuthRepository>();
|
|
isLoading.value = true;
|
|
await safeCall<UserProfileModel?>(
|
|
call: () => authTmp.login(
|
|
authRequest: {
|
|
"username": usernameController.value.text,
|
|
"password": passwordController.value.text,
|
|
},
|
|
),
|
|
onSuccess: (result) async {
|
|
await tokenStorageService.saveModule(_module);
|
|
await tokenStorageService.saveAccessToken(result?.accessToken ?? '');
|
|
await tokenStorageService.saveRefreshToken(result?.accessToken ?? '');
|
|
if (rememberMe.value) {
|
|
await tokenStorageService.saveUserPass(
|
|
UserLocalModel(
|
|
username: usernameController.value.text,
|
|
password: passwordController.value.text,
|
|
module: _module,
|
|
),
|
|
);
|
|
}
|
|
|
|
Get.offAndToNamed(ChickenRoutes.init);
|
|
},
|
|
onError: (error, stackTrace) {
|
|
if (error is DioException) {
|
|
diChicken.get<DioErrorHandler>().handle(error);
|
|
}
|
|
captchaController.getCaptcha();
|
|
},
|
|
);
|
|
isLoading.value = false;
|
|
}
|
|
|
|
Future<void> getUserInfo(String value) async {
|
|
isLoading.value = true;
|
|
await safeCall<UserInfoModel?>(
|
|
call: () async => await authRepository.getUserInfo(value),
|
|
onSuccess: (result) async {
|
|
if (result != null) {
|
|
await newSetupAuthDI(result.backend ?? '');
|
|
await tokenStorageService.saveApiKey(result.apiKey ?? '');
|
|
await tokenStorageService.saveBaseUrl(result.backend ?? '');
|
|
}
|
|
},
|
|
onError: (error, stackTrace) {
|
|
if (error is DioException) {
|
|
diChicken.get<DioErrorHandler>().handle(error);
|
|
}
|
|
captchaController.getCaptcha();
|
|
},
|
|
);
|
|
isLoading.value = false;
|
|
}
|
|
|
|
void initUserPassData() {
|
|
UserLocalModel? userPass = tokenStorageService.getUserPass(_module);
|
|
if (userPass != null) {
|
|
usernameController.value.text = userPass.username ?? '';
|
|
passwordController.value.text = userPass.password ?? '';
|
|
rememberMe.value = true;
|
|
}
|
|
}
|
|
}
|