Commit f22d8895 authored by Shoaib's avatar Shoaib
Browse files

Fixed all the issues in v1.0

No related merge requests found
Showing with 44 additions and 19 deletions
+44 -19
...@@ -17,9 +17,9 @@ samples, guidance on mobile development, and a full API reference. ...@@ -17,9 +17,9 @@ samples, guidance on mobile development, and a full API reference.
## Configuration Details ## Configuration Details
* Flutter 2.10.3 • channel stable • https://github.com/flutter/flutter.git * Flutter 2.10.4 • channel stable • https://github.com/flutter/flutter.git
* Framework • revision 7e9793dee1 (2 weeks ago) • 2022-03-02 11:23:12 -0600 * Framework • revision c860cba910 (12 days ago) • 2022-03-25 00:23:12 -0500
* Engine • revision bd539267b4 * Engine • revision 57d3bac3dd
* Tools • Dart 2.16.1 • DevTools 2.9.2 * Tools • Dart 2.16.2 • DevTools 2.9.2
...@@ -15,4 +15,6 @@ class ApiUrl { ...@@ -15,4 +15,6 @@ class ApiUrl {
static const getAllForms = '$baseUrl/api/forms/getAllForms?isDetail=true'; static const getAllForms = '$baseUrl/api/forms/getAllForms?isDetail=true';
static const fileUpload = '$baseUrl/api/forms/fileUpload'; static const fileUpload = '$baseUrl/api/forms/fileUpload';
static const deleteFile = '$baseUrl/api/forms/deleteCloudFile'; static const deleteFile = '$baseUrl/api/forms/deleteCloudFile';
static const deleteDeviceToken =
'$baseUrl/api/user/deleteDeviceToken?deviceId=';
} }
const String appVersion = '1.0'; const String appVersion = '1.3';
const String appName = 'UP SMF'; const String appName = 'UP SMF';
const int inspectorRoleId = 2093; const int inspectorRoleId = 2093;
...@@ -52,6 +52,7 @@ class Storage { ...@@ -52,6 +52,7 @@ class Storage {
static const String lastname = 'smf_user_last_name'; static const String lastname = 'smf_user_last_name';
static const String authtoken = 'smf_user_auth_token'; static const String authtoken = 'smf_user_auth_token';
static const String applicationId = 'smf_application_id'; static const String applicationId = 'smf_application_id';
static const String deviceIdentifier = 'smf_device_identifier';
} }
class Inspector { class Inspector {
......
...@@ -10,3 +10,4 @@ void main() { ...@@ -10,3 +10,4 @@ void main() {
}, },
)); ));
} }
\ No newline at end of file
...@@ -133,9 +133,10 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver { ...@@ -133,9 +133,10 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver {
// await Future.delayed(const Duration(milliseconds: 10)); // await Future.delayed(const Duration(milliseconds: 10));
if (isInternetConnected) { if (isInternetConnected) {
_validateUser(); _validateUser();
_getForms(); await _getForms();
_syncApplications(); await _syncApplications();
} }
_allApplications = _allApplications =
await Provider.of<ApplicationRespository>(context, listen: false) await Provider.of<ApplicationRespository>(context, listen: false)
.getApplications(isInternetConnected); .getApplications(isInternetConnected);
......
...@@ -100,7 +100,9 @@ class ApplicationRespository with ChangeNotifier { ...@@ -100,7 +100,9 @@ class ApplicationRespository with ChangeNotifier {
bool response = false; bool response = false;
List<Map> attachments = []; List<Map> attachments = [];
try { try {
// await OfflineModel.deleteInspections();
List<Map> rawInspections = await OfflineModel.getInspections(); List<Map> rawInspections = await OfflineModel.getInspections();
// print(rawInspections);
for (var inspection in rawInspections) { for (var inspection in rawInspections) {
Map inspectionData = jsonDecode(inspection['inspection_data']); Map inspectionData = jsonDecode(inspection['inspection_data']);
attachments = attachments =
...@@ -118,11 +120,14 @@ class ApplicationRespository with ChangeNotifier { ...@@ -118,11 +120,14 @@ class ApplicationRespository with ChangeNotifier {
consents.add(inspectionData); consents.add(inspectionData);
} }
} }
// print('inspections: ' + inspections.toString());
// print('concents: ' + consents.toString());
if (inspections.isNotEmpty) { if (inspections.isNotEmpty) {
final request1 = final request1 =
await ApplicationService.submitBulkInspection(inspections); await ApplicationService.submitBulkInspection(inspections);
data1 = json.decode(request1.body); data1 = json.decode(request1.body);
} }
if (consents.isNotEmpty) { if (consents.isNotEmpty) {
final request2 = await ApplicationService.submitBulkConsent(consents); final request2 = await ApplicationService.submitBulkConsent(consents);
data2 = json.decode(request2.body); data2 = json.decode(request2.body);
...@@ -154,7 +159,7 @@ class ApplicationRespository with ChangeNotifier { ...@@ -154,7 +159,7 @@ class ApplicationRespository with ChangeNotifier {
if (!internetConnected) { if (!internetConnected) {
Map<String, Object> applicationData = { Map<String, Object> applicationData = {
'inspector_type': Inspector.assistantInspector, 'inspector_type': Inspector.assistantInspector,
'inspection_data': data 'inspection_data': json.encode(data)
}; };
await OfflineModel.saveInspection(applicationData); await OfflineModel.saveInspection(applicationData);
......
...@@ -8,6 +8,7 @@ import 'package:smf_mobile/landing_page.dart'; ...@@ -8,6 +8,7 @@ import 'package:smf_mobile/landing_page.dart';
import 'package:smf_mobile/models/login_model.dart'; import 'package:smf_mobile/models/login_model.dart';
import 'package:flutter_secure_storage/flutter_secure_storage.dart'; import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:smf_mobile/services/login_service.dart'; import 'package:smf_mobile/services/login_service.dart';
import 'package:smf_mobile/util/helper.dart';
// import 'package:smf_mobile/util/notification_helper.dart'; // import 'package:smf_mobile/util/notification_helper.dart';
class LoginRespository with ChangeNotifier { class LoginRespository with ChangeNotifier {
...@@ -74,6 +75,7 @@ class LoginRespository with ChangeNotifier { ...@@ -74,6 +75,7 @@ class LoginRespository with ChangeNotifier {
_storage.write(key: Storage.firstname, value: _loginDetails.firstName); _storage.write(key: Storage.firstname, value: _loginDetails.firstName);
_storage.write(key: Storage.lastname, value: _loginDetails.lastName); _storage.write(key: Storage.lastname, value: _loginDetails.lastName);
_storage.write(key: Storage.authtoken, value: _loginDetails.authToken); _storage.write(key: Storage.authtoken, value: _loginDetails.authToken);
_storage.write(key: Storage.deviceIdentifier, value: identifier);
_firebaseMessaging.getToken().then((token) async { _firebaseMessaging.getToken().then((token) async {
final request = await LoginService.updateUserDeviceToken( final request = await LoginService.updateUserDeviceToken(
token.toString(), token.toString(),
...@@ -92,16 +94,16 @@ class LoginRespository with ChangeNotifier { ...@@ -92,16 +94,16 @@ class LoginRespository with ChangeNotifier {
} }
void _configureMessaging(context) async { void _configureMessaging(context) async {
NotificationSettings settings = await _firebaseMessaging.requestPermission( // NotificationSettings settings = await _firebaseMessaging.requestPermission(
alert: true, // alert: true,
announcement: false, // announcement: false,
badge: true, // badge: true,
carPlay: false, // carPlay: false,
criticalAlert: false, // criticalAlert: false,
provisional: false, // provisional: false,
sound: true, // sound: true,
); // );
print('User granted permission: ${settings.authorizationStatus}'); // print('User granted permission: ${settings.authorizationStatus}');
FirebaseMessaging.onBackgroundMessage(firebaseMessagingBackgroundHandler); FirebaseMessaging.onBackgroundMessage(firebaseMessagingBackgroundHandler);
...@@ -114,6 +116,10 @@ class LoginRespository with ChangeNotifier { ...@@ -114,6 +116,10 @@ class LoginRespository with ChangeNotifier {
} }
Future<void> clearData() async { Future<void> clearData() async {
String deviceIdentifier = await Helper.getUser(Storage.deviceIdentifier);
// print(deviceIdentifier);
await LoginService.deleteDeviceToken(deviceIdentifier);
// print(request.body);
await _storage.deleteAll(); await _storage.deleteAll();
} }
......
...@@ -64,7 +64,7 @@ class ApplicationService extends BaseService { ...@@ -64,7 +64,7 @@ class ApplicationService extends BaseService {
final response = await http.post(Uri.parse(ApiUrl.submitBulkConcent), final response = await http.post(Uri.parse(ApiUrl.submitBulkConcent),
headers: headers, body: body); headers: headers, body: body);
// developer.log(ApiUrl.submitInspection); // developer.log(ApiUrl.submitBulkConcent);
// developer.log(body); // developer.log(body);
// developer.log(response.body); // developer.log(response.body);
return response; return response;
......
...@@ -61,4 +61,13 @@ class LoginService extends BaseService { ...@@ -61,4 +61,13 @@ class LoginService extends BaseService {
headers: headers, body: body); headers: headers, body: body);
return response; return response;
} }
static Future<dynamic> deleteDeviceToken(String identifier) async {
Map<String, String> headers = await BaseService.getHeaders();
final response = await http.delete(
Uri.parse(ApiUrl.deleteDeviceToken + identifier),
headers: headers,
);
return response;
}
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment