class BrowserBase in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserBase.php \Zumba\GastonJS\Browser\BrowserBase
Class BrowserBase @package Zumba\GastonJS\Browser
Hierarchy
- class \Zumba\GastonJS\Browser\BrowserBase
Expanded class hierarchy of BrowserBase
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Browser/ BrowserBase.php, line 15
Namespace
Zumba\GastonJS\BrowserView source
class BrowserBase {
/** @var mixed */
protected $logger;
/** @var bool */
protected $debug;
/** @var string */
protected $phantomJSHost;
/** @var Client */
protected $apiClient;
/**
* Creates an http client to consume the phantomjs API
*/
protected function createApiClient() {
// Provide a BC switch between guzzle 5 and guzzle 6.
if (class_exists('GuzzleHttp\\Psr7\\Response')) {
$this->apiClient = new Client(array(
"base_uri" => $this
->getPhantomJSHost(),
));
}
else {
$this->apiClient = new Client(array(
"base_url" => $this
->getPhantomJSHost(),
));
}
}
/**
* TODO: not sure how to do the normalizeKeys stuff fix when needed
* @param $keys
* @return mixed
*/
protected function normalizeKeys($keys) {
return $keys;
}
/**
* @return Client
*/
public function getApiClient() {
return $this->apiClient;
}
/**
* @return string
*/
public function getPhantomJSHost() {
return $this->phantomJSHost;
}
/**
* @return mixed
*/
public function getLogger() {
return $this->logger;
}
/**
* Restarts the browser
*/
public function restart() {
//TODO: Do we really need to do this?, we are just a client
}
/**
* Sends a command to the browser
* @throws BrowserError
* @throws \Exception
* @return mixed
*/
public function command() {
try {
$args = func_get_args();
$commandName = $args[0];
array_shift($args);
$messageToSend = json_encode(array(
'name' => $commandName,
'args' => $args,
));
/** @var $commandResponse \GuzzleHttp\Psr7\Response|\GuzzleHttp\Message\Response */
$commandResponse = $this
->getApiClient()
->post("/api", array(
"body" => $messageToSend,
));
$jsonResponse = json_decode($commandResponse
->getBody(), TRUE);
} catch (ServerException $e) {
$jsonResponse = json_decode($e
->getResponse()
->getBody()
->getContents(), true);
} catch (ConnectException $e) {
throw new DeadClient($e
->getMessage(), $e
->getCode(), $e);
} catch (\Exception $e) {
throw $e;
}
if (isset($jsonResponse['error'])) {
throw $this
->getErrorClass($jsonResponse);
}
return $jsonResponse['response'];
}
/**
* @param $error
* @return BrowserError
*/
protected function getErrorClass($error) {
$errorClassMap = array(
'Poltergeist.JavascriptError' => "Zumba\\GastonJS\\Exception\\JavascriptError",
'Poltergeist.FrameNotFound' => "Zumba\\GastonJS\\Exception\\FrameNotFound",
'Poltergeist.InvalidSelector' => "Zumba\\GastonJS\\Exception\\InvalidSelector",
'Poltergeist.StatusFailError' => "Zumba\\GastonJS\\Exception\\StatusFailError",
'Poltergeist.NoSuchWindowError' => "Zumba\\GastonJS\\Exception\\NoSuchWindowError",
'Poltergeist.ObsoleteNode' => "Zumba\\GastonJS\\Exception\\ObsoleteNode",
);
if (isset($error['error']['name']) && isset($errorClassMap[$error["error"]["name"]])) {
return new $errorClassMap[$error["error"]["name"]]($error);
}
return new BrowserError($error);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BrowserBase:: |
protected | property | @var Client | |
BrowserBase:: |
protected | property | @var bool | |
BrowserBase:: |
protected | property | @var mixed | |
BrowserBase:: |
protected | property | @var string | |
BrowserBase:: |
public | function | Sends a command to the browser | |
BrowserBase:: |
protected | function | Creates an http client to consume the phantomjs API | |
BrowserBase:: |
public | function | ||
BrowserBase:: |
protected | function | ||
BrowserBase:: |
public | function | ||
BrowserBase:: |
public | function | ||
BrowserBase:: |
protected | function | TODO: not sure how to do the normalizeKeys stuff fix when needed | |
BrowserBase:: |
public | function | Restarts the browser |