mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-10 01:35:50 +00:00
22 lines
750 B
Dart
22 lines
750 B
Dart
import 'dart:convert';
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:leg_barkr_app/model/metrics_response.dart';
|
|
import 'package:leg_barkr_app/utils/endpoints.dart' as Endpoints;
|
|
|
|
class MetricsService {
|
|
Future<MetricsResponse> getMetricsSummary(String deviceId, String sessionToken) async {
|
|
final response = await http.get(
|
|
Uri.parse(Endpoints.getMetricsSummary),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
'Authorization': sessionToken,
|
|
'Device-ID': deviceId,
|
|
},
|
|
);
|
|
if (response.statusCode == 200) {
|
|
return MetricsResponse.fromJson(jsonDecode(response.body));
|
|
} else {
|
|
return MetricsResponse(0, 0, 0, 0, 0, 0, 0, 0, 0);
|
|
}
|
|
}
|
|
} |