2012-01-20 18:10:48 +01:00
|
|
|
<?php
|
2015-09-10 23:13:48 +02:00
|
|
|
|
2012-01-20 18:10:48 +01:00
|
|
|
/**
|
|
|
|
* Check that a given URL is functioning, by default, the homepage.
|
|
|
|
*
|
|
|
|
* Note that Director::test() will be used rather than a CURL check.
|
|
|
|
*/
|
2015-11-21 07:18:35 +01:00
|
|
|
class URLCheck implements EnvironmentCheck
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $url;
|
2015-09-10 23:13:48 +02:00
|
|
|
|
2015-11-21 07:18:35 +01:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $testString;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @param string $url The URL to check, relative to the site (homepage is '').
|
|
|
|
* @param string $testString An optional piece of text to search for on the homepage.
|
|
|
|
*/
|
|
|
|
public function __construct($url = '', $testString = '')
|
|
|
|
{
|
|
|
|
$this->url = $url;
|
|
|
|
$this->testString = $testString;
|
|
|
|
}
|
2015-09-10 23:13:48 +02:00
|
|
|
|
2015-11-21 07:18:35 +01:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* @throws SS_HTTPResponse_Exception
|
|
|
|
*/
|
|
|
|
public function check()
|
|
|
|
{
|
|
|
|
$response = Director::test($this->url);
|
2012-01-20 18:10:48 +01:00
|
|
|
|
2015-11-21 07:18:35 +01:00
|
|
|
if ($response->getStatusCode() != 200) {
|
|
|
|
return array(
|
|
|
|
EnvironmentCheck::ERROR,
|
|
|
|
sprintf('Error retrieving "%s" (Code: %d)', $this->url, $response->getStatusCode())
|
|
|
|
);
|
|
|
|
} elseif ($this->testString && (strpos($response->getBody(), $this->testString) === false)) {
|
|
|
|
return array(
|
|
|
|
EnvironmentCheck::WARNING,
|
|
|
|
sprintf('Success retrieving "%s", but string "%s" not found', $this->url, $this->testString)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return array(
|
|
|
|
EnvironmentCheck::OK,
|
|
|
|
sprintf('Success retrieving "%s"', $this->url)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2015-09-10 23:13:48 +02:00
|
|
|
}
|