PHP_SMART_HOME_V3/app/api/RoomsApi.php

35 lines
866 B
PHP
Raw Normal View History

2020-05-15 20:45:31 +00:00
<?php
class RoomsApi extends ApiController{
2020-07-20 11:08:17 +00:00
2020-05-15 20:45:31 +00:00
public function default(){
2020-07-28 09:29:36 +00:00
$this->requireAuth();
2020-05-16 20:11:20 +00:00
$response = [];
$roomIds = [];
$roomsData = RoomManager::getRoomsDefault();
2020-07-20 11:08:17 +00:00
2020-05-16 20:11:20 +00:00
foreach ($roomsData as $roomKey => $room) {
$roomIds[] = $room['room_id'];
}
2020-07-20 11:08:17 +00:00
2020-05-16 20:11:20 +00:00
$subDevicesData = SubDeviceManager::getSubdevicesByRoomIds($roomIds);
2020-07-20 11:08:17 +00:00
2020-05-16 20:11:20 +00:00
foreach ($roomsData as $roomKey => $roomData) {
2020-07-20 11:08:17 +00:00
if ($roomData['device_count'] == 0) continue;
$response[] = [
'room_id' => $roomData['room_id'],
'name' => $roomData['name'],
'widgets' => isset($subDevicesData[$roomData['room_id']]) ? $subDevicesData[$roomData['room_id']] : [],
];
2020-05-15 20:45:31 +00:00
}
2020-05-16 20:11:20 +00:00
$this->response($response);
2020-05-15 20:45:31 +00:00
}
2020-07-20 11:08:17 +00:00
2020-05-24 17:35:19 +00:00
public function update($roomId){
//$this->requireAuth();
2020-07-20 11:08:17 +00:00
2020-05-24 17:44:58 +00:00
$subDevicesData = SubDeviceManager::getSubdevicesByRoomIds([$roomId]);
$this->response($subDevicesData);
2020-05-24 17:35:19 +00:00
}
2020-05-15 20:45:31 +00:00
}