0182f9f73e6acfa33ad404609105dd6d6d69638a
[plstackapi.git] / planetstack / core / xoslib / static / js / xosTenant.js
1 XOSTenantSite = XOSModel.extend( {
2     listFields: ["name", "allocated"],
3     modelName: "tenantSite",
4     collectionName: "tenantSites"
5 });
6
7 XOSTenantSiteCollection = XOSCollection.extend( {
8     listFields: ["name", "allocated"],
9     modelName: "tenantSite",
10     collectionName: "tenantSites",
11
12     getFromSlice: function(slice) {
13         var tenantSites = [];
14         var id = 0;
15         for (siteName in slice.attributes.site_allocation) {
16             allocated = slice.attributes.site_allocation[siteName];
17             tenantSites.push(new XOSTenantSite( { name: siteName, allocated: allocated, id: id} ));
18             id = id + 1;
19         }
20         for (index in xos.tenantview.models[0].attributes.blessed_site_names) {
21             siteName = xos.tenantview.models[0].attributes.blessed_site_names[index];
22             if (! (siteName in slice.attributes.site_allocation)) {
23                 tenantSites.push(new XOSTenantSite( { name: siteName, allocated: 0, id: id} ));
24                 id = id + 1;
25             }
26         }
27         this.set(tenantSites);
28     },
29
30     putToSlice: function(slice) {
31         slice.attributes.site_allocation = {};
32         for (index in this.models) {
33             var model = this.models[index];
34             slice.attributes.site_allocation[ model.attributes.name ] = model.attributes.allocated;
35         }
36     },
37 });
38
39 XOSEditUsersView = Marionette.ItemView.extend({
40             template: "#tenant-edit-users",
41             viewInitializers: [],
42
43             onShow: function() {
44                 _.each(this.viewInitializers, function(initializer) {
45                     initializer();
46                 });
47             },
48
49             templateHelpers: function() { return { detailView: this, model: this.model }; },
50
51             });
52
53 XOSTenantSummaryView = XOSDetailView.extend({
54             events: {"change": "onChange"},
55
56             onChange: function(e) {
57                 XOSTenantApp.setDirty(true);
58             },
59
60             saveSuccess: function() {
61                 console.log("saveSuccess!");
62                 XOSTenantApp.setDirty(false);
63             },
64
65             });
66
67
68 XOSTenantButtonView = Marionette.ItemView.extend({
69             template: "#xos-tenant-buttons-template",
70
71             events: {"click button.btn-tenant-create": "createClicked",
72                      "click button.btn-tenant-delete": "deleteClicked",
73                      "click button.btn-tenant-add-user": "addUserClicked",
74                      "click button.btn-tenant-save": "saveClicked",
75                      "click button.btn-tenant-download-ssh": "downloadClicked",
76                      },
77
78             createClicked: function(e) {
79                      XOSTenantApp.addSlice();
80                      },
81
82             deleteClicked: function(e) {
83                      XOSTenantApp.deleteSlice(this.options.linkedView.model);
84                      },
85
86             addUserClicked: function(e) {
87                      XOSTenantApp.editUsers(this.options.linkedView.model);
88                      },
89
90             downloadClicked: function(e) {
91                      XOSTenantApp.downloadSSH(this.options.linkedView.model);
92                      },
93
94             saveClicked: function(e) {
95                      model = this.options.linkedView.model;
96                      model.tenantSiteCollection.putToSlice(model);
97                      model.attributes.users = model.usersBuffer;
98
99                      e.preventDefault();
100                      this.options.linkedView.save();
101                      //this.options.linkedView.submitContinueClicked.call(this.options.linkedView, e);
102                      //XOSTenantApp.setDirty(false);
103                      },
104             });
105
106 XOSTenantApp = new XOSApplication({
107     logTableId: "#logTable",
108     statusMsgId: "#statusMsg",
109     hideTabsByDefault: true,
110     dirty: false,
111     varName: "XOSTenantApp",
112 });
113
114 XOSTenantApp.addRegions({
115     tenantSliceSelector: "#tenantSliceSelector",
116     tenantSummary: "#tenantSummary",
117     tenantSiteList: "#tenantSiteList",
118     tenantButtons: "#tenantButtons",
119     tenantAddSliceInterior: "#tenant-addslice-interior",
120     tenantEditUsersInterior: "#tenant-edit-users-interior",
121     tenantSSHCommandsInterior: "#tenant-ssh-commands-interior",
122 });
123
124 XOSTenantApp.setDirty = function(dirty) {
125     XOSTenantApp.dirty = dirty;
126     if (dirty) {
127         $("button.btn-tenant-save").addClass("btn-success");
128     } else {
129         $("button.btn-tenant-save").removeClass("btn-success");
130     }
131 };
132
133 XOSTenantApp.buildViews = function() {
134      XOSTenantApp.tenantSites = new XOSTenantSiteCollection();\r
135 \r
136      tenantSummaryClass = XOSTenantSummaryView.extend({template: "#xos-detail-template",\r
137                                                 app: XOSTenantApp,\r
138                                                 detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports", "mount_data_sets"],\r
139                                                 fieldDisplayNames: {serviceClass: "Service Level", "default_flavor": "Flavor", "default_image": "Image", "mount_data_sets": "Data Sets"},\r
140                                                 helpText: {"serviceClass": "Existing slivers will be re-instantiated if changed",\r
141                                                            "default_image": "Existing slivers will be re-instantiated if changed",\r
142                                                            "default_flavor": "Existing slivers will be re-instantiated if changed"},\r
143 \r
144                                                 onShow: function() {\r
145                                                     // the slice selector is in a different table, so make every label cell the maximal width\r
146                                                     make_same_width("#xos-tenant-view-panel", ".xos-label-cell");\r
147                                                 },\r
148                                                 });\r
149 \r
150      XOSTenantApp.tenantSummaryView = tenantSummaryClass;\r
151 \r
152      tenantAddClass = XOSDetailView.extend({template: "#xos-detail-template",\r
153                                                 app: XOSTenantApp,\r
154                                                 detailFields: ["name", "description"]});\r
155 \r
156      XOSTenantApp.tenantAddView = tenantAddClass;\r
157 \r
158      tenantSiteItemClass = XOSItemView.extend({template: "#xos-listitem-template",\r
159                                                app: XOSTenantApp});\r
160 \r
161      XOSTenantApp.tenantSiteItemView = tenantSiteItemClass;\r
162 \r
163      tenantSiteListClass = XOSDataTableView.extend({template: "#xos-list-template",\r
164                                                app: XOSTenantApp,\r
165                                                childView: tenantSiteItemClass,\r
166                                                collection: XOSTenantApp.tenantSites,\r
167                                                title: "sites",\r
168                                                inputType: {allocated: "spinner"},\r
169                                                noDeleteColumn: true,\r
170                                                disablePaginate: true,\r
171                                                disableFilter: true,\r
172                                                fieldDisplayNames: {"name": "Site"},\r
173                                                });\r
174 \r
175      XOSTenantApp.tenantSiteListView = tenantSiteListClass;\r
176 \r
177      XOSTenantApp.tenantSliceSelectorView = SliceSelectorView.extend( {\r
178          sliceChanged: function(id) {\r
179              XOSTenantApp.navToSlice(id);\r
180          },\r
181          filter: function(slice) {\r
182              return slice.attributes.current_user_can_see;\r
183          },\r
184      });\r
185 \r
186      xos.sites.fetch();\r
187      xos.slicesPlus.fetch();\r
188      xos.tenantview.fetch();\r
189 };\r
190 \r
191 make_choices = function(list_of_names, list_of_values) {\r
192     result = [];\r
193     if (!list_of_values) {\r
194         for (index in list_of_names) {\r
195             displayName = list_of_names[index];\r
196             result.push( [displayName, displayName] );\r
197         }\r
198     } else {\r
199         for (index in list_of_names) {\r
200             displayName = list_of_names[index];\r
201             id = list_of_values[index];\r
202             result.push( [displayName, id] );\r
203         }\r
204     }\r
205     return result;\r
206 };\r
207 \r
208 XOSTenantApp.navToSlice = function(id) {\r
209     XOSTenantApp.viewSlice(xos.slicesPlus.get(id));\r
210 };\r
211 \r
212 XOSTenantApp.adjustCollectionField = function(collectionName, id, fieldName, amount) {\r
213     model = XOSTenantApp[collectionName].get(id);\r
214     model.set(fieldName, Math.max(model.get(fieldName) + amount, 0));\r
215     XOSTenantApp.setDirty(true);\r
216 };\r
217 \r
218 XOSTenantApp.addSlice = function() {\r
219     var app=this;\r
220 \r
221     if (!xos.tenant().current_user_can_create_slice) {\r
222         window.alert("You do not have sufficient rights to create a slice on your site");\r
223         return;\r
224     }\r
225 \r
226     model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,\r
227                                       name: xos.tenant().current_user_login_base + "_",\r
228                                       creator: xos.tenant().current_user_id});\r
229     console.log(model);\r
230     var detailView = new XOSTenantApp.tenantAddView({model: model,\r
231                                                      collection: xos.slicesPlus,\r
232                                                      noSubmitButton: true,\r
233                                                     });\r
234     detailView.dialog = $("#tenant-addslice-dialog");\r
235     app.tenantAddSliceInterior.show(detailView);\r
236     $("#tenant-addslice-dialog").dialog({\r
237        autoOpen: false,
238        modal: true,
239        width: 640,
240        buttons : {
241             "Create Slice" : function() {
242               var addDialog = this;
243               console.log("SAVE!!!");
244               detailView.synchronous = true;
245               detailView.afterSave = function() { $(addDialog).dialog("close"); XOSTenantApp.navToSlice(detailView.model.id); }
246               detailView.save();
247             },
248             "Cancel" : function() {
249               $(this).dialog("close");
250             }
251           }
252         });
253     $("#tenant-addslice-dialog").dialog("open");\r
254 };\r
255 \r
256 XOSTenantApp.editUsers = function(model) {\r
257     var app=this;\r
258     var detailView = new XOSEditUsersView({model: model, collection: xos.slicesPlus});\r
259     detailView.dialog = $("#tenant-edit-users-dialog");\r
260     app.tenantEditUsersInterior.show(detailView);\r
261     $("#tenant-edit-users-dialog").dialog({\r
262        autoOpen: false,
263        modal: true,
264        width: 640,
265        buttons : {
266             "Ok" : function() {
267               var editDialog = this;
268               user_ids = all_options($("#tenant-edit-users-dialog").find(".select-picker-to"));
269               user_ids = user_ids.map( function(x) { return parseInt(x,10); } );
270               if (!array_same_elements(user_ids, model.usersBuffer)) {
271                   XOSTenantApp.setDirty(true);
272               }
273               model.usersBuffer = user_ids;
274               $(editDialog).dialog("close");
275             },
276             "Cancel" : function() {
277               $(this).dialog("close");
278             }
279           }
280         });
281     $("#tenant-edit-users-dialog").dialog("open");\r
282 };\r
283 \r
284 XOSTenantApp.downloadSSHOld = function(model) {\r
285     sshCommands = "";\r
286     for (index in model.attributes.sliceInfo.sshCommands) {\r
287          sshCommand = model.attributes.sliceInfo.sshCommands[index];\r
288          sshCommands = sshCommands + sshCommand + "\n";\r
289     }\r
290 \r
291     if (sshCommands.length == 0) {\r
292          alert("this slice has no instantiated slivers yet");\r
293          return;\r
294     }\r
295 \r
296     var myWindow = window.open("", "ssh_command_list",""); // "width=640, height=480");\r
297     myWindow.document.write("<html><head><title>SSH Commands</title></head><body><pre>" + sshCommands + "</pre></body></html>");\r
298     myWindow.document.close();\r
299 };\r
300 \r
301 XOSTenantApp.downloadSSH = function(model) {\r
302     sshCommands = "";\r
303     for (index in model.attributes.sliceInfo.sshCommands) {\r
304          sshCommand = model.attributes.sliceInfo.sshCommands[index];\r
305          sshCommands = sshCommands + sshCommand + "\n";\r
306     }\r
307 \r
308     if (sshCommands.length == 0) {\r
309          alert("this slice has no instantiated slivers yet");\r
310          return;\r
311     }\r
312 \r
313     var htmlView = new HTMLView({html: '<pre style="overflow: auto; word-wrap: normal; white-space: pre; word-wrap: normal;">' + sshCommands + '</pre>'});\r
314     XOSTenantApp.tenantSSHCommandsInterior.show(htmlView);\r
315 \r
316     $("#tenant-ssh-commands-dialog").dialog({\r
317        autoOpen: false,
318        modal: true,
319        width: 640,
320        buttons : {
321             "Ok" : function() {
322               $(this).dialog("close");
323             },
324           }
325         });
326     $("#tenant-ssh-commands-dialog").dialog("open");\r
327 };\r
328 \r
329 XOSTenantApp.deleteSlice = function(model) {\r
330     var app=this;\r
331     app.deleteDialog(model, function() { console.log("afterDelete"); app.viewSlice(undefined); });\r
332 };\r
333 \r
334 XOSTenantApp.viewSlice = function(model) {\r
335     if (XOSTenantApp.dirty) {\r
336         if (!confirm("The current sliver has unsaved data -- view new sliver anyway ?")) {\r
337             $("#tenantSliceSelector select").val(XOSTenantApp.currentSlice.id);\r
338             return;\r
339         }\r
340     }\r
341 \r
342     XOSTenantApp.setDirty(false);\r
343 \r
344     if (!model && xos.slicesPlus.models.length > 0) {\r
345         model = xos.slicesPlus.models[0];\r
346     }\r
347 \r
348     if (model) {\r
349         sliceSelector = new XOSTenantApp.tenantSliceSelectorView({collection: xos.slicesPlus,\r
350                                                                   selectedID: model ? model.id : null,\r
351                                                                  } );\r
352         XOSTenantApp.sliceSelector = sliceSelector;\r
353         XOSTenantApp.tenantSliceSelector.show(sliceSelector);\r
354 \r
355         tenantSummary = new XOSTenantApp.tenantSummaryView({model: model,\r
356                                                             choices: {mount_data_sets: make_choices(xos.tenant().public_volume_names, null),\r
357                                                                       serviceClass: make_choices(xos.tenant().blessed_service_class_names, xos.tenant().blessed_service_classes),\r
358                                                                       default_image: make_choices(xos.tenant().blessed_image_names, xos.tenant().blessed_images),\r
359                                                                       default_flavor: make_choices(xos.tenant().blessed_flavor_names, xos.tenant().blessed_flavors),},\r
360                                                            });\r
361         XOSTenantApp.tenantSummary.show(tenantSummary);\r
362 \r
363         tenantSites = new XOSTenantSiteCollection();\r
364         tenantSites.getFromSlice(model);\r
365         model.usersBuffer = model.attributes.users; /* save a copy of 'users' that we can edit. This prevents another view (developer) from overwriting our copy with a fetch from the server */\r
366         model.usersOrig = model.attributes.users;   /* save an immutable copy that we'll use for username lookups */\r
367         model.user_namesOrig = model.attributes.user_names;\r
368         model.tenantSiteCollection = tenantSites;\r
369         XOSTenantApp.tenantSites = tenantSites;\r
370 \r
371         tenantSiteList = new XOSTenantApp.tenantSiteListView({collection: tenantSites });\r
372         XOSTenantApp.tenantSiteList.show(tenantSiteList);\r
373         // on xos.slicePlus.sort, need to update xostenantapp.tenantSites\r
374 \r
375         XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { app: XOSTenantApp,\r
376                                                                     linkedView: tenantSummary } ) );\r
377 \r
378         XOSTenantApp.currentSlice = model;\r
379     } else {\r
380         XOSTenantApp.tenantSliceSelector.show(new HTMLView({html: ""}));\r
381         XOSTenantApp.tenantSummary.show(new HTMLView({html: "You have no slices"}));\r
382         XOSTenantApp.tenantSiteList.show(new HTMLView({html: ""}));\r
383         XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { template: "#xos-tenant-buttons-noslice-template",\r
384                                                                     app: XOSTenantApp,\r
385                                                                     linkedView: tenantSummary } ) );\r
386     }\r
387 };\r
388 \r
389 XOSTenantApp.sanityCheck = function() {\r
390     errors = [];\r
391     if (xos.tenant().blessed_service_classes.length == 0) {\r
392         errors.push("no blessed service classes");\r
393     }\r
394     if (xos.tenant().blessed_flavors.length == 0) {\r
395         errors.push("no blessed flavors");\r
396     }\r
397     if (xos.tenant().blessed_images.length == 0) {\r
398         errors.push("no blessed images");\r
399     }\r
400     if (xos.tenant().blessed_sites.length == 0) {\r
401         errors.push("no blessed sites");\r
402     }\r
403     if (xos.tenant().current_user_site_id == null) {\r
404         errors.push("current user does not have a site");\r
405     }\r
406 \r
407     if (errors.length > 0) {\r
408          $("#tenantSummary").html("Tenant view sanity check failed<br>" + errors.join("<br>"));\r
409          return false;\r
410     }\r
411 \r
412     return true;\r
413 }\r
414 \r
415 XOSTenantApp.collectionLoadChange = function() {\r
416     stats = xos.getCollectionStatus();\r
417 \r
418     if (!XOSTenantApp.navigationStarted) {\r
419         if (stats["isLoaded"] + stats["failedLoad"] >= stats["startedLoad"]) {\r
420             if (XOSTenantApp.sanityCheck()) {\r
421                 XOSTenantApp.viewSlice(undefined);\r
422             }\r
423         } else {\r
424             $("#tenantSummary").html("<h3>Loading...</h3><div id='xos-startup-progress'></div>");\r
425             $("#xos-startup-progress").progressbar({value: stats["completedLoad"], max: stats["startedLoad"]});\r
426         }\r
427     }\r
428 };\r
429 \r
430 XOSTenantApp.on("start", function() {\r
431      XOSTenantApp.buildViews();
432
433      // fire it once to initially show the progress bar
434      XOSTenantApp.collectionLoadChange();
435
436      // fire it each time the collection load status is updated
437      Backbone.on("xoslib:collectionLoadChange", XOSTenantApp.collectionLoadChange);
438 });
439
440 $(document).ready(function(){
441     XOSTenantApp.start();
442 });
443