3 * Bacula(R) - The Network Backup Solution
4 * Baculum - Bacula web interface
6 * Copyright (C) 2013-2016 Kern Sibbald
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.
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.
17 * This notice must be preserved when any source code is
18 * conveyed and/or propagated.
20 * Bacula(R) is a registered trademark of Kern Sibbald.
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');
30 * Read/write Bacula configuration.
32 * @author Marcin Haba <marcin.haba@bacula.pl>
34 class BaculaSetting extends APIModule {
36 const COMPONENT_DIR_TYPE = 'dir';
37 const COMPONENT_SD_TYPE = 'sd';
38 const COMPONENT_FD_TYPE = 'fd';
39 const COMPONENT_BCONS_TYPE = 'bcons';
41 private function getComponentTypes() {
43 self::COMPONENT_DIR_TYPE,
44 self::COMPONENT_SD_TYPE,
45 self::COMPONENT_FD_TYPE,
46 self::COMPONENT_BCONS_TYPE
51 public function getConfig($component_type = null, $resource_type = null, $resource_name = null) {
52 $this->checkConfigSupport($component_type);
54 $json_tools = $this->Application->getModule('json_tools');
55 if (!is_null($component_type)) {
56 // get resources config
58 if ($component_type == self::COMPONENT_DIR_TYPE) {
59 $params['dont_apply_jobdefs'] = true;
61 if (!is_null($resource_type)) {
62 $params['resource_type'] = $resource_type;
64 if (!is_null($resource_name)) {
65 $params['resource_name'] = $resource_name;
67 $config = $json_tools->execCommand($component_type, $params);
69 // get components config
70 $config = $this->getComponents();
75 private function getComponents() {
76 $components_info = array();
77 $json_tools = $this->Application->getModule('json_tools');
78 $components = $this->getSupportedComponents();
80 for ($i = 0; $i < count($components); $i++) {
81 $component_type = $components[$i];
84 $resource_type = $this->Application->getModule('misc')->getMainComponentResource($component_type);
85 $directive_name = 'Name';
87 'resource_type' => $resource_type,
88 'directive_name' => $directive_name,
91 $result = $json_tools->execCommand($component_type, $params);
92 $state = ($result['exitcode'] === 0 && is_array($result['output']));
93 if ($state === 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];
103 * Unable to get component info (tool returned an error).
104 * Keep error message and continue with rest components.
106 $error_msg = $result['output'];
109 'component_type' => $component_type,
110 'component_name' => $component_name,
112 'error_msg' => $error_msg
114 array_push($components_info, $component);
117 $error = BaculaConfigError::ERROR_NO_ERRORS;
118 if ($is_any === false) {
119 $error = BaculaConfigError::ERROR_CONFIG_NO_JSONTOOL_READY;
121 $result = $json_tools->prepareResult($components_info, $error);
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');
130 if ($component_type == self::COMPONENT_DIR_TYPE) {
131 $params['dont_apply_jobdefs'] = true;
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);
141 $config_new = $config;
143 $ret = $this->saveConfig($config_orig, $config_new, $component_type, $resource_type, $resource_name);
145 $ret['result'] = $result;
150 private function saveConfig(array $config_orig, array $config_new, $component_type, $resource_type = null, $resource_name = null) {
153 if (!is_null($resource_type) && !is_null($resource_name)) {
154 // Update single resource in config
155 $config = $this->updateConfigResource($config_orig, $config_new, $resource_type, $resource_name);
156 } elseif (count($config_orig) > 0) {
157 // Update whole config
158 $config = $this->updateConfig($config_orig, $config_new);
159 } elseif (count($config_new) > 0) {
160 // Add new config (create component config)
161 $config = $config_new;
164 // Save config to file
165 return $this->getModule('bacula_config')->setConfig($component_type, $config);
168 private function updateConfig(array $config_orig, array $config_new) {
170 for ($i = 0; $i < count($config_new); $i++) {
171 $resource_new = $config_new[$i];
173 for ($j = 0; $j < count($config_orig); $j++) {
174 $resource_orig = $config_orig[$j];
175 if ($this->compareResources(array($resource_orig, $resource_new)) === true) {
176 // Resource type and name are the same. Update directives.
177 $config[] = $this->updateResource($resource_orig, $resource_new);
183 // Newly added resource
184 $config[] = $resource_new;
190 private function updateConfigResource(array $config_orig, array $resource, $resource_type, $resource_name) {
193 for ($i = 0; $i < count($config_orig); $i++) {
194 $resource_orig = $config_orig[$i];
195 if ($this->compareResources(array($resource_orig, $resource)) === true) {
196 // Resource type and name are the same. Update directives.
197 $config[] = $this->updateResource($resource_orig, $resource);
200 // Rewrite not modified resource
201 $config[] = $this->updateResource($resource_orig, $resource_orig);
204 if ($is_update === false) {
205 // Existing resource with changed name, or new resource
206 $resource_index = $this->getConfigResourceIndex($config, $resource_type, $resource_name);
207 if (!is_null($resource_index)) {
209 $resource_orig = $config[$resource_index];
210 // Remove existing resource
211 array_splice($config, $resource_index, 1);
212 // Add resource with new name
213 $config[] = $this->updateResource($resource_orig, $resource);
216 $config[] = $this->updateResource(array($resource_type => array()), $resource);
222 private function updateResource(array $resource_orig, array $resource_new) {
224 $resource_type_orig = key($resource_orig);
225 $resource_type_new = key($resource_new);
227 if ($resource_type_new === 'Schedule') {
228 $resource_type = $resource_type_new;
229 $resource = array($resource_type => array());
230 foreach ($resource_new[$resource_type] as $directive_name => $directive_value) {
231 if ($directive_name === 'Run') {
232 for($i = 0; $i < count($directive_value); $i++) {
233 if (is_array($directive_value[$i])) {
234 $overwrite_directive = array_map('overwrite_directives_callback', array_keys($directive_value[$i]), array_values($directive_value[$i]));
235 $overwrite_directive = implode(' ', array_filter($overwrite_directive));
236 $hour = $directive_value[$i]['Hour'][0];
238 if (count($directive_value[$i]['Hour']) === 24) {
243 * Check if Minute key exists because of bug about missing Minute
244 * @see http://bugs.bacula.org/view.php?id=2318
246 if (array_key_exists('Minute', $directive_value[$i])) {
247 $minute = sprintf('%02d', $directive_value[$i]['Minute']);
249 $day = count($directive_value[$i]['Day']) === 31 ? '' : 'on ' . implode(',', $directive_value[$i]['Day']);
250 $month = Params::getMonthsConfig($directive_value[$i]['Month']);
251 $week = Params::getWeeksConfig($directive_value[$i]['WeekOfMonth']);
252 $wday = Params::getWdaysConfig($directive_value[$i]['DayOfWeek']);
253 $value = array($overwrite_directive, $month, $week, $day, $wday, $hourly, 'at', "$hour:$minute");
254 $value = array_filter($value);
255 if (!array_key_exists($directive_name, $resource[$resource_type])) {
256 $resource[$resource_type][$directive_name] = array();
258 $resource[$resource_type][$directive_name][] = implode(' ', $value);
260 $resource[$resource_type][$directive_name][] = $directive_value[$i];
264 $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($directive_value);
268 } elseif ($resource_type_new === 'Messages') {
269 $resource_type = $resource_type_new;
270 $resource = array($resource_type => array());
271 foreach ($resource_new[$resource_type] as $directive_name => $directive_value) {
272 if ($directive_name === 'Destinations') {
273 for ($i = 0; $i < count($directive_value); $i++) {
275 if (array_key_exists('Where', $directive_value[$i])) {
276 array_push($value, implode(',', $directive_value[$i]['Where']));
278 array_push($value, implode(', ', $directive_value[$i]['MsgTypes']));
279 $resource[$resource_type][$directive_value[$i]['Type']] = implode(' = ', $value);
282 $resource[$resource_type][$directive_name] = $directive_value;
286 } elseif ($resource_type_orig === $resource_type_new) {
287 $resource_type = $resource_type_orig;
288 $resource = array($resource_type => array());
290 foreach ($resource_orig[$resource_type] as $directive_name => $directive_value) {
291 if (!array_key_exists($directive_name, $resource_new[$resource_type])) {
292 // directive removed in resource
295 if (is_array($resource_new[$resource_type][$directive_name])) {
296 // nested directive (name { key = val })
297 $resource[$resource_type][$directive_name] = $this->updateSubResource($resource_new[$resource_type][$directive_name]);
299 // simple directive (key=val)
300 // existing directive in resource
301 $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($resource_new[$resource_type][$directive_name]);
304 foreach ($resource_new[$resource_type] as $directive_name => $directive_value) {
305 if (!array_key_exists($directive_name, $resource_orig[$resource_type])) {
306 // new directive in resource
307 $resource[$resource_type][$directive_name] = $this->formatDirectiveValue($directive_value);
311 // It shouldn't happen.
312 $this->getModule('logging')->log(
314 "Attemp to update resource with different resource types.",
315 Logging::CATEGORY_APPLICATION,
319 $resource = $resource_orig;
324 private function updateSubResource(array $subresource_new) {
326 foreach($subresource_new as $directive_name => $directive_value) {
327 $check_recursive = false;
328 if (is_array($directive_value)) {
329 $assoc_keys = array_filter(array_keys($directive_value), 'is_string');
330 $check_recursive = count($assoc_keys) > 0;
332 if ($check_recursive === true) {
333 $resource[$directive_name] = $this->updateSubResource($directive_value);
335 $resource[$directive_name] = $this->formatDirectiveValue($directive_value);
342 private function compareResources(array $resources) {
343 $same_resource = false;
344 $items = array('type' => array(), 'name' => array());
345 $resources_count = count($resources);
347 for ($i = 0; $i < $resources_count; $i++) {
348 if (count($resources[$i]) === 1) {
349 $resource_type = key($resources[$i]);
350 if (array_key_exists('Name', $resources[$i][$resource_type])) {
351 $items['type'][] = $resource_type;
352 $items['name'][] = $resources[$i][$resource_type]['Name'];
357 if ($resources_count > 1 && $resources_count === $counter) {
359 foreach ($items as $key => $value) {
360 $result = (count(array_unique($value)) === 1);
361 if ($result === false) {
365 $same_resource = $result;
367 return $same_resource;
370 private function getConfigResourceIndex($config, $resource_type, $resource_name) {
372 $find_resource = array($resource_type => array('Name' => $resource_name));
373 for ($i = 0; $i < count($config); $i++) {
374 if ($this->compareResources(array($config[$i], $find_resource)) === true) {
383 * Format directive value.
384 * It is used on write config action to last prepare config before
385 * sending it to config writer.
387 * @param mixed $value directive value
388 * @return mixed formatted directive value
390 private function formatDirectiveValue($value) {
391 $directive_value = null;
392 if (is_bool($value)) {
393 $directive_value = Params::getBoolValue($value);
394 } elseif (is_int($value)) {
395 $directive_value = $value;
396 } elseif (is_string($value)) {
397 $value = str_replace('"', '\"', $value);
398 $value = "\"$value\"";
399 $directive_value = $value;
400 } elseif (is_array($value)) {
401 // only simple numeric arrays
403 for ($i = 0; $i < count($value); $i++) {
404 if (is_array($value[$i])) {
405 $dvalues[] = $this->updateSubResource($value[$i]);
407 $dvalues[] = $this->formatDirectiveValue($value[$i]);
410 $directive_value = $dvalues;
412 $emsg = sprintf("Attemp to format a directive value with not supported value type '%s'.", gettype($value));
413 $this->getModule('logging')->log(
416 Logging::CATEGORY_APPLICATION,
421 return $directive_value;
425 * Get supported component types.
426 * The support is determined by configured JSON tool in API config.
427 * If API is able to use JSON tool for specific component then the component is supported.
428 * Currently a component type is the same as related JSON tool type, but it can be
429 * changed in the future. From this reason components have theirown types.
431 * @return array supported component types
432 * @throws BConfigException if json tools support is disabled
434 public function getSupportedComponents() {
435 $components = array();
436 $types = $this->getComponentTypes();
437 $tools = $this->getModule('api_config')->getSupportedJSONTools();
438 for ($i = 0; $i < count($tools); $i++) {
439 if (in_array($tools[$i], $types)) {
440 array_push($components, $tools[$i]);
447 * Check if config support is configured and enabled
448 * globally and for specific component type.
451 * @param mixed $component_type component type for which config support is checked
452 * @throws BConfigException if support is not configured or disabled
454 private function checkConfigSupport($component_type = null) {
455 $api_cfg = $this->getModule('api_config');
456 if (!$api_cfg->isJSONToolsConfigured($component_type) || !$api_cfg->isJSONToolsEnabled()) {
457 throw new BConfigException(
458 JSONToolsError::MSG_ERROR_JSON_TOOLS_DISABLED,
459 JSONToolsError::ERROR_JSON_TOOLS_DISABLED
461 } elseif (!is_null($component_type) && !$api_cfg->isJSONToolConfigured($component_type)) {
462 $emsg = ' JSONTool=>' . $component_type;
463 throw new BConfigException(
464 JSONToolsError::MSG_ERROR_JSON_TOOL_NOT_CONFIGURED . $emsg,
465 JSONToolsError::ERROR_JSON_TOOLS_DISABLED
471 * Get JSON tool type by component type.
472 * Currently the mapping is one-to-one because each component type is the same
473 * as json tool type (dir == dir, bcons == bcons ...etc.). The method is for
474 * hypothetical case when component type is different than json tool type.
475 * It can be useful in future.
477 * @param string $component_type component type
478 * @return string json tool type
480 public function getJSONToolTypeByComponentType($component_type) {
482 switch ($component_type) {
483 case self::COMPONENT_DIR_TYPE: $tool_type = APIConfig::JSON_TOOL_DIR_TYPE; break;
484 case self::COMPONENT_SD_TYPE: $tool_type = APIConfig::JSON_TOOL_SD_TYPE; break;
485 case self::COMPONENT_FD_TYPE: $tool_type = APIConfig::JSON_TOOL_FD_TYPE; break;
486 case self::COMPONENT_BCONS_TYPE: $tool_type = APIConfig::JSON_TOOL_BCONS_TYPE; break;
491 function overwrite_directives_callback($directive_name, $directive_value) {
493 $overwrite_directives = array(
508 if (in_array($directive_name, $overwrite_directives)) {
509 $directive = "{$directive_name}=\"{$directive_value}\"";