Cherry pick Rooms API
This commit is contained in:
parent
87c719e9e6
commit
cb8bd40a7e
@ -4,36 +4,23 @@ class RoomsApi extends ApiController{
|
|||||||
|
|
||||||
public function default(){
|
public function default(){
|
||||||
//$this->requireAuth();
|
//$this->requireAuth();
|
||||||
$rooms = [];
|
$response = [];
|
||||||
$roomsData = RoomManager::getAllRooms();
|
$roomIds = [];
|
||||||
|
$roomsData = RoomManager::getRoomsDefault();
|
||||||
|
|
||||||
|
foreach ($roomsData as $roomKey => $room) {
|
||||||
|
$roomIds[] = $room['room_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$subDevicesData = SubDeviceManager::getSubdevicesByRoomIds($roomIds);
|
||||||
|
|
||||||
foreach ($roomsData as $roomKey => $roomData) {
|
foreach ($roomsData as $roomKey => $roomData) {
|
||||||
|
$response[] = [
|
||||||
$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'],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$rooms[] = [
|
|
||||||
'room_id' => $roomData['room_id'],
|
'room_id' => $roomData['room_id'],
|
||||||
'name' => $roomData['name'],
|
'name' => $roomData['name'],
|
||||||
'widgets' => $widgets,
|
'widgets' => isset($subDevicesData[$roomData['room_id']]) ? $subDevicesData[$roomData['room_id']] : [],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
$this->response($rooms);
|
$this->response($response);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user