download button for ssh commands
[plstackapi.git] / planetstack / core / xoslib / static / js / xosTenant.js
index 0182f9f..4225cac 100644 (file)
@@ -5,7 +5,7 @@ XOSTenantSite = XOSModel.extend( {
 });
 
 XOSTenantSiteCollection = XOSCollection.extend( {
-    listFields: ["name", "allocated"],
+    listFields: ["name", "allocated", "ready"],
     modelName: "tenantSite",
     collectionName: "tenantSites",
 
@@ -14,17 +14,33 @@ XOSTenantSiteCollection = XOSCollection.extend( {
         var id = 0;
         for (siteName in slice.attributes.site_allocation) {
             allocated = slice.attributes.site_allocation[siteName];
-            tenantSites.push(new XOSTenantSite( { name: siteName, allocated: allocated, id: id} ));
+            ready = slice.attributes.site_ready[siteName] || 0;
+            tenantSites.push(new XOSTenantSite( { name: siteName, allocated: allocated, ready: ready, id: id} ));
             id = id + 1;
         }
         for (index in xos.tenantview.models[0].attributes.blessed_site_names) {
             siteName = xos.tenantview.models[0].attributes.blessed_site_names[index];
             if (! (siteName in slice.attributes.site_allocation)) {
-                tenantSites.push(new XOSTenantSite( { name: siteName, allocated: 0, id: id} ));
+                tenantSites.push(new XOSTenantSite( { name: siteName, allocated: 0, ready: 0, id: id} ));
                 id = id + 1;
             }
         }
         this.set(tenantSites);
+
+        var that=this;
+        this.listenTo(slice, 'change', function() { that.getReadyFromSlice(slice); })
+    },
+
+    getReadyFromSlice: function(slice) {
+        for (siteName in slice.attributes.site_ready) {
+            ready = slice.attributes.site_ready[siteName];
+            for (index in this.models) {
+                tenantSite = this.models[index];
+                if (tenantSite.attributes.name == siteName) {
+                    tenantSite.set("ready", ready);
+                }
+            }
+        }
     },
 
     putToSlice: function(slice) {
@@ -135,7 +151,7 @@ XOSTenantApp.buildViews = function() {
 \r
      tenantSummaryClass = XOSTenantSummaryView.extend({template: "#xos-detail-template",\r
                                                 app: XOSTenantApp,\r
-                                                detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports", "mount_data_sets"],\r
+                                                detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports"],\r
                                                 fieldDisplayNames: {serviceClass: "Service Level", "default_flavor": "Flavor", "default_image": "Image", "mount_data_sets": "Data Sets"},\r
                                                 helpText: {"serviceClass": "Existing slivers will be re-instantiated if changed",\r
                                                            "default_image": "Existing slivers will be re-instantiated if changed",\r
@@ -281,25 +297,8 @@ XOSTenantApp.editUsers = function(model) {
     $("#tenant-edit-users-dialog").dialog("open");\r
 };\r
 \r
-XOSTenantApp.downloadSSHOld = function(model) {\r
-    sshCommands = "";\r
-    for (index in model.attributes.sliceInfo.sshCommands) {\r
-         sshCommand = model.attributes.sliceInfo.sshCommands[index];\r
-         sshCommands = sshCommands + sshCommand + "\n";\r
-    }\r
-\r
-    if (sshCommands.length == 0) {\r
-         alert("this slice has no instantiated slivers yet");\r
-         return;\r
-    }\r
-\r
-    var myWindow = window.open("", "ssh_command_list",""); // "width=640, height=480");\r
-    myWindow.document.write("<html><head><title>SSH Commands</title></head><body><pre>" + sshCommands + "</pre></body></html>");\r
-    myWindow.document.close();\r
-};\r
-\r
 XOSTenantApp.downloadSSH = function(model) {\r
-    sshCommands = "";\r
+    var sshCommands = "";\r
     for (index in model.attributes.sliceInfo.sshCommands) {\r
          sshCommand = model.attributes.sliceInfo.sshCommands[index];\r
          sshCommands = sshCommands + sshCommand + "\n";\r
@@ -318,7 +317,15 @@ XOSTenantApp.downloadSSH = function(model) {
        modal: true,
        width: 640,
        buttons : {
-            "Ok" : function() {
+            "Download": function() {
+                var dlLink = document.createElement('a');
+                dlLink.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(sshCommands));
+                dlLink.setAttribute('download', 'sshcommands.txt');
+                dlLink.click();
+
+                //window.open('data:text/text,' + encodeURIComponent(sshCommands));
+            },
+            "Close" : function() {
               $(this).dialog("close");
             },
           }