]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/API/Class/BaculaSetting.php
baculum: Fix saving schedule run directive value
[bacula/bacula] / gui / baculum / protected / API / Class / BaculaSetting.php
1 <?php
2 /*
3  * Bacula(R) - The Network Backup Solution
4  * Baculum   - Bacula web interface
5  *
6  * Copyright (C) 2013-2016 Kern Sibbald
7  *
8  * The main author of Baculum is Marcin Haba.
9  * The original author of Bacula is Kern Sibbald, with contributions
10  * from many others, a complete list can be found in the file AUTHORS.
11  *
12  * You may use this file and others of this release according to the
13  * license defined in the LICENSE file, which includes the Affero General
14  * Public License, v3.0 ("AGPLv3") and some additional permissions and
15  * terms pursuant to its AGPLv3 Section 7.
16  *
17  * This notice must be preserved when any source code is
18  * conveyed and/or propagated.
19  *
20  * Bacula(R) is a registered trademark of Kern Sibbald.
21  */
22
23 Prado::using('Application.Common.Class.Params');
24 Prado::using('Application.Common.Class.Errors');
25 Prado::using('Application.API.Class.BException');
26 Prado::using('Application.API.Class.APIModule');
27 Prado::using('Application.API.Class.APIConfig');
28
29 /**
30  * Read/write Bacula configuration.
31  *
32  * @author Marcin Haba <marcin.haba@bacula.pl>
33  */
34 class BaculaSetting extends APIModule {
35
36         const COMPONENT_DIR_TYPE = 'dir';
37         const COMPONENT_SD_TYPE = 'sd';
38         const COMPONENT_FD_TYPE = 'fd';
39         const COMPONENT_BCONS_TYPE = 'bcons';
40
41         private function getComponentTypes() {
42                 $types = array(
43                         self::COMPONENT_DIR_TYPE,
44                         self::COMPONENT_SD_TYPE,
45                         self::COMPONENT_FD_TYPE,
46                         self::COMPONENT_BCONS_TYPE
47                 );
48                 return $types;
49         }
50
51         public function getConfig($component_type = null, $resource_type = null, $resource_name = null) {
52                 $this->checkConfigSupport($component_type);
53                 $config = array();
54                 $json_tools = $this->Application->getModule('json_tools');
55                 if (!is_null($component_type)) {
56                         // get resources config
57                         $params = array();
58                         if ($component_type == self::COMPONENT_DIR_TYPE) {
59                                 $params['dont_apply_jobdefs'] = true;
60                         }
61                         if (!is_null($resource_type)) {
62                                 $params['resource_type'] = $resource_type;
63                         }
64                         if (!is_null($resource_name)) {
65                                 $params['resource_name'] = $resource_name;
66                         }
67                         $config = $json_tools->execCommand($component_type, $params);
68                 } else {
69                         // get components config
70                         $config = $this->getComponents();
71                 }
72                 return $config;
73         }
74
75         private function getComponents() {
76                 $components_info = array();
77                 $json_tools = $this->Application->getModule('json_tools');
78                 $components = $this->getSupportedComponents();
79                 $is_any = false;
80                 for ($i = 0; $i < count($components); $i++) {
81                         $component_type = $components[$i];
82                         $component_name = '';
83                         $error_msg = '';
84                         $resource_type = $this->Application->getModule('misc')->getMainComponentResource($component_type);
85                         $directive_name = 'Name';
86                         $params = array(
87                                 'resource_type' => $resource_type,
88                                 'directive_name' => $directive_name,
89                                 'data_only' => true
90                         );
91                         $result = $json_tools->execCommand($component_type, $params);
92                         $state = ($result['exitcode'] === 0 && is_array($result['output']));
93                         if ($state === true) {
94                                 $is_any = true;
95                                 if (count($result['output']) > 0) {
96                                         $component_directive = array_pop($result['output']);
97                                         if (array_key_exists($directive_name, $component_directive)) {
98                                                 $component_name = $component_directive[$directive_name];
99                                         }
100                                 }
101                         } else {
102                                 /**
103                                  * Unable to get component info (tool returned an error).
104                                  * Keep error message and continue with rest components.
105                                  */
106                                 $error_msg = $result['output'];
107                         }
108                         $component = array(
109                                 'component_type' => $component_type,
110                                 'component_name' => $component_name,
111                                 'state' => $state,
112                                 'error_msg' => $error_msg
113                         );
114                         array_push($components_info, $component);
115                 }
116
117                 $error = BaculaConfigError::ERROR_NO_ERRORS;
118                 if ($is_any === false) {
119                         $error = BaculaConfigError::ERROR_CONFIG_NO_JSONTOOL_READY;
120                 }
121                 $result = $json_tools->prepareResult($components_info, $error);
122                 return $result;
123         }
124
125         public function setConfig($config, $component_type, $resource_type = null, $resource_name = null) {
126                 $ret = array('is_valid' => false, 'save_result' => false, 'result' => null);
127                 $this->checkConfigSupport($component_type);
128                 $json_tools = $this->Application->getModule('json_tools');
129                 $params = array();
130                 if ($component_type == self::COMPONENT_DIR_TYPE) {
131                         $params['dont_apply_jobdefs'] = true;
132                 }
133                 $result = $json_tools->execCommand($component_type, $params);
134                 if ($result['exitcode'] === 0 && is_array($result['output'])) {
135                         $config_orig = $result['output'];
136                         if (!is_null($resource_type)) {
137                                 // Set single resource
138                                 $config_new = array($resource_type => $config);
139                         } else {
140                                 // Set whole config
141                                 $config_new = $config;
142                         }
143                         $ret = $this->saveConfig($config_orig, $config_new, $component_type, $resource_type, $resource_name);
144                 }
145                 return $ret;
146         }
147
148         private function saveConfig(array $config_orig, array $config_new, $component_type, $resource_type = null, $resource_name = null) {
149                 $config = array();
150
151                 if (!is_null($resource_type) && !is_null($resource_name)) {
152                         // Update single resource in config
153                         $config = $this->updateConfigResource($config_orig, $config_new, $resource_type, $resource_name);
154                 } elseif (count($config_orig) > 0) {
155                         // Update whole config
156                         $config = $this->updateConfig($config_orig, $config_new);
157                 } elseif (count($config_new) > 0) {
158                         // Add new config (create component config)
159                         $config = $config_new;
160                 }
161
162                 // Save config to file
163                 return $this->getModule('bacula_config')->setConfig($component_type, $config);
164         }
165
166         private function updateConfig(array $config_orig, array $config_new) {
167                 $config = array();
168                 for ($i = 0; $i < count($config_orig); $i++) {
169                         $resource_orig = $config_orig[$i];
170                         for ($j = 0; $j < count($config_new); $j++) {
171                                 $resource_new = $config_new[$j];
172                                 if ($this->compareResources(array($resource_orig, $resource_new)) === true) {
173                                         // Resource type and name are the same. Update directives.
174                                         $config[] = $this->updateResource($resource_orig, $resource_new);
175                                 } else {
176                                         // Rewrite not modified resource
177                                         $config[] = $resource_new;
178                                 }
179                         }
180                 }
181                 return $config;
182         }
183
184         private function updateConfigResource(array $config_orig, array $resource, $resource_type, $resource_name) {
185                 $config = array();
186                 $is_update = false;
187                 for ($i = 0; $i < count($config_orig); $i++) {
188                         $resource_orig = $config_orig[$i];
189                         if ($this->compareResources(array($resource_orig, $resource)) === true) {
190                                 // Resource type and name are the same. Update directives.
191                                 $config[] = $this->updateResource($resource_orig, $resource);
192                                 $is_update = true;
193                         } else {
194                                 // Rewrite not modified resource
195                                 $config[] = $this->updateResource($resource_orig, $resource_orig);
196                         }
197                 }
198                 if ($is_update === false) {
199                         // Existing resource with changed name, or new resource
200                         $resource_index = $this->getConfigResourceIndex($config, $resource_type, $resource_name);
201                         if (!is_null($resource_index)) {
202                                 // Existing resource
203                                 $resource_orig = $config[$resource_index];
204                                 // Remove existing resource
205                                 array_splice($config, $resource_index, 1);
206                                 // Add resource with new name
207                                 $config[] = $this->updateResource($resource_orig, $resource);
208                         } else {
209                                 // Add new resource
210                                 $config[] = $this->updateResource(array($resource_type => array()), $resource);
211                         }
212                 }
213                 return $config;
214         }
215
216         private function updateResource(array $resource_orig, array $resource_new) {
217                 $resource = array();
218                 $resource_type_orig = key($resource_orig);
219                 $resource_type_new = key($resource_new);
220
221                 if ($resource_type_new === 'Schedule') {
222                         $resource_type = $resource_type_new;
223                         $resource = array($resource_type => array());
224                         foreach ($resource_new[$resource_type] as $directive_name => $directive_value) {
225                                 if ($directive_name === 'Run') {
226                                         for($i = 0; $i < count($directive_value); $i++) {
227                                                 if (is_array($directive_value[$i])) {
228                                                         $overwrite_directive = array_map('overwrite_directives_callback', array_keys($directive_value[$i]), array_values($directive_value[$i]));
229                                                         $overwrite_directive = implode(' ', array_filter($overwrite_directive));
230                                                         $hour = $directive_value[$i]['Hour'][0];
231                                                         $hourly = '';
232                                                         if (count($directive_value[$i]['Hour']) === 24) {
233                                                                 $hourly = 'hourly';
234                                                         }
235                                                         $minute = sprintf('%02d', $directive_value[$i]['Minute']);
236                                                         $day = count($directive_value[$i]['Day']) === 31 ? '' : 'on ' . implode(',', $directive_value[$i]['Day']);
237                                                         $month = Params::getMonthsConfig($directive_value[$i]['Month']);
238                                                         $week = Params::getWeeksConfig($directive_value[$i]['WeekOfMonth']);
239                                                         $wday = Params::getWeeksConfig($directive_value[$i]['DayOfWeek']);
240                                                         $value = array($overwrite_directive, $month, $week, $day, $wday, $hourly, 'at', "$hour:$minute");
241                                                         $value = array_filter($value);
242                                                         if (!array_key_exists($directive_name, $resource[$resource_type])) {
243                                                                 $resource[$resource_type][$directive_name] = array();
244                                                         }
245                                                         $resource[$resource_type][$directive_name][] = implode(' ', $value);
246                                                 } else {
247                                                         $resource[$resource_type][$directive_name][] = $directive_value[$i];
248                                                 }
249                                         }
250                                 } else {
251                                         $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($directive_value);
252                                 }
253                         }
254
255                 } elseif ($resource_type_new === 'Messages') {
256                         $resource_type = $resource_type_new;
257                         $resource = array($resource_type => array());
258                         foreach ($resource_new[$resource_type] as $directive_name => $directive_value) {
259                                 if ($directive_name === 'Destinations') {
260                                         for ($i = 0; $i < count($directive_value); $i++) {
261                                                 $value = array();
262                                                 if (array_key_exists('Where', $directive_value[$i])) {
263                                                         array_push($value, implode(',', $directive_value[$i]['Where']));
264                                                 }
265                                                 array_push($value, implode(', ', $directive_value[$i]['MsgTypes']));
266                                                 $resource[$resource_type][$directive_value[$i]['Type']] = implode(' = ', $value);
267                                         }
268                                 } else {
269                                         $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($directive_value);
270                                 }
271                         }
272
273                 } elseif ($resource_type_orig === $resource_type_new) {
274                         $resource_type = $resource_type_orig;
275                         $resource = array($resource_type => array());
276
277                         foreach ($resource_orig[$resource_type] as $directive_name => $directive_value) {
278                                 if (!array_key_exists($directive_name, $resource_new[$resource_type])) {
279                                         // directive removed in resource
280                                         continue;
281                                 }
282                                 if (is_array($resource_new[$resource_type][$directive_name])) {
283                                         // nested directive (name { key = val })
284                                         $resource[$resource_type][$directive_name] = $this->updateSubResource($resource_new[$resource_type][$directive_name]);
285                                 } else {
286                                         // simple directive (key=val)
287                                         // existing directive in resource
288                                         $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($resource_new[$resource_type][$directive_name]);
289                                 }
290                         }
291                         foreach ($resource_new[$resource_type] as $directive_name => $directive_value) {
292                                 if (!array_key_exists($directive_name, $resource_orig[$resource_type])) {
293                                         // new directive in resource
294                                         $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($directive_value);
295                                 }
296                         }
297                 } else {
298                         // It shouldn't happen.
299                         $this->getModule('logging')->log(
300                                 __FUNCTION__,
301                                 "Attemp to update resource with different resource types.",
302                                 Logging::CATEGORY_APPLICATION,
303                                 __FILE__,
304                                 __LINE__
305                         );
306                         $resource = $resource_orig;
307                 }
308                 return $resource;
309         }
310
311         private function updateSubResource(array $subresource_new) {
312                 $resource = array();
313                 foreach($subresource_new as $directive_name => $directive_value) {
314                         $check_recursive = false;
315                         if (is_array($directive_value)) {
316                                 $assoc_keys = array_filter(array_keys($directive_value), 'is_string');
317                                 $check_recursive = count($assoc_keys) > 0;
318                         }
319                         if ($check_recursive === true) {
320                                 $resource[$directive_name] = $this->updateSubResource($directive_value);
321                         } else {
322                                 $resource[$directive_name] = $this->formatDirectiveValue($directive_value);
323                         }
324                 }
325                 return $resource;
326         }
327
328
329         private function compareResources(array $resources) {
330                 $same_resource = false;
331                 $items = array('type' => array(), 'name' => array());
332                 $resources_count = count($resources);
333                 $counter = 0;
334                 for ($i = 0; $i < $resources_count; $i++) {
335                         if (count($resources[$i]) === 1) {
336                                 $resource_type = key($resources[$i]);
337                                 if (array_key_exists('Name', $resources[$i][$resource_type])) {
338                                         $items['type'][] = $resource_type;
339                                         $items['name'][] = $resources[$i][$resource_type]['Name'];
340                                         $counter++;
341                                 }
342                         }
343                 }
344                 if ($resources_count > 1 && $resources_count === $counter) {
345                         $result = false;
346                         foreach ($items as $key => $value) {
347                                 $result = (count(array_unique($value)) === 1);
348                                 if ($result === false) {
349                                         break;
350                                 }
351                         }
352                         $same_resource = $result;
353                 }
354                 return $same_resource;
355         }
356
357         private function getConfigResourceIndex($config, $resource_type, $resource_name) {
358                 $index = null;
359                 $find_resource = array($resource_type => array('Name' => $resource_name));
360                 for ($i = 0; $i < count($config); $i++) {
361                         if ($this->compareResources(array($config[$i], $find_resource)) === true) {
362                                 $index = $i;
363                                 break;
364                         }
365                 }
366                 return $index;
367         }
368
369         /**
370          * Format directive value.
371          * It is used on write config action to last prepare config before
372          * sending it to config writer.
373          *
374          * @param mixed $value directive value
375          * @return mixed formatted directive value
376          */
377         private function formatDirectiveValue($value) {
378                 $directive_value = null;
379                 if (is_bool($value)) {
380                         $directive_value = ($value === true) ? 'yes' : 'no';
381                 } elseif (is_numeric($value)) {
382                         $directive_value = $value;
383                 } elseif (is_string($value)) {
384                         $value = str_replace('"', '\"', $value);
385                         $value = "\"$value\"";
386                         $directive_value = $value;
387                 } elseif (is_array($value)) {
388                         // only simple numeric arrays
389                         $dvalues = array();
390                         for ($i = 0; $i < count($value); $i++) {
391                                 if (is_array($value[$i])) {
392                                         $dvalues[] = $this->updateSubResource($value[$i]);
393                                 } else {
394                                         $dvalues[] = $this->formatDirectiveValue($value[$i]);
395                                 }
396                         }
397                         $directive_value = $dvalues;
398                 } else {
399                         $emsg = sprintf("Attemp to format a directive value with not supported value type '%s'.", gettype($value));
400                         $this->getModule('logging')->log(
401                                 __FUNCTION__,
402                                 $emsg,
403                                 Logging::CATEGORY_APPLICATION,
404                                 __FILE__,
405                                 __LINE__
406                         );
407                 }
408                 return $directive_value;
409         }
410
411         /**
412          * Get supported component types.
413          * The support is determined by configured JSON tool in API config.
414          * If API is able to use JSON tool for specific component then the component is supported.
415          * Currently a component type is the same as related JSON tool type, but it can be
416          * changed in the future. From this reason components have theirown types.
417          *
418          * @return array supported component types
419          * @throws BConfigException if json tools support is disabled
420          */
421         public function getSupportedComponents() {
422                 $components = array();
423                 $types = $this->getComponentTypes();
424                 $tools = $this->getModule('api_config')->getSupportedJSONTools();
425                 for ($i = 0; $i < count($tools); $i++) {
426                         if (in_array($tools[$i], $types)) {
427                                 array_push($components, $tools[$i]);
428                         }
429                 }
430                 return $components;
431         }
432
433         /**
434          * Check if config support is configured and enabled
435          * globally and for specific component type.
436          *
437          * @private
438          * @param mixed $component_type component type for which config support is checked
439          * @throws BConfigException if support is not configured or disabled
440          */
441         private function checkConfigSupport($component_type = null) {
442                 $api_cfg = $this->getModule('api_config');
443                 if (!$api_cfg->isJSONToolsConfigured($component_type) || !$api_cfg->isJSONToolsEnabled()) {
444                         throw new BConfigException(
445                                 JSONToolsError::MSG_ERROR_JSON_TOOLS_DISABLED,
446                                 JSONToolsError::ERROR_JSON_TOOLS_DISABLED
447                         );
448                 } elseif (!is_null($component_type) && !$api_cfg->isJSONToolConfigured($component_type)) {
449                         $emsg = ' JSONTool=>' . $component_type;
450                         throw new BConfigException(
451                                 JSONToolsError::MSG_ERROR_JSON_TOOL_NOT_CONFIGURED . $emsg,
452                                 JSONToolsError::ERROR_JSON_TOOLS_DISABLED
453                         );
454                 }
455         }
456
457         /**
458          * Get JSON tool type by component type.
459          * Currently the mapping is one-to-one because each component type is the same
460          * as json tool type (dir == dir, bcons == bcons ...etc.). The method is for
461          * hypothetical case when component type is different than json tool type.
462          * It can be useful in future.
463          *
464          * @param string $component_type component type
465          * @return string json tool type
466          */
467         public function getJSONToolTypeByComponentType($component_type) {
468                 $tool_type = null;
469                 switch ($component_type) {
470                         case self::COMPONENT_DIR_TYPE: $tool_type = APIConfig::JSON_TOOL_DIR_TYPE; break;
471                         case self::COMPONENT_SD_TYPE: $tool_type = APIConfig::JSON_TOOL_SD_TYPE; break;
472                         case self::COMPONENT_FD_TYPE: $tool_type = APIConfig::JSON_TOOL_FD_TYPE; break;
473                         case self::COMPONENT_BCONS_TYPE: $tool_type = APIConfig::JSON_TOOL_BCONS_TYPE; break;
474                 }
475                 return $tool_type;
476         }
477
478         // REMOVE ???
479         public function testConfigDir($path) {
480                 $valid = is_writable($path);
481                 return $valid;
482         }
483 }
484 function overwrite_directives_callback($directive_name, $directive_value) {
485         $directive = '';
486         $overwrite_directives = array(
487                 'Level',
488                 'Pool',
489                 'Storage',
490                 'Messages',
491                 'FullPool',
492                 'DifferentialPool',
493                 'IncrementalPool',
494                 'Accurate',
495                 'Priority',
496                 'SpoolData',
497                 'WritePartAfterJob',
498                 'MaxRunSchedTime',
499                 'NextPool'
500         );
501         if (in_array($directive_name, $overwrite_directives)) {
502                 $directive = "{$directive_name}={$directive_value}";
503         }
504         return $directive;
505 }
506 ?>