blob: ae6f955eeda30063cd3acdaee29e13fe865e8b6a [file] [log] [blame]
Scott Baker342d9b92015-01-11 13:44:30 -08001XOSTenantSite = XOSModel.extend( {
2 listFields: ["name", "allocated"],
3 modelName: "tenantSite",
4 collectionName: "tenantSites"
5});
6
7XOSTenantSiteCollection = XOSCollection.extend( {
8 listFields: ["name", "allocated"],
9 modelName: "tenantSite",
10 collectionName: "tenantSites",
11
Scott Baker97acad92015-01-12 19:45:40 -080012 getFromSlice: function(slice) {
Scott Baker342d9b92015-01-11 13:44:30 -080013 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 },
Scott Baker97acad92015-01-12 19:45:40 -080029
30 putToSlice: function(slice) {
31 slice.attributes.site_allocation = {};
32 for (index in this.models) {
Scott Baker435c2c92015-01-14 00:34:45 -080033 var model = this.models[index];
Scott Baker97acad92015-01-12 19:45:40 -080034 slice.attributes.site_allocation[ model.attributes.name ] = model.attributes.allocated;
35 }
36 },
Scott Baker342d9b92015-01-11 13:44:30 -080037});
38
Scott Baker97acad92015-01-12 19:45:40 -080039XOSEditUsersView = 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
Scott Bakerf5d97bd2015-01-20 00:04:19 -080053XOSTenantSummaryView = 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
Scott Baker97acad92015-01-12 19:45:40 -080067
Scott Baker342d9b92015-01-11 13:44:30 -080068XOSTenantButtonView = 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",
Scott Bakerec930102015-01-20 01:02:08 -080075 "click button.btn-tenant-download-ssh": "downloadClicked",
Scott Baker342d9b92015-01-11 13:44:30 -080076 },
77
78 createClicked: function(e) {
Scott Bakercd07a592015-01-12 12:37:38 -080079 XOSTenantApp.addSlice();
Scott Baker342d9b92015-01-11 13:44:30 -080080 },
81
82 deleteClicked: function(e) {
Scott Baker6b145aa2015-01-12 12:56:25 -080083 XOSTenantApp.deleteSlice(this.options.linkedView.model);
Scott Baker342d9b92015-01-11 13:44:30 -080084 },
85
86 addUserClicked: function(e) {
Scott Baker97acad92015-01-12 19:45:40 -080087 XOSTenantApp.editUsers(this.options.linkedView.model);
Scott Baker342d9b92015-01-11 13:44:30 -080088 },
89
Scott Bakerec930102015-01-20 01:02:08 -080090 downloadClicked: function(e) {
91 XOSTenantApp.downloadSSH(this.options.linkedView.model);
92 },
93
Scott Baker342d9b92015-01-11 13:44:30 -080094 saveClicked: function(e) {
Scott Baker97acad92015-01-12 19:45:40 -080095 model = this.options.linkedView.model;
96 model.tenantSiteCollection.putToSlice(model);
Scott Baker435c2c92015-01-14 00:34:45 -080097 model.attributes.users = model.usersBuffer;
Scott Bakerf5d97bd2015-01-20 00:04:19 -080098
99 e.preventDefault();
100 this.options.linkedView.save();
101 //this.options.linkedView.submitContinueClicked.call(this.options.linkedView, e);
102 //XOSTenantApp.setDirty(false);
Scott Baker342d9b92015-01-11 13:44:30 -0800103 },
104 });
105
106XOSTenantApp = new XOSApplication({
107 logTableId: "#logTable",
108 statusMsgId: "#statusMsg",
Scott Bakercd07a592015-01-12 12:37:38 -0800109 hideTabsByDefault: true,
Scott Baker5175e8a2015-01-20 00:20:12 -0800110 dirty: false,
Scott Bakercd07a592015-01-12 12:37:38 -0800111 varName: "XOSTenantApp",
Scott Baker342d9b92015-01-11 13:44:30 -0800112});
113
114XOSTenantApp.addRegions({
115 tenantSliceSelector: "#tenantSliceSelector",
116 tenantSummary: "#tenantSummary",
117 tenantSiteList: "#tenantSiteList",
118 tenantButtons: "#tenantButtons",
Scott Bakercd07a592015-01-12 12:37:38 -0800119 tenantAddSliceInterior: "#tenant-addslice-interior",
Scott Baker97acad92015-01-12 19:45:40 -0800120 tenantEditUsersInterior: "#tenant-edit-users-interior",
Scott Bakerec930102015-01-20 01:02:08 -0800121 tenantSSHCommandsInterior: "#tenant-ssh-commands-interior",
Scott Baker342d9b92015-01-11 13:44:30 -0800122});
123
Scott Bakerf5d97bd2015-01-20 00:04:19 -0800124XOSTenantApp.setDirty = function(dirty) {
Scott Baker5175e8a2015-01-20 00:20:12 -0800125 XOSTenantApp.dirty = dirty;
Scott Bakerf5d97bd2015-01-20 00:04:19 -0800126 if (dirty) {
127 $("button.btn-tenant-save").addClass("btn-success");
128 } else {
129 $("button.btn-tenant-save").removeClass("btn-success");
130 }
131};
132
Scott Bakercd07a592015-01-12 12:37:38 -0800133XOSTenantApp.buildViews = function() {
Scott Baker342d9b92015-01-11 13:44:30 -0800134 XOSTenantApp.tenantSites = new XOSTenantSiteCollection();
135
Scott Bakerf5d97bd2015-01-20 00:04:19 -0800136 tenantSummaryClass = XOSTenantSummaryView.extend({template: "#xos-detail-template",
Scott Baker342d9b92015-01-11 13:44:30 -0800137 app: XOSTenantApp,
Scott Baker97acad92015-01-12 19:45:40 -0800138 detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports", "mount_data_sets"],
Scott Bakere56d3272015-01-14 00:47:50 -0800139 fieldDisplayNames: {serviceClass: "Service Level", "default_flavor": "Flavor", "default_image": "Image", "mount_data_sets": "Data Sets"},
Scott Bakerc3876fb2015-01-20 12:37:36 -0800140 helpText: {"serviceClass": "Existing slivers will be re-instantiated if changed",
141 "default_image": "Existing slivers will be re-instantiated if changed",
Scott Baker51bacad2015-01-20 12:24:16 -0800142 "default_flavor": "Existing slivers will be re-instantiated if changed"},
Scott Bakere7a90452015-01-14 17:07:30 -0800143
144 onShow: function() {
145 // the slice selector is in a different table, so make every label cell the maximal width
146 make_same_width("#xos-tenant-view-panel", ".xos-label-cell");
147 },
Scott Baker97acad92015-01-12 19:45:40 -0800148 });
Scott Baker342d9b92015-01-11 13:44:30 -0800149
150 XOSTenantApp.tenantSummaryView = tenantSummaryClass;
151
Scott Bakercd07a592015-01-12 12:37:38 -0800152 tenantAddClass = XOSDetailView.extend({template: "#xos-detail-template",
153 app: XOSTenantApp,
154 detailFields: ["name", "description"]});
155
156 XOSTenantApp.tenantAddView = tenantAddClass;
157
Scott Baker342d9b92015-01-11 13:44:30 -0800158 tenantSiteItemClass = XOSItemView.extend({template: "#xos-listitem-template",
159 app: XOSTenantApp});
160
161 XOSTenantApp.tenantSiteItemView = tenantSiteItemClass;
162
163 tenantSiteListClass = XOSDataTableView.extend({template: "#xos-list-template",
164 app: XOSTenantApp,
165 childView: tenantSiteItemClass,
166 collection: XOSTenantApp.tenantSites,
167 title: "sites",
168 inputType: {allocated: "spinner"},
169 noDeleteColumn: true,
Scott Bakere56d3272015-01-14 00:47:50 -0800170 disablePaginate: true,
171 disableFilter: true,
Scott Bakere7a90452015-01-14 17:07:30 -0800172 fieldDisplayNames: {"name": "Site"},
Scott Baker342d9b92015-01-11 13:44:30 -0800173 });
174
175 XOSTenantApp.tenantSiteListView = tenantSiteListClass;
176
177 XOSTenantApp.tenantSliceSelectorView = SliceSelectorView.extend( {
178 sliceChanged: function(id) {
Scott Bakercd07a592015-01-12 12:37:38 -0800179 XOSTenantApp.navToSlice(id);
Scott Baker342d9b92015-01-11 13:44:30 -0800180 },
181 });
182
183 xos.sites.fetch();
184 xos.slicesPlus.fetch();
185 xos.tenantview.fetch();
186};
187
188make_choices = function(list_of_names, list_of_values) {
189 result = [];
190 if (!list_of_values) {
191 for (index in list_of_names) {
192 displayName = list_of_names[index];
193 result.push( [displayName, displayName] );
194 }
Scott Bakeraba91832015-01-12 13:37:31 -0800195 } else {
196 for (index in list_of_names) {
197 displayName = list_of_names[index];
198 id = list_of_values[index];
199 result.push( [displayName, id] );
200 }
Scott Baker342d9b92015-01-11 13:44:30 -0800201 }
202 return result;
203};
204
Scott Bakercd07a592015-01-12 12:37:38 -0800205XOSTenantApp.navToSlice = function(id) {
206 XOSTenantApp.viewSlice(xos.slicesPlus.get(id));
207};
208
209XOSTenantApp.adjustCollectionField = function(collectionName, id, fieldName, amount) {
210 model = XOSTenantApp[collectionName].get(id);
211 model.set(fieldName, Math.max(model.get(fieldName) + amount, 0));
Scott Bakerf5d97bd2015-01-20 00:04:19 -0800212 XOSTenantApp.setDirty(true);
Scott Bakercd07a592015-01-12 12:37:38 -0800213};
214
215XOSTenantApp.addSlice = function() {
216 var app=this;
Scott Bakerce0dfb82015-01-14 09:54:19 -0800217
218 if (!xos.tenant().current_user_can_create_slice) {
219 window.alert("You do not have sufficient rights to create a slice on your site");
220 return;
221 }
222
Scott Baker97acad92015-01-12 19:45:40 -0800223 model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,
Scott Bakerc8984372015-01-19 08:56:16 -0800224 name: xos.tenant().current_user_login_base + "_",
225 creator: xos.tenant().current_user_id});
Scott Bakercd07a592015-01-12 12:37:38 -0800226 console.log(model);
Scott Baker97acad92015-01-12 19:45:40 -0800227 var detailView = new XOSTenantApp.tenantAddView({model: model,
Scott Bakerc8984372015-01-19 08:56:16 -0800228 collection: xos.slicesPlus,
229 noSubmitButton: true,
Scott Baker97acad92015-01-12 19:45:40 -0800230 });
231 detailView.dialog = $("#tenant-addslice-dialog");
Scott Bakercd07a592015-01-12 12:37:38 -0800232 app.tenantAddSliceInterior.show(detailView);
233 $("#tenant-addslice-dialog").dialog({
234 autoOpen: false,
235 modal: true,
236 width: 640,
237 buttons : {
Scott Baker435c2c92015-01-14 00:34:45 -0800238 "Create Slice" : function() {
Scott Bakercd07a592015-01-12 12:37:38 -0800239 var addDialog = this;
Scott Baker97acad92015-01-12 19:45:40 -0800240 console.log("SAVE!!!");
Scott Bakercd07a592015-01-12 12:37:38 -0800241 detailView.synchronous = true;
242 detailView.afterSave = function() { $(addDialog).dialog("close"); XOSTenantApp.navToSlice(detailView.model.id); }
243 detailView.save();
244 },
245 "Cancel" : function() {
246 $(this).dialog("close");
247 }
248 }
249 });
250 $("#tenant-addslice-dialog").dialog("open");
251};
252
Scott Baker97acad92015-01-12 19:45:40 -0800253XOSTenantApp.editUsers = function(model) {
254 var app=this;
255 var detailView = new XOSEditUsersView({model: model, collection: xos.slicesPlus});
256 detailView.dialog = $("#tenant-edit-users-dialog");
257 app.tenantEditUsersInterior.show(detailView);
258 $("#tenant-edit-users-dialog").dialog({
259 autoOpen: false,
260 modal: true,
261 width: 640,
262 buttons : {
Scott Baker435c2c92015-01-14 00:34:45 -0800263 "Ok" : function() {
Scott Baker97acad92015-01-12 19:45:40 -0800264 var editDialog = this;
265 user_ids = all_options($("#tenant-edit-users-dialog").find(".select-picker-to"));
266 user_ids = user_ids.map( function(x) { return parseInt(x,10); } );
Scott Baker5175e8a2015-01-20 00:20:12 -0800267 if (!array_same_elements(user_ids, model.usersBuffer)) {
268 XOSTenantApp.setDirty(true);
269 }
Scott Baker435c2c92015-01-14 00:34:45 -0800270 model.usersBuffer = user_ids;
Scott Baker97acad92015-01-12 19:45:40 -0800271 $(editDialog).dialog("close");
272 },
273 "Cancel" : function() {
274 $(this).dialog("close");
275 }
276 }
277 });
278 $("#tenant-edit-users-dialog").dialog("open");
279};
280
Scott Bakerec930102015-01-20 01:02:08 -0800281XOSTenantApp.downloadSSHOld = function(model) {
282 sshCommands = "";
283 for (index in model.attributes.sliceInfo.sshCommands) {
284 sshCommand = model.attributes.sliceInfo.sshCommands[index];
285 sshCommands = sshCommands + sshCommand + "\n";
286 }
287
288 if (sshCommands.length == 0) {
289 alert("this slice has no instantiated slivers yet");
290 return;
291 }
292
293 var myWindow = window.open("", "ssh_command_list",""); // "width=640, height=480");
294 myWindow.document.write("<html><head><title>SSH Commands</title></head><body><pre>" + sshCommands + "</pre></body></html>");
295 myWindow.document.close();
296};
297
298XOSTenantApp.downloadSSH = function(model) {
299 sshCommands = "";
300 for (index in model.attributes.sliceInfo.sshCommands) {
301 sshCommand = model.attributes.sliceInfo.sshCommands[index];
302 sshCommands = sshCommands + sshCommand + "\n";
303 }
304
305 if (sshCommands.length == 0) {
306 alert("this slice has no instantiated slivers yet");
307 return;
308 }
309
Scott Baker61b5bfc2015-01-20 01:19:12 -0800310 var htmlView = new HTMLView({html: '<pre style="overflow: auto; word-wrap: normal; white-space: pre; word-wrap: normal;">' + sshCommands + '</pre>'});
Scott Bakerec930102015-01-20 01:02:08 -0800311 XOSTenantApp.tenantSSHCommandsInterior.show(htmlView);
312
313 $("#tenant-ssh-commands-dialog").dialog({
314 autoOpen: false,
315 modal: true,
316 width: 640,
317 buttons : {
318 "Ok" : function() {
319 $(this).dialog("close");
320 },
321 }
322 });
323 $("#tenant-ssh-commands-dialog").dialog("open");
324};
325
Scott Baker6b145aa2015-01-12 12:56:25 -0800326XOSTenantApp.deleteSlice = function(model) {
327 var app=this;
328 app.deleteDialog(model, function() { console.log("afterDelete"); app.viewSlice(undefined); });
329};
330
Scott Baker342d9b92015-01-11 13:44:30 -0800331XOSTenantApp.viewSlice = function(model) {
Scott Baker5175e8a2015-01-20 00:20:12 -0800332 if (XOSTenantApp.dirty) {
333 if (!confirm("The current sliver has unsaved data -- view new sliver anyway ?")) {
334 $("#tenantSliceSelector select").val(XOSTenantApp.currentSlice.id);
335 return;
336 }
337 }
338
339 XOSTenantApp.setDirty(false);
340
Scott Baker342d9b92015-01-11 13:44:30 -0800341 if (!model && xos.slicesPlus.models.length > 0) {
342 model = xos.slicesPlus.models[0];
343 }
344
Scott Bakerb52f7af2015-01-13 14:41:41 -0800345 if (model) {
346 sliceSelector = new XOSTenantApp.tenantSliceSelectorView({collection: xos.slicesPlus,
347 selectedID: model ? model.id : null,
348 } );
349 XOSTenantApp.sliceSelector = sliceSelector;
350 XOSTenantApp.tenantSliceSelector.show(sliceSelector);
Scott Baker342d9b92015-01-11 13:44:30 -0800351
Scott Bakerb52f7af2015-01-13 14:41:41 -0800352 tenantSummary = new XOSTenantApp.tenantSummaryView({model: model,
353 choices: {mount_data_sets: make_choices(xos.tenant().public_volume_names, null),
354 serviceClass: make_choices(xos.tenant().blessed_service_class_names, xos.tenant().blessed_service_classes),
355 default_image: make_choices(xos.tenant().blessed_image_names, xos.tenant().blessed_images),
356 default_flavor: make_choices(xos.tenant().blessed_flavor_names, xos.tenant().blessed_flavors),},
357 });
358 XOSTenantApp.tenantSummary.show(tenantSummary);
Scott Baker342d9b92015-01-11 13:44:30 -0800359
Scott Bakerb52f7af2015-01-13 14:41:41 -0800360 tenantSites = new XOSTenantSiteCollection();
361 tenantSites.getFromSlice(model);
Scott Baker435c2c92015-01-14 00:34:45 -0800362 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 */
Scott Baker12154242015-01-16 19:26:54 -0800363 model.usersOrig = model.attributes.users; /* save an immutable copy that we'll use for username lookups */
364 model.user_namesOrig = model.attributes.user_names;
Scott Bakerb52f7af2015-01-13 14:41:41 -0800365 model.tenantSiteCollection = tenantSites;
366 XOSTenantApp.tenantSites = tenantSites;
Scott Baker342d9b92015-01-11 13:44:30 -0800367
Scott Bakerb52f7af2015-01-13 14:41:41 -0800368 tenantSiteList = new XOSTenantApp.tenantSiteListView({collection: tenantSites });
369 XOSTenantApp.tenantSiteList.show(tenantSiteList);
370 // on xos.slicePlus.sort, need to update xostenantapp.tenantSites
Scott Baker342d9b92015-01-11 13:44:30 -0800371
Scott Bakerb52f7af2015-01-13 14:41:41 -0800372 XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { app: XOSTenantApp,
373 linkedView: tenantSummary } ) );
Scott Baker5175e8a2015-01-20 00:20:12 -0800374
375 XOSTenantApp.currentSlice = model;
Scott Bakerb52f7af2015-01-13 14:41:41 -0800376 } else {
377 XOSTenantApp.tenantSliceSelector.show(new HTMLView({html: ""}));
378 XOSTenantApp.tenantSummary.show(new HTMLView({html: "You have no slices"}));
379 XOSTenantApp.tenantSiteList.show(new HTMLView({html: ""}));
380 XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { template: "#xos-tenant-buttons-noslice-template",
381 app: XOSTenantApp,
382 linkedView: tenantSummary } ) );
383 }
Scott Baker342d9b92015-01-11 13:44:30 -0800384};
385
Scott Bakeraba91832015-01-12 13:37:31 -0800386XOSTenantApp.sanityCheck = function() {
387 errors = [];
388 if (xos.tenant().blessed_service_classes.length == 0) {
389 errors.push("no blessed service classes");
390 }
391 if (xos.tenant().blessed_flavors.length == 0) {
392 errors.push("no blessed flavors");
393 }
394 if (xos.tenant().blessed_images.length == 0) {
395 errors.push("no blessed images");
396 }
397 if (xos.tenant().blessed_sites.length == 0) {
398 errors.push("no blessed sites");
399 }
Scott Baker9eebcb62015-01-18 17:04:35 -0800400 if (xos.tenant().current_user_site_id == null) {
401 errors.push("current user does not have a site");
402 }
Scott Bakeraba91832015-01-12 13:37:31 -0800403
404 if (errors.length > 0) {
405 $("#tenantSummary").html("Tenant view sanity check failed<br>" + errors.join("<br>"));
406 return false;
407 }
408
409 return true;
Scott Baker342d9b92015-01-11 13:44:30 -0800410}
411
412XOSTenantApp.collectionLoadChange = function() {
413 stats = xos.getCollectionStatus();
414
415 if (!XOSTenantApp.navigationStarted) {
416 if (stats["isLoaded"] + stats["failedLoad"] >= stats["startedLoad"]) {
Scott Bakeraba91832015-01-12 13:37:31 -0800417 if (XOSTenantApp.sanityCheck()) {
418 XOSTenantApp.viewSlice(undefined);
419 }
Scott Baker342d9b92015-01-11 13:44:30 -0800420 } else {
421 $("#tenantSummary").html("<h3>Loading...</h3><div id='xos-startup-progress'></div>");
422 $("#xos-startup-progress").progressbar({value: stats["completedLoad"], max: stats["startedLoad"]});
423 }
424 }
425};
426
427XOSTenantApp.on("start", function() {
428 XOSTenantApp.buildViews();
429
Scott Baker342d9b92015-01-11 13:44:30 -0800430 // fire it once to initially show the progress bar
431 XOSTenantApp.collectionLoadChange();
432
433 // fire it each time the collection load status is updated
434 Backbone.on("xoslib:collectionLoadChange", XOSTenantApp.collectionLoadChange);
435});
436
437$(document).ready(function(){
438 XOSTenantApp.start();
439});
440