]> 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 1460da4116f7e7319761f296a0a8560855f01780..f697cf06cc87d54e22acf49a1206142b33d278fb 100644 (file)
@@ -1,35 +1,43 @@
 <?php
-/**
- * Bacula® - The Network Backup Solution
- * Baculum - Bacula web interface
+/*
+ * 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 main author of Bacula is Kern Sibbald, with contributions from many
- * others, a complete list can be found in the file AUTHORS.
+ * The original author of Bacula is Kern Sibbald, with contributions
+ * from many others, a complete list can be found in the file AUTHORS.
  *
  * You may use this file and others of this release according to the
  * license defined in the LICENSE file, which includes the Affero General
  * Public License, v3.0 ("AGPLv3") and some additional permissions and
  * terms pursuant to its AGPLv3 Section 7.
  *
- * Bacula® is a registered trademark of Kern Sibbald.
+ * This notice must be preserved when any source code is
+ * conveyed and/or propagated.
+ *
+ * Bacula(R) is a registered trademark of Kern Sibbald.
  */
  
 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
+?>