1 | <?php |
||
23 | abstract class WebServer implements WebServerInterface |
||
24 | { |
||
25 | /** |
||
26 | * the name of a webserver. |
||
27 | * |
||
28 | * @var string the name of a webserver |
||
29 | */ |
||
30 | private $name; |
||
31 | |||
32 | /** |
||
33 | * the version of a webserver. |
||
34 | * |
||
35 | * @var string the version of a webserver |
||
36 | */ |
||
37 | private $version; |
||
38 | |||
39 | /** |
||
40 | * binaries that can be used to control the webserver. |
||
41 | * |
||
42 | * @var array |
||
43 | */ |
||
44 | private $binaries = []; |
||
45 | |||
46 | /** |
||
47 | * the parameter string to use to detect version and config file. |
||
48 | * |
||
49 | * @var string |
||
50 | */ |
||
51 | private $detectionParameter = ''; |
||
52 | |||
53 | /** |
||
54 | * Constructor. |
||
55 | * |
||
56 | * @param string $name the name of a webserver |
||
57 | * @param string $version the version of a webserver |
||
58 | */ |
||
59 | 29 | public function __construct($name, $version = '') |
|
64 | |||
65 | /** |
||
66 | * Gets the name of a webserver. |
||
67 | * |
||
68 | * @return string the name of the webserver |
||
69 | */ |
||
70 | 4 | public function getName() |
|
74 | |||
75 | /** |
||
76 | * Gets the version of a webserver. |
||
77 | * |
||
78 | * @return string the version of the webserver |
||
79 | */ |
||
80 | 4 | public function getVersion() |
|
84 | |||
85 | /** |
||
86 | * Gets the list of binaries that can be run to analyze. |
||
87 | * |
||
88 | * @return array the list of binaries that can be run |
||
89 | */ |
||
90 | 5 | public function getBinaries() |
|
94 | |||
95 | 18 | public function setBinaries(array $binaries) |
|
101 | |||
102 | 18 | public function setDetectionParameter($parameter = '') |
|
108 | |||
109 | 1 | public function getSettings($fullPathBinary) |
|
115 | |||
116 | abstract public function extractVersion($settings = ''); |
||
117 | |||
118 | abstract public function extractRootConfigurationFile($settings = ''); |
||
119 | |||
120 | /** |
||
121 | * Finds and return a specific information in a string. |
||
122 | * |
||
123 | * the regexp must contain delimiters. |
||
124 | * |
||
125 | * @param string $regexp a regular expression to find |
||
126 | * @param string $settings a string where to find |
||
127 | * @return string the found value or an empty string |
||
128 | */ |
||
129 | 9 | protected function match($regexp, $settings) |
|
139 | |||
140 | /** |
||
141 | * Loads et cleans a config file. |
||
142 | * |
||
143 | * @param string $file a Configuration file |
||
144 | * @return string the cleaned directives a the config file |
||
145 | */ |
||
146 | 2 | public function getActiveConfig($file = '') |
|
158 | } |
||
159 |