passo_mobile_app/lib/sevices/passo/land/land_other_improvements.dart

87 lines
2.6 KiB
Dart

import 'dart:convert';
import 'dart:developer';
import 'dart:io';
import 'package:http/http.dart' as http;
import 'package:unit2/model/passo/land_appr.dart';
import 'package:unit2/model/passo/other_improvements.dart';
import 'package:unit2/utils/request.dart';
import '../../../utils/urls.dart';
class OtherImprovementServices {
static final OtherImprovementServices _instance = OtherImprovementServices();
static OtherImprovementServices get instance => _instance;
String xClientKey = "unitK3CQaXiWlPReDsBzmmwBZPd9Re1z";
String xClientKeySecret = "unitcYqAN7GGalyz";
Future<List<OtherImprovements>> fetch(tempID) async {
String path = Url.instance.getOtherImprovements();
Map<String, String> headers = {
'Content-Type': 'application/json; charset=UTF-8',
'X-Client-Key': xClientKey,
'X-Client-Secret': xClientKeySecret
};
Map<String, String> params = {
"landappr_details_id": tempID.toString(),
};
try {
http.Response response = await Request.instance
.getRequest(param: params, path: path, headers: headers);
if (response.statusCode == 200) {
final List result = jsonDecode(response.body)['data'];
print(result);
return result.map(((e) => OtherImprovements.fromJson(e))).toList();
} else {
throw Exception(response.reasonPhrase);
}
} catch (e) {
throw e.toString();
}
}
Future<http.Response?> add(OtherImprovements items) async {
String path = Url.instance.getOtherImprovements();
Map<String, String> headers = {
'Content-Type': 'application/json; charset=UTF-8',
'X-Client-Key': xClientKey,
'X-Client-Secret': xClientKeySecret
};
http.Response? response;
try {
response = await Request.instance.postRequest(
param: {}, path: path, body: items.toJson(), headers: headers);
} catch (e) {
log(e.toString());
}
return response;
}
Future<http.Response> remove(id) async {
String path = Url.instance.getOtherImprovements();
Map<String, String> headers = {
'Content-Type': 'application/json; charset=UTF-8',
'X-Client-Key': xClientKey,
'X-Client-Secret': xClientKeySecret
};
Map<String, String> params = {
"id": id.toString(),
};
try {
http.Response response = await Request.instance
.deleteRequest(path: path, headers: headers, body: {}, param: params);
print(id);
if (response.statusCode == 200) {
print(response.body);
return response;
} else {
throw Exception(response.reasonPhrase);
}
} catch (e) {
throw e.toString();
}
}
}