-
Notifications
You must be signed in to change notification settings - Fork 343
/
install.php
101 lines (91 loc) · 2.47 KB
/
install.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
/**
* Basic install script for XHGui2.
*
* Does the following things.
*
* - Downloads composer.
* - Installs dependencies.
*/
function out($out): void
{
if (is_string($out)) {
echo $out . "\n";
}
if (is_array($out)) {
foreach ($out as $line) {
out($line);
}
}
}
function runProcess($cmd, $input = null)
{
$descriptorSpec = [
0 => ['pipe', 'r'],
1 => ['pipe', 'w'],
2 => ['pipe', 'w'],
];
$process = proc_open(
$cmd,
$descriptorSpec,
$pipes
);
if (!is_resource($process)) {
return 'ERROR - Could not start subprocess.';
}
$output = $error = '';
fwrite($pipes[0], $input);
fclose($pipes[0]);
$output = stream_get_contents($pipes[1]);
fclose($pipes[1]);
$error = stream_get_contents($pipes[2]);
fclose($pipes[2]);
proc_close($process);
if (strlen($error)) {
return 'ERROR - ' . $error;
}
return $output;
}
/**
* Composer setup.
*/
if (!file_exists(__DIR__ . '/composer.phar')) {
out('Downloading composer.');
$cmd = "php -r \"eval('?>'.file_get_contents('https://getcomposer.org/installer'));\"";
$output = runProcess($cmd);
out($output);
} else {
out('Composer already installed.');
}
if (!file_exists(__DIR__ . '/composer.phar')) {
out('ERROR - No composer found');
out('download failed, possible reasons:');
out(' - you\'re behind a proxy.');
out(' - composer servers is not available at the moment.');
out(' - something wrong with network configuration.');
out('please try download it manually from https://getcomposer.org/installer and follow manual.');
out('');
exit(9);
}
out('Installing dependencies.');
$cmd = 'php ' . __DIR__ . '/composer.phar install --prefer-dist';
$output = runProcess($cmd);
out($output);
/**
* File permissions.
*/
out('Checking permissions for cache directory.');
$worldWritable = bindec('0000000111');
// Get current permissions in decimal format so we can bitmask it.
$currentPerms = octdec(substr(sprintf('%o', fileperms('./cache')), -4));
if (($currentPerms & $worldWritable) != $worldWritable) {
out('Attempting to set permissions on cache/');
$result = chmod(__DIR__ . '/cache', $currentPerms | $worldWritable);
if ($result) {
out('Permissions set on cache/');
} else {
out('Failed to set permissions on cache/ you must do it yourself.');
}
} else {
out('Permissions on cache/ are ok.');
}