]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/protected/Pages/API/Job.php
baculum: Assign Baculum copyright to Kern Sibbald
[bacula/bacula] / gui / baculum / protected / Pages / API / Job.php
index 0913200d42970a9c54b933b3e07d46b037c6de77..96af02eb85a397257d75c6b2c774bb2d71931bf6 100644 (file)
@@ -3,7 +3,7 @@
  * Bacula(R) - The Network Backup Solution
  * Baculum   - Bacula web interface
  *
- * Copyright (C) 2013-2015 Marcin Haba
+ * Copyright (C) 2013-2016 Kern Sibbald
  *
  * The main author of Baculum is Marcin Haba.
  * The original author of Bacula is Kern Sibbald, with contributions
@@ -24,13 +24,18 @@ class Job extends BaculumAPI {
        public function get() {
                $jobid = intval($this->Request['id']);
                $job = $this->getModule('job')->getJobById($jobid);
-               $allowedJobs = $this->getModule('bconsole')->bconsoleCommand($this->director, array('.jobs'), $this->user)->output;
-               if(!is_null($job) && in_array($job->name, $allowedJobs)) {
-                       $this->output = $job;
-                       $this->error = JobError::ERROR_NO_ERRORS;
+               $allowedJobs = $this->getModule('bconsole')->bconsoleCommand($this->director, array('.jobs'), $this->user);
+               if ($allowedJobs->exitcode === 0) {
+                       if(!is_null($job) && in_array($job->name, $allowedJobs->output)) {
+                               $this->output = $job;
+                               $this->error = JobError::ERROR_NO_ERRORS;
+                       } else {
+                               $this->output = JobError::MSG_ERROR_JOB_DOES_NOT_EXISTS;
+                               $this->error = JobError::ERROR_JOB_DOES_NOT_EXISTS;
+                       }
                } else {
-                       $this->output = JobError::MSG_ERROR_JOB_DOES_NOT_EXISTS;
-                       $this->error = JobError::ERROR_JOB_DOES_NOT_EXISTS;
+                       $this->output = $allowedJobs->output;
+                       $this->error = $allowedJobs->exitcode;
                }
        }
 
@@ -48,4 +53,4 @@ class Job extends BaculumAPI {
        }
 }
 
-?>
\ No newline at end of file
+?>