automatic session management

develop
Sascha Nitsch 2024-08-29 20:08:51 +02:00
parent 7dd3987bd8
commit affdd5bee9
3 changed files with 27 additions and 9 deletions

View File

@ -16,5 +16,5 @@ if ($_SERVER['argc'] < 2) {
} }
$serverHost = '127.0.0.1'; $serverHost = '127.0.0.1';
$serverPort = 4444; $serverPort = 4444;
$main = new ScriptedBrowser\Main($serverHost, $serverPort, 6, $_SERVER['argc'] > 2 ? $_SERVER['argv'][2] : null); $main = new ScriptedBrowser\Main($serverHost, $serverPort, 6);
$main->run($_SERVER['argv'][1]); $main->run($_SERVER['argv'][1]);

View File

@ -121,7 +121,6 @@ class Control
curl_close($ch); curl_close($ch);
$respJson = json_decode($resp, true); $respJson = json_decode($resp, true);
if (!is_array($respJson)) { if (!is_array($respJson)) {
echo "resp: '$resp'\n";
return []; return [];
} }
if (array_key_exists('value', $respJson)) { if (array_key_exists('value', $respJson)) {
@ -171,7 +170,8 @@ class Control
*/ */
public function getURL() : string public function getURL() : string
{ {
return $this->execute('GET', 'url'); $url = $this->execute('GET', 'url');
return (!is_array($url)) ? $url : '';
} }
/** /**
@ -222,16 +222,21 @@ class Control
$openSession = true; $openSession = true;
if ($session !== null) { if ($session !== null) {
// todo validate session
$openSession = false;
$this->session = $session; $this->session = $session;
// get current URL to see if the session is valid
$url = $this->getURL();
if ($url !== '') {
$openSession = false;
} else {
$this->session = '';
}
} }
if ($openSession) { if ($openSession) {
$sessionData = $this->execute('POST', "session", '{"capabilities" : {"alwaysMatch": {"moz:firefoxOptions":{"prefs":{"browser.display.os-zoom-behavior": 0,"layout.css.prefers-color-scheme.content-override": 1}}}, "firstMatch": [{"browserName": "firefox"}]}}'); $sessionData = $this->execute('POST', "session", '{"capabilities" : {"alwaysMatch": {"moz:firefoxOptions":{"prefs":{"browser.display.os-zoom-behavior": 0,"layout.css.prefers-color-scheme.content-override": 1}}}, "firstMatch": [{"browserName": "firefox"}]}}');
$this->session = $sessionData['sessionId']; $this->session = $sessionData['sessionId'];
echo 'Session: '. $this->session. "\n";
} }
return $this->session;
} }
/** /**

View File

@ -105,9 +105,8 @@ class Main
* @param string $serverHost server host name * @param string $serverHost server host name
* @param int $serverPort server port * @param int $serverPort server port
* @param int $display VNC display id * @param int $display VNC display id
* @param string $session existing session id from geckodriver
*/ */
public function __construct($serverHost, $serverPort, $display = 6, $session = null) public function __construct($serverHost, $serverPort, $display = 6)
{ {
require 'commands/base.php'; require 'commands/base.php';
$this->display = $display; $this->display = $display;
@ -117,7 +116,21 @@ class Main
// open xdotool // open xdotool
$this->control->openInput(); $this->control->openInput();
// open/connect to browser // open/connect to browser
$this->control->openGeckoDriver($session); $sessionFile = @fopen('.session', 'r');
$session = null;
if ($sessionFile !== false) {
$session = trim(fgets($sessionFile));
fclose($sessionFile);
if ($session == '') {
$session = null;
}
}
$newSession = $this->control->openGeckoDriver($session);
if ($newSession !== $session) {
$sessionFile = fopen('.session', 'w');
fwrite($sessionFile, $newSession."\n");
fclose($sessionFile);
}
$this->control->mousemove(959, 499); $this->control->mousemove(959, 499);
$windowpos = $this->control->fullscreen(); $windowpos = $this->control->fullscreen();
$this->control->mousemove(960, 500); $this->control->mousemove(960, 500);