1
0
mirror of https://github.com/beestat/app.git synced 2025-05-23 18:04:14 -04:00

Added ability to manually manage thermostats

This commit is contained in:
Jon Ziebell 2025-01-31 21:57:33 -05:00
parent 71694b5a1d
commit 41fe96502e
2 changed files with 21 additions and 82 deletions

View File

@ -119,83 +119,7 @@ class ecobee_sensor extends cora\crud {
*/
];
// Get a list of all registered thermostats.
$response = $this->api(
'ecobee',
'ecobee_api',
[
'method' => 'GET',
'endpoint' => 'thermostat',
'arguments' => [
'body' => json_encode([
'selection' => array_merge(
[
'selectionType' => 'registered',
'selectionMatch' => ''
],
$include
)
])
]
]
);
$registered_identifiers = [];
foreach($response['thermostatList'] as $api_thermostat) {
$registered_identifiers[] = $api_thermostat['identifier'];
}
// Get a list of manually added thermostats.
$manual_ecobee_thermostats = $this->api(
'ecobee_thermostat',
'read',
[
'attributes' => [
'model_number' => null
]
]
);
// For each of the manually added ones, check and see if ecobee gives a
// result. If so, do nothing. If not, inactivate the manually added
// ecobee_thermostat row.
foreach($manual_ecobee_thermostats as $manual_ecobee_thermostat) {
try {
$response = $this->api(
'ecobee',
'ecobee_api',
[
'method' => 'GET',
'endpoint' => 'thermostat',
'arguments' => [
'body' => json_encode([
'selection' => array_merge(
[
'selectionType' => 'thermostats',
'selectionMatch' => $manual_ecobee_thermostat['identifier']
],
$include
)
])
]
]
);
} catch(\Exception $e) {
$this->api(
'ecobee_thermostat',
'update',
[
'attributes' => [
'ecobee_thermostat_id' => $manual_ecobee_thermostat['ecobee_thermostat_id'],
'inactive' => 1
]
]
);
}
}
// Now get everything from the database. This will get already registered
// thermostats if they have been synced before, newly manually added
// thermostats, and existing manually added thermostats.
// Get all active thermostats from the database.
$ecobee_thermostats = $this->api(
'ecobee_thermostat',
'read',
@ -206,13 +130,17 @@ class ecobee_sensor extends cora\crud {
]
);
if(count($ecobee_thermostats) === 0) {
return [];
}
$manual_identifiers = [];
foreach($ecobee_thermostats as $ecobee_thermostat) {
$manual_identifiers[] = $ecobee_thermostat['identifier'];
}
// Get a unique list of identifiers.
$identifiers = array_unique(array_merge($registered_identifiers, $manual_identifiers));
$identifiers = array_unique(array_merge($manual_identifiers));
// Get all of the thermostats from ecobee.
$response = $this->api(
@ -235,7 +163,6 @@ class ecobee_sensor extends cora\crud {
]
);
// Loop over the returned sensors and create/update them as necessary.
$sensor_ids_to_keep = [];
foreach($response['thermostatList'] as $api_thermostat) {

View File

@ -30,14 +30,13 @@ class ecobee_thermostat extends cora\crud {
]);
if($existing_ecobee_thermostat !== null) {
return $this->update([
return parent::update([
'ecobee_thermostat_id' => $existing_ecobee_thermostat['ecobee_thermostat_id'],
'inactive' => 0
]);
} else {
return $this->create($attributes);
return parent::create($attributes);
}
}
/**
@ -167,6 +166,18 @@ class ecobee_thermostat extends cora\crud {
]
]
);
// Create a paired thermostat row
$this->api(
'thermostat',
'create',
[
'attributes' => [
'ecobee_thermostat_id' => $manual_ecobee_thermostat['ecobee_thermostat_id'],
'alerts' => []
]
]
);
} catch(\Exception $e) {
$this->api(
'ecobee_thermostat',
@ -250,6 +261,7 @@ class ecobee_thermostat extends cora\crud {
$ecobee_thermostat = $this->create([
'identifier' => $api_thermostat['identifier']
]);
$thermostat = $this->api(
'thermostat',
'create',