]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/API/Pages/API/JobTasks.php
baculum: API endpoints code refactor
[bacula/bacula] / gui / baculum / protected / API / Pages / API / JobTasks.php
1 <?php
2 /*
3  * Bacula(R) - The Network Backup Solution
4  * Baculum   - Bacula web interface
5  *
6  * Copyright (C) 2013-2017 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 class JobTasks extends BaculumAPIServer {
24         public function get() {
25                 $limit = $this->Request->contains('limit') ? intval($this->Request['limit']) : 0;
26                 $jobs_cmd = array('.jobs');
27                 if ($this->Request->contains('type') && array_key_exists($this->Request['type'], $this->getModule('misc')->job_types)) {
28                         array_push($jobs_cmd, 'type="' . $this->Request['type']. '"');
29                 }
30
31                 $directors = $this->getModule('bconsole')->getDirectors();
32                 if($directors->exitcode != 0) {
33                         $this->output = $directors->output;
34                         $this->error = $directors->exitcode;
35                         return;
36                 }
37                 $jobs = array();
38                 $error = false;
39                 $error_obj = null;
40                 for($i = 0; $i < count($directors->output); $i++) {
41                         $job_list = $this->getModule('bconsole')->bconsoleCommand($directors->output[$i], $jobs_cmd);
42                         if ($job_list->exitcode != 0) {
43                                 $error_obj = $job_list;
44                                 $error = true;
45                                 break;
46                         }
47                         $jobs_show = $this->getModule('bconsole')->bconsoleCommand($directors->output[$i], array('show', 'jobs'));
48                         if ($jobs_show->exitcode != 0) {
49                                 $error_obj = $jobs_show;
50                                 $error = true;
51                                 break;
52                         }
53                         $jobs[$directors->output[$i]] = array();
54                         for($j = 0; $j < count($job_list->output); $j++) {
55                                 /**
56                                  * Checking by "show job" command is ugly way to be sure that is reading jobname but not some 
57                                  * random output (eg. "You have messages." or debugging).
58                                  * For now I did not find nothing better for be sure that output contains job.
59                                  */
60                                 for($k = 0; $k < count($jobs_show->output); $k++) {
61                                         if(preg_match('/^Job: name=' . $job_list->output[$j] . '.*/', $jobs_show->output[$k]) === 1) {
62                                                 $jobs[$directors->output[$i]][] = $job_list->output[$j];
63                                                 break;
64                                         }
65                                 }
66                                 // limit per director, not for entire elements
67                                 if($limit > 0 && count($jobs[$directors->output[$i]]) === $limit) {
68                                         break;
69                                 }
70                         }
71                 }
72                 if ($error === true) {
73                         $this->output = $error_obj->output;
74                         $this->error = $error_obj->exitcode;
75                 } else {
76                         $this->output = $jobs;
77                         $this->error =  BconsoleError::ERROR_NO_ERRORS;
78                 }
79         }
80 }
81
82 ?>