Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F6066823
install.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
install.php
View Options
<?php
/*
+-----------------------------------------------------------------------+
| This file is part of the Roundcube Webmail client |
| |
| Copyright (C) The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
| See the README file for a full license statement. |
| |
| PURPOSE: |
| Chrome WebDriver download tool |
+-----------------------------------------------------------------------+
| Author: Aleksander Machniak <alec@alec.pl> |
+-----------------------------------------------------------------------+
*/
if
(
php_sapi_name
()
!=
'cli'
)
{
die
(
"Not in shell mode (php-cli)"
);
}
if
(!
defined
(
'INSTALL_PATH'
))
{
define
(
'INSTALL_PATH'
,
realpath
(
__DIR__
.
'/../../'
)
.
'/'
);
}
require_once
(
INSTALL_PATH
.
'program/include/iniset.php'
);
class
Installer
extends
Laravel\Dusk\Console\ChromeDriverCommand
{
/**
* Execute the console command.
*
* @param string $version
*
* @return void
*/
public
function
install
(
$version
=
null
)
{
$version
=
$version
?
preg_replace
(
'/
\.
.*/'
,
''
,
$version
)
:
$this
->
latestVersion
();
$version
=
trim
(
$this
->
getUrl
(
sprintf
(
$this
->
versionUrl
,
$version
)));
$currentOS
=
Laravel\Dusk\OperatingSystem
::
id
();
foreach
(
$this
->
slugs
as
$os
=>
$slug
)
{
if
(
$os
===
$currentOS
)
{
$archive
=
$this
->
download
(
$version
,
$slug
);
$binary
=
$this
->
extract
(
$archive
);
$this
->
rename
(
$binary
,
$os
);
}
}
echo
"ChromeDriver binary successfully installed for version $version.
\n
"
;
}
/**
* Get the contents of a URL
*
* @param string $url URL
*
* @return string|bool
*/
protected
function
getUrl
(
string
$url
)
{
return
file_get_contents
(
$url
);
}
}
if
(
empty
(
$argv
[
1
]))
{
rcube
::
raise_error
(
"Chrome driver version is a required argument of this script."
,
false
,
true
);
}
$installer
=
new
Installer
;
$installer
->
install
(
$argv
[
1
]);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 22, 5:00 AM (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
672520
Default Alt Text
install.php (2 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment