mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
100 lines
3.0 KiB
Dart
100 lines
3.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_web/pages/device_managment/all_devices/models/device_status.dart';
|
|
import 'package:syncrow_web/pages/device_managment/all_devices/models/devices_model.dart';
|
|
import 'package:syncrow_web/pages/visitor_password/model/device_model.dart';
|
|
import 'package:syncrow_web/services/api/http_service.dart';
|
|
import 'package:syncrow_web/utils/constants/api_const.dart';
|
|
|
|
class DevicesManagementApi {
|
|
Future<List<AllDevicesModel>> fetchDevices() async {
|
|
try {
|
|
final response = await HTTPService().get(
|
|
path: ApiEndpoints.getAllDevices,
|
|
showServerMessage: true,
|
|
expectedResponseModel: (json) {
|
|
List<dynamic> jsonData = json;
|
|
List<AllDevicesModel> devicesList = jsonData.map((jsonItem) {
|
|
return AllDevicesModel.fromJson(jsonItem);
|
|
}).toList();
|
|
return devicesList;
|
|
},
|
|
);
|
|
return response;
|
|
} catch (e) {
|
|
debugPrint('Error fetching $e');
|
|
return [];
|
|
}
|
|
}
|
|
|
|
Future<DeviceStatus> getDeviceStatus(String uuid) async {
|
|
try {
|
|
final response = await HTTPService().get(
|
|
path: ApiEndpoints.getDeviceStatus.replaceAll('{uuid}', uuid),
|
|
showServerMessage: true,
|
|
expectedResponseModel: (json) {
|
|
return DeviceStatus.fromJson(json);
|
|
},
|
|
);
|
|
return response;
|
|
} catch (e) {
|
|
debugPrint('Error fetching $e');
|
|
return DeviceStatus(
|
|
productUuid: '',
|
|
productType: '',
|
|
status: [],
|
|
);
|
|
}
|
|
}
|
|
|
|
//deviceControl
|
|
Future<bool> deviceControl(String uuid, Status status) async {
|
|
try {
|
|
final response = await HTTPService().post(
|
|
path: ApiEndpoints.deviceControl.replaceAll('{uuid}', uuid),
|
|
body: status.toMap(),
|
|
showServerMessage: true,
|
|
expectedResponseModel: (json) {
|
|
return json['success'] ?? false;
|
|
},
|
|
);
|
|
return response;
|
|
} catch (e) {
|
|
debugPrint('Error fetching $e');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static Future<List<DeviceModel>> getDevicesByGatewayId(
|
|
String gatewayId) async {
|
|
final response = await HTTPService().get(
|
|
path: ApiEndpoints.gatewayApi.replaceAll('{gatewayUuid}', gatewayId),
|
|
showServerMessage: false,
|
|
expectedResponseModel: (json) {
|
|
List<DeviceModel> devices = [];
|
|
if (json == null || json.isEmpty || json == []) {
|
|
return devices;
|
|
}
|
|
for (var device in json['devices']) {
|
|
devices.add(DeviceModel.fromJson(device));
|
|
}
|
|
return devices;
|
|
},
|
|
);
|
|
return response;
|
|
}
|
|
|
|
static Future<bool> openDoorLock(String deviceId) async {
|
|
final response = await HTTPService().post(
|
|
path: ApiEndpoints.openDoorLock.replaceAll('{doorLockUuid}', deviceId),
|
|
showServerMessage: false,
|
|
expectedResponseModel: (json) {
|
|
return json['success'] ?? false;
|
|
},
|
|
);
|
|
return response;
|
|
}
|
|
|
|
//https://syncrow-dev.azurewebsites.net/device/report-logs/7e97c359-e822-4507-ac1f-e0ff96b0ca29?code=factory_reset
|
|
|
|
}
|