2023-07-28 02:35:36 +00:00
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:developer';
|
|
|
|
import 'dart:io';
|
|
|
|
|
2023-09-01 03:22:48 +00:00
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
2023-07-28 02:35:36 +00:00
|
|
|
import 'package:unit2/model/passo/property_appraisal.dart';
|
|
|
|
import 'package:http/http.dart' as http;
|
2023-09-01 03:22:48 +00:00
|
|
|
import 'package:unit2/utils/request.dart';
|
|
|
|
import 'package:unit2/utils/urls.dart';
|
|
|
|
|
|
|
|
import '../../../model/passo/property_appraisal_edit.dart';
|
2023-07-28 02:35:36 +00:00
|
|
|
|
|
|
|
class PropertyAppraisalServices {
|
|
|
|
static final PropertyAppraisalServices _instance =
|
|
|
|
PropertyAppraisalServices();
|
|
|
|
static PropertyAppraisalServices get instance => _instance;
|
|
|
|
|
2023-09-01 03:22:48 +00:00
|
|
|
String xClientKey = "unitK3CQaXiWlPReDsBzmmwBZPd9Re1z";
|
|
|
|
String xClientKeySecret = "unitcYqAN7GGalyz";
|
|
|
|
|
|
|
|
Future<PropertyAppraisal> fetch() async {
|
|
|
|
final tempID = await SharedPreferences.getInstance();
|
|
|
|
print('sds');
|
|
|
|
print(tempID.getInt('tempid')! - 1);
|
|
|
|
final id = tempID.getInt('tempid')! - 1;
|
|
|
|
String path = Url.instance.propertyAppraisal();
|
|
|
|
Map<String, String> headers = {
|
|
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
|
|
'X-Client-Key': xClientKey,
|
|
|
|
'X-Client-Secret': xClientKeySecret
|
|
|
|
};
|
|
|
|
Map<String, String> params = {
|
|
|
|
"bldgappr_details_id": id.toString(),
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
http.Response response = await Request.instance
|
|
|
|
.getRequest(param: params, path: path, headers: headers);
|
|
|
|
print('Appraisal TEMPID');
|
|
|
|
print(response.body);
|
|
|
|
if (response.statusCode == 200) {
|
|
|
|
final jsonData = jsonDecode(response.body);
|
|
|
|
final dataList = jsonData['data'] as List<dynamic>;
|
|
|
|
final result =
|
|
|
|
PropertyAppraisal.fromJson(dataList[0] as Map<String, dynamic>);
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
throw Exception(response.reasonPhrase);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
throw e.toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<http.Response?> update(PropertyAppraisal appraisal, tempID) async {
|
|
|
|
String path = Url.instance.propertyAppraisal();
|
|
|
|
Map<String, String> headers = {
|
|
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
|
|
'X-Client-Key': xClientKey,
|
|
|
|
'X-Client-Secret': xClientKeySecret
|
|
|
|
};
|
|
|
|
Map<String, String> params = {
|
|
|
|
"bldgappr_details_id": tempID.toString(),
|
|
|
|
};
|
|
|
|
print(tempID);
|
|
|
|
http.Response? response;
|
|
|
|
try {
|
|
|
|
response = await Request.instance.putRequest(
|
|
|
|
path: path,
|
|
|
|
body: appraisal.toJson(),
|
|
|
|
headers: headers,
|
|
|
|
param: params);
|
|
|
|
} catch (e) {
|
|
|
|
log(e.toString());
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<PropertyAppraisalEdit> fetchEdit(id) async {
|
|
|
|
String path = Url.instance.propertyAppraisal();
|
|
|
|
Map<String, String> headers = {
|
|
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
|
|
'X-Client-Key': xClientKey,
|
|
|
|
'X-Client-Secret': xClientKeySecret
|
|
|
|
};
|
|
|
|
Map<String, String> params = {
|
|
|
|
"bldgappr_details_id": id.toString(),
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
http.Response response = await Request.instance
|
|
|
|
.getRequest(param: params, path: path, headers: headers);
|
|
|
|
print('Property_Apraisaledit');
|
|
|
|
print(response.statusCode);
|
|
|
|
if (response.statusCode == 200) {
|
|
|
|
final jsonData = jsonDecode(response.body);
|
|
|
|
final dataList = jsonData['data'] as List<dynamic>;
|
|
|
|
final result =
|
|
|
|
PropertyAppraisalEdit.fromJson(dataList[0] as Map<String, dynamic>);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
throw Exception(response.reasonPhrase);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
throw e.toString();
|
2023-07-28 02:35:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-01 03:22:48 +00:00
|
|
|
Future<http.Response?> updateAppraisal(
|
|
|
|
PropertyAppraisalEdit appraisal, tempID) async {
|
|
|
|
String path = Url.instance.propertyAppraisal();
|
|
|
|
Map<String, String> headers = {
|
|
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
|
|
'X-Client-Key': xClientKey,
|
|
|
|
'X-Client-Secret': xClientKeySecret
|
|
|
|
};
|
|
|
|
Map<String, String> params = {
|
|
|
|
"bldgappr_details_id": tempID,
|
|
|
|
};
|
|
|
|
print(tempID);
|
2023-07-28 02:35:36 +00:00
|
|
|
http.Response? response;
|
|
|
|
try {
|
2023-09-01 03:22:48 +00:00
|
|
|
response = await Request.instance.putRequest(
|
|
|
|
path: path,
|
|
|
|
body: appraisal.toJson(),
|
|
|
|
headers: headers,
|
|
|
|
param: params);
|
2023-07-28 02:35:36 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e.toString());
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
}
|