summaryrefslogtreecommitdiffstats
path: root/check_deps.php
blob: bb716a0a277dd1bf37e35e6a643f88b333a7c809 (plain)
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
#!/usr/bin/php
<?php

if (version_compare(PHP_VERSION, '5.5.0') < 0) {
	echo "Filebin will most certainly not work with php older than 5.5. Use at your own risk!\n\n";
}

$errors = "";

define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
define('FCPATH', str_replace(SELF, "", __FILE__));
if (getenv("HOME") == "") {
	putenv('HOME='.FCPATH);
}

$old_path = getenv("PATH");
putenv("PATH=$old_path:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin");

// test exec()
exec("echo -n works") == "works" || $errors .= "exec() failed\n";

// test passthru()
ob_start();
passthru("echo -n works");
$buf = ob_get_contents();
ob_end_clean();
$buf == "works" || $errors .= "passthru() failed\n";

// test pygmentize
ob_start();
passthru("pygmentize -V 2>&1", $buf);
ob_end_clean();
if ($buf != "0") {
	$errors .= " - Error when testing pygmentize: Return code was \"$buf\".\n";
}

// test ansi2html
ob_start();
passthru("ansi2html -h 2>&1", $buf);
ob_end_clean();
if ($buf != "0") {
	$errors .= " - Error when testing ansi2html: Return code was \"$buf\".\n";
}

// test imagemagick
ob_start();
passthru("convert --version 2>&1", $buf);
ob_end_clean();
if ($buf != "0") {
	$errors .= " - Error when testing imagemagick (convert): Return code was \"$buf\".\n";
}

// test composer
ob_start();
passthru("composer --version 2>&1", $buf);
ob_end_clean();
if ($buf != "0") {
	$errors .= " - Error when testing composer: Return code was \"$buf\".\n";
}

// test PHP modules
$mod_groups = array(
	"thumbnail generation - GD" => array("gd"),
	"thumbnail generation - EXIF" => array("exif"),
	"database support" => array("mysql", "mysqli", "pgsql", "pdo_mysql", "pdo_pgsql"),
	"multipaste tarball support" => array("phar"),
	"multibyte functions" => array("mbstring"),
);
foreach ($mod_groups as $function => $mods) {
	$found = 0;
	foreach ($mods as $module) {
		if (extension_loaded($module)) {
			$found++;
		}
	}
	if ($found == 0) {
		$errors .= " - none of the modules needed for $function are loaded. Make sure to load at least one of these: ".implode(", ", $mods)."\n";
	}
}


if ($errors != "") {
	echo "Errors occured:\n";
	echo $errors;
	exit(1);
} else {
	echo "Dependency checks completed sucessfully.\n";
}