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