Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120837089
install.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
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, Apr 24, 1:40 PM (23 h, 41 m ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d1/d7/30691da9e0490cec299f1f37c7d1
Default Alt Text
install.php (2 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline