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-04-05 00:54:24 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2023-08-11 08:38:26 +00:00
|
|
|
import 'package:unit2/model/login_data/user_info/assigned_area.dart';
|
|
|
|
import 'package:unit2/model/login_data/user_info/role.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-04-05 00:54:24 +00:00
|
|
|
import 'package:unit2/utils/global.dart';
|
2023-01-18 07:54:44 +00:00
|
|
|
|
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-04-05 00:54:24 +00:00
|
|
|
bool save = false;
|
2023-06-06 06:54:51 +00:00
|
|
|
String? uuid;
|
2023-08-11 08:38:26 +00:00
|
|
|
List<AssignedArea> establishmentPointPersonAssignedAreas = [];
|
2023-01-18 07:54:44 +00:00
|
|
|
UserBloc() : super(UserInitial()) {
|
2023-04-13 08:45:19 +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());
|
2023-06-06 06:54:51 +00:00
|
|
|
save = false;
|
2023-04-13 08:45:19 +00:00
|
|
|
if (_versionInfo == null) {
|
|
|
|
VersionInfo versionInfo = await AuthService.instance.getVersionInfo();
|
|
|
|
_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-04-05 00:54:24 +00:00
|
|
|
final String? saved = CREDENTIALS?.get('saved');
|
|
|
|
final String? username = CREDENTIALS?.get('username');
|
|
|
|
final String? password = CREDENTIALS?.get('password');
|
|
|
|
if (saved != null) {
|
|
|
|
save = true;
|
|
|
|
add(UserLogin(username: username, password: password));
|
|
|
|
} else {
|
|
|
|
emit(VersionLoaded(
|
2023-04-13 08:45:19 +00:00
|
|
|
versionInfo: _versionInfo,
|
|
|
|
apkVersion: _apkVersion,
|
|
|
|
username: null,
|
|
|
|
password: null));
|
2023-04-05 00:54:24 +00:00
|
|
|
}
|
2023-01-18 07:54:44 +00:00
|
|
|
} catch (e) {
|
|
|
|
emit(UserError(
|
|
|
|
message: e.toString(),
|
|
|
|
));
|
|
|
|
}
|
2023-01-23 03:02:59 +00:00
|
|
|
});
|
2023-04-13 08:45:19 +00:00
|
|
|
////Loading the current version of the app
|
2023-01-23 08:23:20 +00:00
|
|
|
on<LoadVersion>((event, emit) {
|
2023-04-13 08:45:19 +00:00
|
|
|
emit(VersionLoaded(
|
|
|
|
versionInfo: _versionInfo,
|
|
|
|
apkVersion: _apkVersion,
|
|
|
|
username: event.username,
|
|
|
|
password: event.password));
|
2023-01-23 08:23:20 +00:00
|
|
|
});
|
2023-04-13 08:45:19 +00:00
|
|
|
////userlogin
|
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']);
|
2023-08-11 08:38:26 +00:00
|
|
|
Role? estPointPerson = userData.user?.login?.user?.roles?.firstWhere(
|
|
|
|
(element) =>
|
|
|
|
element?.name?.toLowerCase() == "establishment point-person",
|
|
|
|
);
|
|
|
|
if (estPointPerson != null) {
|
|
|
|
estPointPerson.assignedArea!.forEach((element) {
|
|
|
|
establishmentPointPersonAssignedAreas.add(element!);
|
|
|
|
});
|
|
|
|
}
|
2023-03-21 04:57:38 +00:00
|
|
|
emit(UserLoggedIn(
|
2023-08-11 08:38:26 +00:00
|
|
|
estPersonAssignedArea: establishmentPointPersonAssignedAreas,
|
2023-04-13 08:45:19 +00:00
|
|
|
userData: userData,
|
|
|
|
success: true,
|
|
|
|
message: response['message'],
|
|
|
|
savedCredentials: save));
|
2023-04-05 00:54:24 +00:00
|
|
|
} else {
|
|
|
|
emit(UserLoggedIn(
|
2023-08-11 08:38:26 +00:00
|
|
|
estPersonAssignedArea: establishmentPointPersonAssignedAreas,
|
2023-04-13 08:45:19 +00:00
|
|
|
userData: null,
|
|
|
|
success: false,
|
|
|
|
message: response['message'],
|
|
|
|
savedCredentials: save));
|
2023-03-21 04:57:38 +00:00
|
|
|
}
|
|
|
|
} on TimeoutException catch (_) {
|
|
|
|
emit(InternetTimeout(message: timeoutError));
|
|
|
|
} on SocketException catch (_) {
|
2023-02-10 02:02:35 +00:00
|
|
|
emit(InternetTimeout(message: timeoutError));
|
2023-08-11 08:38:26 +00:00
|
|
|
} on Error catch (e) {
|
|
|
|
emit(LoginErrorState(message: e.toString()));
|
2023-01-23 03:02:59 +00:00
|
|
|
}
|
|
|
|
});
|
2023-01-23 08:23:20 +00:00
|
|
|
on<UuidLogin>((event, emit) async {
|
|
|
|
try {
|
2023-08-11 08:38:26 +00:00
|
|
|
Map<dynamic, dynamic> response = await AuthService.instance
|
2023-01-23 08:23:20 +00:00
|
|
|
.qrLogin(uuid: event.uuid, password: event.password);
|
2023-08-11 08:38:26 +00:00
|
|
|
if (response['status'] == true) {
|
2023-06-06 06:54:51 +00:00
|
|
|
UserData userData = UserData.fromJson(response['data']);
|
|
|
|
emit(UserLoggedIn(
|
2023-08-11 08:38:26 +00:00
|
|
|
estPersonAssignedArea: establishmentPointPersonAssignedAreas,
|
2023-06-06 06:54:51 +00:00
|
|
|
userData: userData,
|
|
|
|
success: true,
|
|
|
|
message: response['message'],
|
|
|
|
savedCredentials: save));
|
|
|
|
} else {
|
|
|
|
emit(UserLoggedIn(
|
2023-08-11 08:38:26 +00:00
|
|
|
estPersonAssignedArea: establishmentPointPersonAssignedAreas,
|
2023-06-06 06:54:51 +00:00
|
|
|
userData: null,
|
|
|
|
success: false,
|
|
|
|
message: response['message'],
|
|
|
|
savedCredentials: save));
|
|
|
|
}
|
2023-08-11 08:38:26 +00:00
|
|
|
emit(UserLoggedIn(
|
|
|
|
estPersonAssignedArea: establishmentPointPersonAssignedAreas,
|
|
|
|
userData: _userData,
|
|
|
|
savedCredentials: save));
|
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));
|
2023-08-11 08:38:26 +00:00
|
|
|
} on Error catch (e) {
|
|
|
|
emit(LoginErrorState(message: e.toString()));
|
2023-01-23 08:23:20 +00:00
|
|
|
}
|
|
|
|
});
|
2023-01-23 03:02:59 +00:00
|
|
|
on<LoadLoggedInUser>((event, emit) {
|
2023-08-11 08:38:26 +00:00
|
|
|
emit(UserLoggedIn(
|
|
|
|
estPersonAssignedArea: establishmentPointPersonAssignedAreas,
|
|
|
|
userData: _userData,
|
|
|
|
savedCredentials: save));
|
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-06-06 06:54:51 +00:00
|
|
|
uuid = result.rawContent.toString();
|
|
|
|
emit(UuidLoaded(uuid: uuid!));
|
2023-01-23 03:02:59 +00:00
|
|
|
}
|
2023-08-11 08:38:26 +00:00
|
|
|
});
|
|
|
|
on<LoadUuid>((event, emit) {
|
|
|
|
emit(UuidLoaded(uuid: uuid!));
|
2023-01-18 07:54:44 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|