Archived
1
0
This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
statstat/thermostats/honeywell/scrape.php
dorfl68 9a4f57b5bb Support for many thermostats
Uses the device ID to support several thermostats. Pretty simple - only
setup is now an array of devices, now a single device. However, many
changes follow...
2016-01-19 22:29:04 -05:00

160 lines
4.4 KiB
PHP

<?php
$ch = curl_init();
function login($usr, $pwd){
$url = "https://mytotalconnectcomfort.com/portal/";
GLOBAL $ch;
curl_setopt($ch, CURLOPT_NOBODY, false);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
$headers = array(
'Content-Type' => 'application/x-www-form-urlencoded',
'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Encoding' => 'sdch',
'Host' => 'mytotalconnectcomfort.com',
'DNT' => '1',
'Origin' => 'https://mytotalconnectcomfort.com/portal/',
'Connection' => 'Keep-Alive',
'Keep-Alive' => '300'
);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$cookie_file_path = 'cookies.txt';
if (!file_exists($cookie_file_path)){
fopen($cookie_file_path, "w");
if (!file_exists($cookie_file_path)){
echo "Cookie file missing and can't be created.\n";
die;
}
}
if(!is_writable($cookie_file_path)){
echo 'Cookie file not writable- chmod to the user writing the script\n.';
die;
}
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path);
curl_setopt($ch, CURLOPT_USERAGENT,
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER,'https://mytotalconnectcomfort.com/portal/');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
$postinfo = array(
'timeOffset' => '300',
'UserName' => $usr,
'Password' => $pwd,
'RememberMe' => 'false'
);
$postinfo = http_build_query($postinfo);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postinfo);
$html = curl_exec($ch);
//print $html;
// $sentHeaders = curl_getinfo($ch, CURLINFO_HEADER_OUT);
// print "<pre>Sent headers: <br />";
// var_dump($sentHeaders);
// print "</pre><br />";
}
function getStatus($device){
// print "<hr><br>Get Status<br><br><pre>";
$time = round(microtime(true) * 1000);
$url = "https://mytotalconnectcomfort.com/portal/Device/Control/".$device;
// $url = 'http://up.jamesnweber.com/_sandbox/stat/post.php';
GLOBAL $ch;
curl_setopt($ch, CURLOPT_NOBODY, false);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
$headers = array(
'Accept' => '*/*',
'Accept-Encoding' => '*/*',
'Host' => 'mytotalconnectcomfort.com',
'DNT' => '1',
'X-Requested-With' => 'XMLHttpRequest',
'Connection' => 'keep-alive',
'Accept-Language' => 'en-US,en;q=0.8',
'Connection' => 'Keep-Alive',
'Keep-Alive' => '300',
'checkCookie' => 'checkValue'
);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$cookie_file_path = 'cookies.txt';
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36");
curl_setopt($ch, CURLOPT_ENCODING, 'gzip, deflate, sdch');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER,'https://mytotalconnectcomfort.com/portal/Device/Control/'.$device);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
$html = curl_exec($ch);
$re = "/Control.Model.Property\\.(.*), (.*)\\)/";
preg_match_all($re, $html, $matches);
$data = array();
foreach($matches[1] as $key => $match){
if(strpos($matches[1][$key], ',') == FALSE){
$data[$matches[1][$key]] = $matches[2][$key];
}
}
return $data;
}
function cleanCookies(){
$cookie_file_path = 'cookies.txt';
$file_contents = file_get_contents($cookie_file_path);
$file_contents = str_replace("#HttpOnly_","",$file_contents);
file_put_contents($cookie_file_path,$file_contents);
curl_close($ch);
}
Function enumerate_thermostats(){ // counts number of thermostats in array. Could probably move somewhere else
require('logininfo.php');
$count = count($device_array);
return $count;
}
function getCurrentInfo($d){ // gets the current info for the thermostat with the id $d
require('logininfo.php');
login($username, $password);
$data = getStatus($device_array[$d]);
return $data;
}
?>