Rooms API
This commit is contained in:
parent
26dab209bd
commit
1070d8036c
@ -3,11 +3,34 @@
|
|||||||
class RoomsApi extends ApiController{
|
class RoomsApi extends ApiController{
|
||||||
|
|
||||||
public function default(){
|
public function default(){
|
||||||
$this->requireAuth();
|
//$this->requireAuth();
|
||||||
$response = [];
|
$rooms = [];
|
||||||
|
$roomsData = RoomManager::getAllRooms();
|
||||||
|
foreach ($roomsData as $roomKey => $roomData) {
|
||||||
|
$widgets = [];
|
||||||
|
$devicesData = DeviceManager::getAllDevicesInRoom($roomData['room_id']);
|
||||||
|
foreach ($devicesData as $deviceKey => $deviceData) {
|
||||||
|
$subDevicesData = SubDeviceManager::getAllSubDevices($deviceData['device_id']);
|
||||||
|
foreach ($subDevicesData as $subDeviceKey => $subDeviceData) {
|
||||||
|
$lastRecord = RecordManager::getLastRecord($subDeviceData['subdevice_id']);
|
||||||
|
$widgets[] = [
|
||||||
|
'subdevice_id' => $subDeviceData['subdevice_id'],
|
||||||
|
'device_id' => $deviceData['device_id'],
|
||||||
|
'name' => $deviceData['name'],
|
||||||
|
'type' => $subDeviceData['type'],
|
||||||
|
'icon' => $deviceData['icon'],
|
||||||
|
'value' => $lastRecord['value'],
|
||||||
|
'unit' => $subDeviceData['unit'],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: process the request
|
$rooms[] = [
|
||||||
|
'room_id' => $roomData['room_id'],
|
||||||
$this->response($response);
|
'name' => $roomData['name'],
|
||||||
|
'widgets' => $widgets,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
$this->response($rooms);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user