mirror of
https://github.com/beestat/app.git
synced 2025-05-24 02:14:03 -04:00
Added ability to manually manage thermostats
This commit is contained in:
parent
71694b5a1d
commit
41fe96502e
@ -119,83 +119,7 @@ class ecobee_sensor extends cora\crud {
|
|||||||
*/
|
*/
|
||||||
];
|
];
|
||||||
|
|
||||||
// Get a list of all registered thermostats.
|
// Get all active thermostats from the database.
|
||||||
$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.
|
|
||||||
$ecobee_thermostats = $this->api(
|
$ecobee_thermostats = $this->api(
|
||||||
'ecobee_thermostat',
|
'ecobee_thermostat',
|
||||||
'read',
|
'read',
|
||||||
@ -206,13 +130,17 @@ class ecobee_sensor extends cora\crud {
|
|||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if(count($ecobee_thermostats) === 0) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
$manual_identifiers = [];
|
$manual_identifiers = [];
|
||||||
foreach($ecobee_thermostats as $ecobee_thermostat) {
|
foreach($ecobee_thermostats as $ecobee_thermostat) {
|
||||||
$manual_identifiers[] = $ecobee_thermostat['identifier'];
|
$manual_identifiers[] = $ecobee_thermostat['identifier'];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get a unique list of identifiers.
|
// 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.
|
// Get all of the thermostats from ecobee.
|
||||||
$response = $this->api(
|
$response = $this->api(
|
||||||
@ -235,7 +163,6 @@ class ecobee_sensor extends cora\crud {
|
|||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Loop over the returned sensors and create/update them as necessary.
|
// Loop over the returned sensors and create/update them as necessary.
|
||||||
$sensor_ids_to_keep = [];
|
$sensor_ids_to_keep = [];
|
||||||
foreach($response['thermostatList'] as $api_thermostat) {
|
foreach($response['thermostatList'] as $api_thermostat) {
|
||||||
|
@ -30,14 +30,13 @@ class ecobee_thermostat extends cora\crud {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
if($existing_ecobee_thermostat !== null) {
|
if($existing_ecobee_thermostat !== null) {
|
||||||
return $this->update([
|
return parent::update([
|
||||||
'ecobee_thermostat_id' => $existing_ecobee_thermostat['ecobee_thermostat_id'],
|
'ecobee_thermostat_id' => $existing_ecobee_thermostat['ecobee_thermostat_id'],
|
||||||
'inactive' => 0
|
'inactive' => 0
|
||||||
]);
|
]);
|
||||||
} else {
|
} 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) {
|
} catch(\Exception $e) {
|
||||||
$this->api(
|
$this->api(
|
||||||
'ecobee_thermostat',
|
'ecobee_thermostat',
|
||||||
@ -250,6 +261,7 @@ class ecobee_thermostat extends cora\crud {
|
|||||||
$ecobee_thermostat = $this->create([
|
$ecobee_thermostat = $this->create([
|
||||||
'identifier' => $api_thermostat['identifier']
|
'identifier' => $api_thermostat['identifier']
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$thermostat = $this->api(
|
$thermostat = $this->api(
|
||||||
'thermostat',
|
'thermostat',
|
||||||
'create',
|
'create',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user