Created
June 2, 2018 06:29
-
-
Save seanvree/48fff2655245a4b3b3cd330f5155bdcf to your computer and use it in GitHub Desktop.
check.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/// MONITORR /// | |
// https://github.com/monitorr/Monitorr | |
/** | |
* This script uses CURL to check if given HOST is serving a webpage. | |
* If CURL fails, use a PING (pfsockopen) function to check if anything is listening at given URL | |
* PHP/cURL function to check a web site status. If HTTP status is between 200 and 400, | |
* Generally all successes are in this range, the website is reachable. | |
* | |
* URL MUST contain a PORT after HOST | |
* URL CAN include any protocol or sub-path | |
* | |
* | |
* @param string $url URL that must be checked | |
*/ | |
$today = date("H:i:s T"); | |
function url_to_domain($url) { | |
global $v1; | |
global $v2; | |
global $today; | |
$host = parse_url($url, PHP_URL_HOST); | |
$port = parse_url($url, PHP_URL_PORT); | |
$path = parse_url($url, PHP_URL_PATH); | |
if (!$host) | |
echo "<br> ////// <b> Invalid URL in Service Settings : </b>" . $v2['serviceTitle'] . $url . " //////"; | |
// $host = $url; | |
if (substr($host, 0, 4) == "www.") | |
$host = substr($host, 4); | |
if (strlen($host) > 50) | |
$host = substr($host, 0, 47) . '...'; | |
return $host . ":" . $port . $path; | |
} | |
function urlExists($url) { | |
global $v1; | |
global $v2; | |
global $today; | |
$handle = curl_init($url); | |
curl_setopt($handle, CURLOPT_FRESH_CONNECT, TRUE); | |
curl_setopt($handle, CURLOPT_FORBID_REUSE, TRUE); | |
curl_setopt($handle, CURLOPT_FOLLOWLOCATION, TRUE); | |
curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE); | |
curl_setopt($handle, CURLOPT_HEADER, TRUE); | |
curl_setopt($handle, CURLOPT_NOBODY, TRUE); | |
curl_setopt($handle, CURLOPT_SSL_VERIFYPEER, FALSE); | |
curl_setopt($handle, CURLOPT_SSL_VERIFYHOST, 0); | |
curl_setopt($handle, CURLOPT_TCP_FASTOPEN, TRUE); | |
curl_setopt($handle, CURLOPT_USERAGENT, "Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 10.0)"); | |
curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, 5); | |
curl_setopt($handle, CURLOPT_TIMEOUT, 15); | |
//curl_setopt($handle, CURLOPT_URL, $url); | |
$response = curl_exec($handle); | |
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE); | |
$curlCode = curl_getinfo($handle, CURLINFO_RESPONSE_CODE); | |
if($httpCode >= 200 && $httpCode < 400 || $httpCode == 401 || $httpCode == 403 || $httpCode == 405 || $curlCode == 8 || $curlCode == 67 || $curlCode == 530 || $curlCode == 60 ) { | |
//echo ONLINE; | |
if($v2['link'] == "Yes") { | |
echo '<div class="col-lg-4">'; | |
echo '<a class="servicetile" href="'. $v2['linkurl'] .'" target="_blank" style="display: block">'; | |
echo '<div id="serviceimg">'; | |
echo '<div><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitle">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btnonline">Online</div>'; | |
echo '</a>'; | |
echo '</div>'; | |
} | |
else { | |
echo '<div class="col-lg-4">'; | |
echo '<div class="servicetilenolink" style="display: block; cursor: default">'; | |
echo '<div id="serviceimg">'; | |
echo '<div><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitlenolink" style="cursor: default">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btnonline">Online</div>'; | |
echo '</div>'; | |
echo '</div>'; | |
} | |
curl_close($handle); | |
// Remove .json file from /assets/logs dir when service comes back online | |
$servicefile = ($v2['serviceTitle']).'.offline.json'; | |
$fileoffline = '../data/logs/'.$servicefile; | |
if(is_file($fileoffline)){ | |
rename($fileoffline, '../data/logs/offline.json.old'); | |
} | |
} | |
else { | |
$fp = fsockopen(url_to_domain($url), $timeout = 5); | |
stream_context_set_default( [ | |
'ssl' => [ | |
'verify_peer' => false, | |
'verify_peer_name' => false, | |
], | |
]); | |
if (!$fp) { | |
//echo OFFLINE; | |
echo '<div class="col-lg-4">'; | |
echo '<div class="servicetileoffline">'; | |
echo '<div id="serviceimg">'; | |
echo '<div class="offline"><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitleoffline">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btnoffline">Offline</div>'; | |
echo '</div>'; | |
echo '</div>'; | |
$servicefile = '../data/logs/'.($v2['serviceTitle']).'.offline.json'; | |
// $today = date("H:i:s"); | |
if(!is_file($servicefile)){ | |
$fp = fopen($servicefile, 'w'); | |
fwrite($fp, $v2['serviceTitle'] . " is OFFLINE as of " . $today); | |
fclose($fp); | |
} | |
} | |
else { | |
//echo UNRESPONSIVE; | |
if($v2['link'] == "Yes") { | |
echo '<div class="col-lg-4">'; | |
echo '<a class="servicetile" href="'. $v2['linkurl'] .'" target="_blank" style="display: block">'; | |
echo '<div id="serviceimg">'; | |
echo '<div><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitle">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btunknown">Unresponsive</div>'; | |
echo '</a>'; | |
echo '</div>'; | |
} | |
else { | |
echo '<div class="col-lg-4">'; | |
echo '<div class="servicetilenolink" style="display: block; cursor: default">'; | |
echo '<div id="serviceimg">'; | |
echo '<div><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitlenolink">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btunknown">Unresponsive</div>'; | |
echo '</div>'; | |
echo '</div>'; | |
} | |
$servicefile = ($v2['serviceTitle']).'.offline.json'; | |
$fileoffline = '../data/logs/'.$servicefile; | |
if(is_file($fileoffline)){ | |
rename($fileoffline, '../data/logs/offline.json.old'); | |
} | |
fclose($fp); | |
} | |
} | |
} | |
function ping($url) { | |
global $v1; | |
global $v2; | |
global $today; | |
$fp = fsockopen(url_to_domain($url), $timeout = 5); | |
stream_context_set_default([ | |
'ssl' => [ | |
'verify_peer' => false, | |
'verify_peer_name' => false, | |
], | |
]); | |
if (!$fp) { | |
//echo OFFLINE; | |
echo '<div class="col-lg-4" style="cursor: default">'; | |
echo '<div class="servicetileoffline" style="display: default">'; | |
echo '<div id="serviceimg" style="display: default">'; | |
echo '<div class="offline" style="cursor: default" ><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitleoffline" style="cursor: default">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btnoffline" style="cursor: default">Offline</div>'; | |
echo '</div>'; | |
echo '</div>'; | |
$servicefile = '../data/logs/'.($v2['serviceTitle']).'.offline.json'; | |
// $today = date("H:i:s"); | |
if(!is_file($servicefile)){ | |
$fp = fopen($servicefile, 'w'); | |
fwrite($fp, $v2['serviceTitle'] . " is OFFLINE as of " . $today); | |
fclose($fp); | |
} | |
} | |
else { | |
//echo ONLINE; | |
if($v2['link'] == "Yes") { | |
echo '<div class="col-lg-4">'; | |
echo '<a class="servicetile" href="'. $v2['linkurl'] .'" target="_blank" style="display: block">'; | |
echo '<div id="serviceimg">'; | |
echo '<div><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitle">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btnonline">Online</div>'; | |
echo '</a>'; | |
echo '</div>'; | |
} | |
else { | |
echo '<div class="col-lg-4">'; | |
echo '<div class="servicetilenolink" style="display: block; cursor: default">'; | |
echo '<div id="serviceimg">'; | |
echo '<div><img id="'. strtolower($v2['serviceTitle']) .'-service-img" src="assets/img/'. strtolower($v2['image']) .'" style="height:5.5rem" alt=' . strtolower($v2['serviceTitle']) . '></div>'; | |
echo '</div>'; | |
echo '<div id="servicetitlenolink" style="cursor: default">'; | |
echo '<div>'. ucfirst($v2['serviceTitle']) .'</div>'; | |
echo '</div>'; | |
echo '<div class="btnonline">Online</div>'; | |
echo '</div>'; | |
echo '</div>'; | |
} | |
$servicefile = ($v2['serviceTitle']).'.offline.json'; | |
$fileoffline = '../data/logs/'.$servicefile; | |
if(is_file($fileoffline)){ | |
rename($fileoffline, '../data/logs/offline.json.old'); | |
} | |
fclose($fp); | |
} | |
}; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment