2023-02-10 02:02:35 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:io';
|
|
|
|
|
2023-01-23 03:02:59 +00:00
|
|
|
import 'package:barcode_scan2/barcode_scan2.dart';
|
2023-01-18 07:54:44 +00:00
|
|
|
import 'package:bloc/bloc.dart';
|
|
|
|
import 'package:equatable/equatable.dart';
|
2023-01-19 05:21:12 +00:00
|
|
|
import 'package:unit2/model/login_data/user_info/user_data.dart';
|
2023-01-18 07:54:44 +00:00
|
|
|
import 'package:unit2/model/login_data/version_info.dart';
|
2023-01-24 01:36:51 +00:00
|
|
|
import 'package:unit2/screens/unit2/login/functions/get_app_version.dart';
|
2023-01-18 07:54:44 +00:00
|
|
|
import 'package:unit2/sevices/login_service/auth_service.dart';
|
|
|
|
|
2023-01-23 03:02:59 +00:00
|
|
|
import '../../utils/scanner.dart';
|
2023-02-10 02:02:35 +00:00
|
|
|
import '../../utils/text_container.dart';
|
2023-01-23 03:02:59 +00:00
|
|
|
|
2023-01-18 07:54:44 +00:00
|
|
|
part 'user_event.dart';
|
|
|
|
part 'user_state.dart';
|
|
|
|
|
|
|
|
class UserBloc extends Bloc<UserEvent, UserState> {
|
2023-01-23 03:02:59 +00:00
|
|
|
UserData? _userData;
|
2023-01-23 08:23:20 +00:00
|
|
|
VersionInfo? _versionInfo;
|
2023-02-10 02:02:35 +00:00
|
|
|
String? _apkVersion;
|
2023-01-18 07:54:44 +00:00
|
|
|
UserBloc() : super(UserInitial()) {
|
2023-01-19 05:21:12 +00:00
|
|
|
// this event is called when opening the app to check if
|
|
|
|
// there is new app version
|
2023-01-18 07:54:44 +00:00
|
|
|
on<GetApkVersion>((event, emit) async {
|
|
|
|
try {
|
|
|
|
emit(SplashScreen());
|
|
|
|
VersionInfo versionInfo = await AuthService.instance.getVersionInfo();
|
2023-01-23 08:23:20 +00:00
|
|
|
_versionInfo = versionInfo;
|
2023-01-24 01:36:51 +00:00
|
|
|
String apkVersion = await getAppVersion();
|
2023-02-10 02:02:35 +00:00
|
|
|
_apkVersion = apkVersion;
|
2023-03-21 04:57:38 +00:00
|
|
|
emit(VersionLoaded(versionInfo: _versionInfo, apkVersion: _apkVersion));
|
2023-01-18 07:54:44 +00:00
|
|
|
} catch (e) {
|
|
|
|
emit(UserError(
|
|
|
|
message: e.toString(),
|
|
|
|
));
|
|
|
|
}
|
2023-01-23 03:02:59 +00:00
|
|
|
});
|
2023-03-21 04:57:38 +00:00
|
|
|
//Loading the current version of the app
|
2023-01-23 08:23:20 +00:00
|
|
|
on<LoadVersion>((event, emit) {
|
2023-03-21 04:57:38 +00:00
|
|
|
emit(VersionLoaded(versionInfo: _versionInfo, apkVersion: _apkVersion));
|
2023-01-23 08:23:20 +00:00
|
|
|
});
|
2023-03-21 04:57:38 +00:00
|
|
|
|
2023-01-23 03:02:59 +00:00
|
|
|
on<UserLogin>((event, emit) async {
|
|
|
|
try {
|
2023-03-21 04:57:38 +00:00
|
|
|
Map<dynamic, dynamic> response = await AuthService.instance
|
2023-01-23 03:02:59 +00:00
|
|
|
.webLogin(username: event.username, password: event.password);
|
2023-03-21 04:57:38 +00:00
|
|
|
if (response['status'] == true) {
|
|
|
|
UserData userData = UserData.fromJson(response['data']);
|
|
|
|
emit(UserLoggedIn(
|
|
|
|
userData: userData,
|
|
|
|
success: true,
|
|
|
|
message: response['message']));
|
|
|
|
}else{
|
|
|
|
emit(UserLoggedIn(
|
|
|
|
userData: null,
|
|
|
|
success: false,
|
|
|
|
message: response['message']));
|
|
|
|
}
|
|
|
|
} on TimeoutException catch (_) {
|
|
|
|
emit(InternetTimeout(message: timeoutError));
|
|
|
|
} on SocketException catch (_) {
|
2023-02-10 02:02:35 +00:00
|
|
|
emit(InternetTimeout(message: timeoutError));
|
2023-01-23 03:02:59 +00:00
|
|
|
}
|
|
|
|
});
|
2023-01-23 08:23:20 +00:00
|
|
|
on<UuidLogin>((event, emit) async {
|
|
|
|
try {
|
|
|
|
UserData? userData = await AuthService.instance
|
|
|
|
.qrLogin(uuid: event.uuid, password: event.password);
|
|
|
|
_userData = userData;
|
|
|
|
emit(UserLoggedIn(userData: _userData));
|
2023-02-10 02:02:35 +00:00
|
|
|
} on TimeoutException catch (_) {
|
|
|
|
emit(InternetTimeout(message: timeoutError));
|
2023-03-21 04:57:38 +00:00
|
|
|
} on SocketException catch (_) {
|
|
|
|
emit(InternetTimeout(message: timeoutError));
|
|
|
|
} on Error catch (_) {
|
2023-02-10 02:02:35 +00:00
|
|
|
emit(InvalidCredentials(message: "Invalid username or password"));
|
2023-01-23 08:23:20 +00:00
|
|
|
}
|
|
|
|
});
|
2023-01-23 03:02:59 +00:00
|
|
|
on<LoadLoggedInUser>((event, emit) {
|
2023-01-23 05:46:09 +00:00
|
|
|
emit(UserLoggedIn(userData: _userData));
|
2023-01-23 03:02:59 +00:00
|
|
|
});
|
|
|
|
on<GetUuid>((event, emit) async {
|
|
|
|
ScanResult result = await QRCodeBarCodeScanner.instance.scanner();
|
2023-01-23 05:46:09 +00:00
|
|
|
if (result.rawContent.toString().isNotEmpty) {
|
2023-01-23 03:02:59 +00:00
|
|
|
emit(UuidLoaded(uuid: result.rawContent.toString()));
|
|
|
|
}
|
2023-01-18 07:54:44 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|