geo-smart-app/lib/model/position.dart

87 lines
2.2 KiB
Dart
Raw Normal View History

2019-10-31 15:51:22 +00:00
import 'dart:convert';
import 'package:geo_app/config.dart';
import 'package:geo_app/model/response.dart';
2019-12-16 00:18:09 +00:00
import 'package:geo_app/model/unique_id_model.dart';
2019-10-31 15:51:22 +00:00
import 'package:http/http.dart' as http;
import 'package:shared_preferences/shared_preferences.dart';
class Position {
String id;
String type;
String lat;
String lng;
Position({this.id, this.type, this.lat, this.lng});
Position.fromJson(Map<String, dynamic> json) {
id = json['id'];
type = json['type'];
lat = json['lat'];
lng = json['lng'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['type'] = this.type;
data['lat'] = this.lat;
data['lng'] = this.lng;
return data;
}
static Future<Position> getPosition() async {
SharedPreferences sp = await SharedPreferences.getInstance();
String keyName = "unique_id";
String spId = (sp.getString(keyName) ?? null);
Position position = new Position(
id: spId,
type: "user",
lat: "0.0",
lng: "0.0",
);
if (spId == null) {
2019-12-16 00:18:09 +00:00
final response = await http.get(Config.api + "/id/get/unique");
2019-10-31 15:51:22 +00:00
if (response.statusCode == 200) {
2019-12-16 00:18:09 +00:00
position.id = UniqueIDModel.fromJson(json.decode(response.body)).id;
2019-10-31 15:51:22 +00:00
} else {
throw Exception("Something Error");
}
sp.setString(keyName, position.id);
}
return position;
}
bool isValid() {
return id != null;
}
2019-12-16 00:18:09 +00:00
Future<ResponseModel> sendPosition() async {
ResponseModel result;
2019-10-31 15:51:22 +00:00
final response = await http.post(
2019-12-16 00:18:09 +00:00
Config.api + "/point/set",
2019-10-31 15:51:22 +00:00
body: json.encode(this.toJson()),
);
if (response.statusCode == 200) {
2019-12-16 00:18:09 +00:00
result = ResponseModel.fromJson(json.decode(response.body));
} else {
throw Exception("Something Error");
}
return result;
}
Future<ResponseModel> stopPosition() async {
ResponseModel result;
final response = await http.post(
Config.api + "/point/unset",
body: json.encode(this.toJson()),
);
if (response.statusCode == 200) {
result = ResponseModel.fromJson(json.decode(response.body));
2019-10-31 15:51:22 +00:00
} else {
throw Exception("Something Error");
}
return result;
}
}