]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/API/Pages/API/JobTasks.php
4b83a9bcb7d50c00c893d3467d1f2f55914938dc
[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 = intval($this->Request['limit']);
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                         $jobs = array();
34                         $error = false;
35                         $error_obj = null;
36                         for($i = 0; $i < count($directors->output); $i++) {
37                                 $jobsList = $this->getModule('bconsole')->bconsoleCommand($directors->output[$i], $jobs_cmd, $this->user);
38                                 if ($jobsList->exitcode != 0) {
39                                         $error_obj = $jobsList;
40                                         $error = true;
41                                         break;
42                                 }
43                                 $jobsshow = $this->getModule('bconsole')->bconsoleCommand($directors->output[$i], array('show', 'jobs'), $this->user);
44                                 if ($jobsshow->exitcode != 0) {
45                                         $error_obj = $jobsshow;
46                                         $error = true;
47                                         break;
48                                 }
49                                 $jobs[$directors->output[$i]] = array();
50                                 for($j = 0; $j < count($jobsList->output); $j++) {
51                                         /**
52                                          * Checking by "show job" command is ugly way to be sure that is reading jobname but not some 
53                                          * random output (eg. "You have messages." or debugging).
54                                          * For now I did not find nothing better for be sure that output contains job.
55                                          */
56                                         for($k = 0; $k < count($jobsshow->output); $k++) {
57                                                 if(preg_match('/^Job: name=' . $jobsList->output[$j] . '.*/', $jobsshow->output[$k]) === 1) {
58                                                         $jobs[$directors->output[$i]][] = $jobsList->output[$j];
59                                                         break;
60                                                 }
61                                         }
62                                         // limit per director, not for entire elements
63                                         if($limit > 0 && count($jobs[$directors->output[$i]]) === $limit) {
64                                                 break;
65                                         }
66                                 }
67                         }
68                         if ($error === true) {
69                                 $this->output = $error_obj->output;
70                                 $this->error = $error_obj->exitcode;
71                         } else {
72                                 $this->output = $jobs;
73                                 $this->error =  BconsoleError::ERROR_NO_ERRORS;
74                         }
75                 } else {
76                         $this->output = $directors->output;
77                         $this->error = $directors->exitcode;
78                 }
79         }
80 }
81
82 ?>