]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/protected/Pages/API/Pools.php
baculum: Assign Baculum copyright to Kern Sibbald
[bacula/bacula] / gui / baculum / protected / Pages / API / Pools.php
index 7fecf7c494e234cb18f27a6b64632573b6ef3de9..f697cf06cc87d54e22acf49a1206142b33d278fb 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,15 +24,20 @@ class Pools extends BaculumAPI {
        public function get() {
                $limit = intval($this->Request['limit']);
                $pools = $this->getModule('pool')->getPools($limit);
-               $allowedPools = $this->getModule('bconsole')->bconsoleCommand($this->director, array('.pool'), $this->user)->output;
-               $poolsOutput = array();
-               foreach($pools as $pool) {
-                       if(in_array($pool->name, $allowedPools)) {
-                               $poolsOutput[] = $pool;
+               $allowedPools = $this->getModule('bconsole')->bconsoleCommand($this->director, array('.pool'), $this->user);
+               if ($allowedPools->exitcode === 0) {
+                       $poolsOutput = array();
+                       foreach($pools as $pool) {
+                               if(in_array($pool->name, $allowedPools->output)) {
+                                       $poolsOutput[] = $pool;
+                               }
                        }
+                       $this->output = $poolsOutput;
+                       $this->error = PoolError::ERROR_NO_ERRORS;
+               } else {
+                       $this->output = $allowedPools->output;
+                       $this->error = $allowedPools->exitcode;
                }
-               $this->output = $poolsOutput;
-               $this->error = PoolError::ERROR_NO_ERRORS;
        }
 }
-?>
\ No newline at end of file
+?>