]> git.datanom.net - omvzfs.git/blobdiff - gui/rpc/zfs.inc
Initial implementation of GUI for adding ZFS pools plus minor bugfixes.
[omvzfs.git] / gui / rpc / zfs.inc
index 3d61e1aea4ca4d251e7d969878157bf93c7d5cc1..f0b64f6de2ca3d3a9550aa707c51ce71eb8a54f5 100644 (file)
@@ -19,6 +19,7 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
 
        /* Initialize the RPC service. Different methods of the RPC service are declared here*/
        public function initialize() {
+               $this->registerMethod("addPool");
                $this->registerMethod("getObjectTree");
                $this->registermethod("passParam");
                $this->registermethod("addObject");
@@ -30,6 +31,33 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                $this->registermethod("createShare");
        }
 
+       public function addPool($params, $context) {
+               $this->validateMethodContext($context, array("role" => OMV_ROLE_ADMINISTRATOR));
+               switch ($params['pooltype']) {
+               case "basic":
+                       $pooltype = OMVModuleZFSVdevType::OMVMODULEZFSPLAIN;
+                       break;
+               case "mirror":
+                       $pooltype = OMVModuleZFSVdevType::OMVMODULEZFSMIRROR;
+                       break;
+               case "raidz1":
+                       $pooltype = OMVModuleZFSVdevType::OMVMODULEZFSRAIDZ1;
+                       break;
+               case "raidz2":
+                       $pooltype = OMVModuleZFSVdevType::OMVMODULEZFSRAIDZ2;
+                       break;
+               case "raidz3":
+                       $pooltype = OMVModuleZFSVdevType::OMVMODULEZFSRAIDZ3;
+                       break;
+               default:
+                       throw new OMVModuleZFSException("Incorrect pool type specified");
+                       break;
+               }
+               $disks = preg_split("/[,;]/", $params['devices']);
+               $vdev = new OMVModuleZFSVdev($params['name'], $pooltype, $disks);
+               $pool = new OMVModuleZFSZpool($vdev);
+       }
+
        public function getObjectTree($params, $context) {
                $this->validateMethodContext($context, array("role" => OMV_ROLE_ADMINISTRATOR));
                $objects = OMVModuleZFSUtil::getZFSFlatArray();
This page took 0.030018 seconds and 5 git commands to generate.