]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/Common/Class/Miscellaneous.php
baculum: Fix lstat regex pattern
[bacula/bacula] / gui / baculum / protected / Common / Class / Miscellaneous.php
1 <?php
2
3 /*
4  * Small sorting callback function to sort files and directories by name.
5  * Function keeps '.' and '..' names always in the beginning of array.
6  * Used to sort files and directories from Bvfs.
7  */
8 function sortFilesListByName($a, $b) {
9         $firstLeft = substr($a['name'], 0, 1);
10         $firstRight = substr($b['name'], 0, 1);
11         if ($firstLeft == '.' && $firstRight != '.') {
12                 return -1;
13         } else if ($firstRight == '.' && $firstLeft != '.') {
14                 return 1;
15         }
16         return strcasecmp($a['name'], $b['name']);
17 }
18
19 class Miscellaneous extends TModule {
20
21         const LICENCE_FILE = 'LICENSE';
22
23         const RPATH_PATTERN = '/^b2\d+$/';
24
25         public $job_types = array(
26                 'B' => 'Backup',
27                 'M' => 'Migrated',
28                 'V' => 'Verify',
29                 'R' => 'Restore',
30                 'I' => 'Internal',
31                 'D' => 'Admin',
32                 'A' => 'Archive',
33                 'C' => 'Copy',
34                 'c' => 'Copy Job',
35                 'g' => 'Migration'
36         );
37
38         private $jobLevels = array(
39                 'F' => 'Full',
40                 'I' => 'Incremental',
41                 'D' => 'Differential',
42                 'B' => 'Base',
43                 'f' => 'VirtualFull',
44                 'V' => 'InitCatalog',
45                 'C' => 'Catalog',
46                 'O' => 'VolumeToCatalog',
47                 'd' => 'DiskToCatalog'
48         );
49
50         private $jobStates =  array(
51                 'C' => array('value' => 'Created', 'description' =>'Created but not yet running'),
52                 'R' => array('value' => 'Running', 'description' => 'Running'),
53                 'B' => array('value' => 'Blocked', 'description' => 'Blocked'),
54                 'T' => array('value' => 'Terminated', 'description' =>'Terminated normally'),
55                 'W' => array('value' => 'Terminated', 'description' =>'Terminated normally with warnings'),
56                 'E' => array('value' => 'Error', 'description' =>'Terminated in Error'),
57                 'e' => array('value' => 'Non-fatal error', 'description' =>'Non-fatal error'),
58                 'f' => array('value' => 'Fatal error', 'description' =>'Fatal error'),
59                 'D' => array('value' => 'Verify Diff.', 'description' =>'Verify Differences'),
60                 'A' => array('value' => 'Canceled', 'description' =>'Canceled by the user'),
61                 'I' => array('value' => 'Incomplete', 'description' =>'Incomplete Job'),
62                 'F' => array('value' => 'Waiting on FD', 'description' =>'Waiting on the File daemon'),
63                 'S' => array('value' => 'Waiting on SD', 'description' =>'Waiting on the Storage daemon'),
64                 'm' => array('value' => 'Waiting for new vol.', 'description' =>'Waiting for a new Volume to be mounted'),
65                 'M' => array('value' => 'Waiting for mount', 'description' =>'Waiting for a Mount'),
66                 's' => array('value' => 'Waiting for storage', 'description' =>'Waiting for Storage resource'),
67                 'j' => array('value' => 'Waiting for job', 'description' =>'Waiting for Job resource'),
68                 'c' => array('value' => 'Waiting for client', 'description' =>'Waiting for Client resource'),
69                 'd' => array('value' => 'Waiting for Max. jobs', 'description' =>'Wating for Maximum jobs'),
70                 't' => array('value' => 'Waiting for start', 'description' =>'Waiting for Start Time'),
71                 'p' => array('value' => 'Waiting for higher priority', 'description' =>'Waiting for higher priority job to finish'),
72                 'i' => array('value' => 'Batch insert', 'description' =>'Doing batch insert file records'),
73                 'a' => array('value' => 'Despooling attributes', 'description' =>'SD despooling attributes'),
74                 'l' => array('value' => 'Data despooling', 'description' =>'Doing data despooling'),
75                 'L' => array('value' => 'Commiting data', 'description' =>'Committing data (last despool)')
76         );
77
78         private $jobStatesOK = array('T', 'D');
79         private $jobStatesWarning = array('W');
80         private $jobStatesError = array('E', 'e', 'f', 'I');
81         private $jobStatesCancel = array('A');
82         private $jobStatesRunning = array('C', 'R', 'B', 'F', 'S', 'm', 'M', 's', 'j', 'c', 'd','t', 'p', 'i', 'a', 'l', 'L');
83
84         private $runningJobStates = array('C', 'R');
85
86         private $components = array(
87                 'dir' => array('full_name' => 'Director', 'main_resource' => 'Director'),
88                 'sd' => array('full_name' => 'Storage Daemon', 'main_resource' => 'Storage'),
89                 'fd' => array('full_name' => 'File Daemon', 'main_resource' => 'FileDaemon'),
90                 'bcons' => array('full_name' => 'Console', 'main_resource' => 'Director')
91         );
92
93         /**
94          * Getting the licence from file.
95          * 
96          * @access public
97          * @return string licence text
98          */
99         public function getLicence() {
100                 return nl2br(htmlspecialchars(file_get_contents(self::LICENCE_FILE)));
101         }
102
103         public function getJobLevels() {
104                 return $this->jobLevels;
105         }
106
107         public function getJobState($jobStateLetter = null) {
108                 $state;
109                 if(is_null($jobStateLetter)) {
110                         $state = $this->jobStates;
111                 } else {
112                         $state = array_key_exists($jobStateLetter, $this->jobStates) ? $this->jobStates[$jobStateLetter] : null;
113                 }
114                 return $state;
115         }
116
117         public function getRunningJobStates() {
118                 return $this->runningJobStates;
119         }
120
121         public function getComponents() {
122                 $components = array_keys($this->components);
123         }
124
125         public function getMainComponentResource($type) {
126                 $resource = null;
127                 if (array_key_exists($type, $this->components)) {
128                         $resource = $this->components[$type]['main_resource'];
129                 }
130                 return $resource;
131         }
132
133         public function getComponentFullName($type) {
134                 $name = '';
135                 if (array_key_exists($type, $this->components)) {
136                         $name = $this->components[$type]['full_name'];
137                 }
138                 return $name;
139         }
140
141         public function getJobStatesByType($type) {
142                 $statesByType = array();
143                 $states = array();
144                 switch($type) {
145                         case 'ok':
146                                 $states = $this->jobStatesOK;
147                                 break;
148                         case 'warning':
149                                 $states = $this->jobStatesWarning;
150                                 break;
151                         case 'error':
152                                 $states = $this->jobStatesError;
153                                 break;
154                         case 'cancel':
155                                 $states = $this->jobStatesCancel;
156                                 break;
157                         case 'running':
158                                 $states = $this->jobStatesRunning;
159                                 break;
160                 }
161
162                 for ($i = 0; $i < count($states); $i++) {
163                         $statesByType[$states[$i]] = $this->getJobState($states[$i]);
164                 }
165
166                 return $statesByType;
167         }
168
169         public function isValidJobLevel($jobLevel) {
170                 return array_key_exists($jobLevel, $this->getJobLevels());
171         }
172
173         public function isValidName($name) {
174                 return (preg_match('/^[\w:\.\-\s]{1,127}$/', $name) === 1);
175         }
176
177         /**
178          * Writing INI-style configuration file.
179          * 
180          * Functions has been got from StackOverflow.com service (http://stackoverflow.com/questions/4082626/save-ini-file-with-comments).
181          * 
182          * @access public
183          * @param string $file file localization
184          * @param array $options structure of config file params
185          * @return mixed if success then returns the number of bytes that were written to the file as the integer type, if failure then returns false
186          */
187         public function writeINIFile($file, array $options){
188                 $tmp = '';
189                 foreach($options as $section => $values){
190                         $tmp .= "[$section]\n";
191                                 foreach($values as $key => $val){
192                                         if(is_array($val)){
193                                                 foreach($val as $k => $v) {
194                                                         $v = $this->escapeINIVal($v);
195                                                         $tmp .= "{$key}[$k] = \"$v\"\n";
196                                                 }
197                                         } else {
198                                                 $val = $this->escapeINIVal($val);
199                                                 $tmp .= "$key = \"$val\"\n";
200                                         }
201                                 }
202                         $tmp .= "\n";
203                 }
204                 $old_umask = umask(0);
205                 umask(0077);
206                 $result = file_put_contents($file, $tmp);
207                 umask($old_umask);
208                 return $result;
209         }
210
211         /**
212          * Escape text written to INI-style file.
213          *
214          * @access private
215          * @param string $value text to escape
216          * @return string escaped text
217          */
218         private function escapeINIVal($value) {
219                 $esc_value = str_replace('"', '\"', $value);
220                 return $esc_value;
221         }
222
223         /**
224          * Parse INI-style configuration file.
225          * 
226          * @access public
227          * @param string $file file localization
228          * @return array data of configuration file
229          */
230         public static function parseINIFile($file) {
231                 $content = array();
232                 if (file_exists($file)) {
233                         $content = parse_ini_file($file, true);
234                         if (!is_array($content)) {
235                                 $content = array();
236                         }
237                 }
238                 return $content;
239         }
240
241
242         /**
243          * This method is copied from http://stackoverflow.com/questions/4345554/convert-php-object-to-associative-array
244          */
245         public function objectToArray($data) {
246                 if (is_array($data) || is_object($data)) {
247                         $result = array();
248                         foreach ($data as $key => $value) {
249                                 $result[$key] = $this->objectToArray($value);
250                         }
251                         return $result;
252                 }
253                 return $data;
254         }
255
256         public function decode_bacula_lstat($lstat) {
257                 $base64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
258                 $lstat = trim($lstat);
259                 $lstat_fields = explode(' ', $lstat);
260
261                 if(count($lstat_fields) !== 16) {
262                         die('Błąd! Niepoprawna ilość pól wartości LStat. Proszę upewnić się, że podany ciąg znaków jest poprawną wartością LStat');
263                 }
264
265                 list($dev, $inode, $mode, $nlink, $uid, $gid, $rdev, $size, $blocksize, $blocks, $atime, $mtime, $ctime, $linkfi, $flags, $data) = $lstat_fields;
266                 $encoded_values = array('dev' => $dev, 'inode' => $inode, 'mode' => $mode, 'nlink' => $nlink, 'uid' => $uid, 'gid' => $gid, 'rdev' => $rdev, 'size' => $size, 'blocksize' => $blocksize, 'blocks' => $blocks, 'atime' => $atime, 'mtime' => $mtime, 'ctime' => $ctime, 'linkfi' => $linkfi, 'flags' => $flags, 'data' => $data);
267
268                 $ret = array();
269                 foreach($encoded_values as $key => $val) {
270                         $result = 0;
271                         $is_minus = false;
272                         $start = 0;
273
274                         if(substr($val, 0, 1) === '-') {
275                                 $is_minus = true;
276                                 $start++;
277                         }
278
279                         for($i = $start; $i < strlen($val); $i++) {
280                                 $result = bcmul($result, bcpow(2,6));
281                                 $result +=  strpos($base64, substr($val, $i , 1));
282                         }
283                         $ret[$key] = ($is_minus === true) ? -$result : $result;
284                 }
285                 return $ret;
286         }
287
288         public function parseBvfsList($list) {
289                 $elements = array();
290                 for($i = 0; $i < count($list); $i++) {
291                         if(preg_match('/^(?P<pathid>\d+)\t(?P<filenameid>\d+)\t(?P<fileid>\d+)\t(?P<jobid>\d+)\t(?P<lstat>[a-zA-z0-9\+\/\ ]+)\t(?P<name>.*)\/$/', $list[$i], $match) == 1 || preg_match('/^(?P<pathid>\d+)\t(?P<filenameid>\d+)\t(?P<fileid>\d+)\t(?P<jobid>\d+)\t(?P<lstat>[a-zA-z0-9\+\/\ ]+)\t(?P<name>\.{2})$/', $list[$i], $match) == 1) {
292                                 if($match['name'] == '.') {
293                                         continue;
294                                 } elseif($match['name'] != '..') {
295                                         $match['name'] .= '/';
296                                 }
297                                 $elements[] = array('pathid' => $match['pathid'], 'filenameid' => $match['filenameid'], 'fileid' => $match['fileid'], 'jobid' => $match['jobid'], 'lstat' => $match['lstat'], 'name' => $match['name'], 'type' => 'dir');
298                         } elseif(preg_match('/^(?P<pathid>\d+)\t(?P<filenameid>\d+)\t(?P<fileid>\d+)\t(?P<jobid>\d+)\t(?P<lstat>[a-zA-z0-9\+\/\ ]+)\t(?P<name>[^\/]+)$/', $list[$i], $match) == 1) {
299                                 if($match['name'] == '.') {
300                                         continue;
301                                 }
302                                 $elements[] = array('pathid' => $match['pathid'], 'filenameid' => $match['filenameid'], 'fileid' => $match['fileid'], 'jobid' => $match['jobid'], 'lstat' => $match['lstat'], 'name' => $match['name'], 'type' => 'file'); 
303                         }
304                 }
305                 usort($elements, 'sortFilesListByName');
306                 return $elements;
307         }
308
309         public function parseFileVersions($filename, $list) {
310                 $elements = array();
311                 for($i = 0; $i < count($list); $i++) {
312                         if(preg_match('/^(?P<pathid>\d+)\t(?P<filenameid>\d+)\t(?P<fileid>\d+)\t(?P<jobid>\d+)\t(?P<lstat>[a-zA-Z0-9\+\/\ ]+)\t(?P<md5>.+)\t(?P<volname>.+)\t(?P<inchanger>\d+)$/', $list[$i], $match) == 1) {
313                                 $elements[$match['fileid']] = array('name' => $filename, 'pathid' => $match['pathid'], 'filenameid' => $match['filenameid'], 'fileid' => $match['fileid'], 'jobid' => $match['jobid'], 'lstat' => $this->decode_bacula_lstat($match['lstat']), 'md5' => $match['md5'], 'volname' => $match['volname'], 'inchanger' => $match['inchanger'], 'type' => 'file');
314                         }
315                 }
316                 return $elements;
317         }
318
319         public function findJobIdStartedJob($output) {
320                 $jobid = null;
321                 $output = array_reverse($output); // jobid is ussually at the end of output
322                 for ($i = 0; $i < count($output); $i++) {
323                         if (preg_match('/^Job queued\.\sJobId=(?P<jobid>\d+)$/', $output[$i], $match) === 1) {
324                                 $jobid = $match['jobid'];
325                                 break;
326                         }
327                 }
328                 return $jobid;
329         }
330
331         /**
332          * Get (pseudo)random string.
333          *
334          * Useful for log out user from HTTP Basic auth by providing random password.
335          *
336          * @access public
337          * @return string random 62 characters string from range [a-zA-Z0-9]
338          */
339         public function getRandomString($length = null) {
340                 $characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
341                 $rand_string = str_shuffle($characters);
342                 if (is_int($length) && $length <= 62) {
343                         $rand_string = substr($rand_string, 0, $length);
344                 }
345                 return $rand_string;
346         }
347
348         /**
349          * Get encrypted password to use in HTTP Basic auth.
350          *
351          * @access public
352          * @param string $password plain text password
353          * @return string encrypted password
354          */
355         public function getCryptedPassword($password) {
356                 $enc_pwd = crypt($password, base64_encode($password));
357                 return $enc_pwd;
358         }
359 }
360 ?>