Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
/*
4
 * This file is part of the Symfony package.
5
 *
6
 * (c) Fabien Potencier <fabien@symfony.com>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
 
12
namespace Symfony\Component\Process;
13
 
14
/**
15
 * Generic executable finder.
16
 *
17
 * @author Fabien Potencier <fabien@symfony.com>
18
 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
19
 */
20
class ExecutableFinder
21
{
22
    private $suffixes = ['.exe', '.bat', '.cmd', '.com'];
23
 
24
    /**
25
     * Replaces default suffixes of executable.
26
     */
27
    public function setSuffixes(array $suffixes)
28
    {
29
        $this->suffixes = $suffixes;
30
    }
31
 
32
    /**
33
     * Adds new possible suffix to check for executable.
34
     */
35
    public function addSuffix(string $suffix)
36
    {
37
        $this->suffixes[] = $suffix;
38
    }
39
 
40
    /**
41
     * Finds an executable by name.
42
     *
43
     * @param string      $name      The executable name (without the extension)
44
     * @param string|null $default   The default to return if no executable is found
45
     * @param array       $extraDirs Additional dirs to check into
46
     */
47
    public function find(string $name, string $default = null, array $extraDirs = []): ?string
48
    {
49
        if (\ini_get('open_basedir')) {
50
            $searchPath = array_merge(explode(\PATH_SEPARATOR, \ini_get('open_basedir')), $extraDirs);
51
            $dirs = [];
52
            foreach ($searchPath as $path) {
53
                // Silencing against https://bugs.php.net/69240
54
                if (@is_dir($path)) {
55
                    $dirs[] = $path;
56
                } else {
57
                    if (basename($path) == $name && @is_executable($path)) {
58
                        return $path;
59
                    }
60
                }
61
            }
62
        } else {
63
            $dirs = array_merge(
64
                explode(\PATH_SEPARATOR, getenv('PATH') ?: getenv('Path')),
65
                $extraDirs
66
            );
67
        }
68
 
69
        $suffixes = [''];
70
        if ('\\' === \DIRECTORY_SEPARATOR) {
71
            $pathExt = getenv('PATHEXT');
72
            $suffixes = array_merge($pathExt ? explode(\PATH_SEPARATOR, $pathExt) : $this->suffixes, $suffixes);
73
        }
74
        foreach ($suffixes as $suffix) {
75
            foreach ($dirs as $dir) {
76
                if (@is_file($file = $dir.\DIRECTORY_SEPARATOR.$name.$suffix) && ('\\' === \DIRECTORY_SEPARATOR || @is_executable($file))) {
77
                    return $file;
78
                }
79
            }
80
        }
81
 
82
        return $default;
83
    }
84
}