blob: e81aacbf371a1eba78afa41e3d8631c584ad7753 [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 Bakere7a90452015-01-14 17:07:30 -0800140
141 onShow: function() {
142 // the slice selector is in a different table, so make every label cell the maximal width
143 make_same_width("#xos-tenant-view-panel", ".xos-label-cell");
144 },
Scott Baker97acad92015-01-12 19:45:40 -0800145 });
Scott Baker342d9b92015-01-11 13:44:30 -0800146
147 XOSTenantApp.tenantSummaryView = tenantSummaryClass;
148
Scott Bakercd07a592015-01-12 12:37:38 -0800149 tenantAddClass = XOSDetailView.extend({template: "#xos-detail-template",
150 app: XOSTenantApp,
151 detailFields: ["name", "description"]});
152
153 XOSTenantApp.tenantAddView = tenantAddClass;
154
Scott Baker342d9b92015-01-11 13:44:30 -0800155 tenantSiteItemClass = XOSItemView.extend({template: "#xos-listitem-template",
156 app: XOSTenantApp});
157
158 XOSTenantApp.tenantSiteItemView = tenantSiteItemClass;
159
160 tenantSiteListClass = XOSDataTableView.extend({template: "#xos-list-template",
161 app: XOSTenantApp,
162 childView: tenantSiteItemClass,
163 collection: XOSTenantApp.tenantSites,
164 title: "sites",
165 inputType: {allocated: "spinner"},
166 noDeleteColumn: true,
Scott Bakere56d3272015-01-14 00:47:50 -0800167 disablePaginate: true,
168 disableFilter: true,
Scott Bakere7a90452015-01-14 17:07:30 -0800169 fieldDisplayNames: {"name": "Site"},
Scott Baker342d9b92015-01-11 13:44:30 -0800170 });
171
172 XOSTenantApp.tenantSiteListView = tenantSiteListClass;
173
174 XOSTenantApp.tenantSliceSelectorView = SliceSelectorView.extend( {
175 sliceChanged: function(id) {
Scott Bakercd07a592015-01-12 12:37:38 -0800176 XOSTenantApp.navToSlice(id);
Scott Baker342d9b92015-01-11 13:44:30 -0800177 },
178 });
179
180 xos.sites.fetch();
181 xos.slicesPlus.fetch();
182 xos.tenantview.fetch();
183};
184
185make_choices = function(list_of_names, list_of_values) {
186 result = [];
187 if (!list_of_values) {
188 for (index in list_of_names) {
189 displayName = list_of_names[index];
190 result.push( [displayName, displayName] );
191 }
Scott Bakeraba91832015-01-12 13:37:31 -0800192 } else {
193 for (index in list_of_names) {
194 displayName = list_of_names[index];
195 id = list_of_values[index];
196 result.push( [displayName, id] );
197 }
Scott Baker342d9b92015-01-11 13:44:30 -0800198 }
199 return result;
200};
201
Scott Bakercd07a592015-01-12 12:37:38 -0800202XOSTenantApp.navToSlice = function(id) {
203 XOSTenantApp.viewSlice(xos.slicesPlus.get(id));
204};
205
206XOSTenantApp.adjustCollectionField = function(collectionName, id, fieldName, amount) {
207 model = XOSTenantApp[collectionName].get(id);
208 model.set(fieldName, Math.max(model.get(fieldName) + amount, 0));
Scott Bakerf5d97bd2015-01-20 00:04:19 -0800209 XOSTenantApp.setDirty(true);
Scott Bakercd07a592015-01-12 12:37:38 -0800210};
211
212XOSTenantApp.addSlice = function() {
213 var app=this;
Scott Bakerce0dfb82015-01-14 09:54:19 -0800214
215 if (!xos.tenant().current_user_can_create_slice) {
216 window.alert("You do not have sufficient rights to create a slice on your site");
217 return;
218 }
219
Scott Baker97acad92015-01-12 19:45:40 -0800220 model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,
Scott Bakerc8984372015-01-19 08:56:16 -0800221 name: xos.tenant().current_user_login_base + "_",
222 creator: xos.tenant().current_user_id});
Scott Bakercd07a592015-01-12 12:37:38 -0800223 console.log(model);
Scott Baker97acad92015-01-12 19:45:40 -0800224 var detailView = new XOSTenantApp.tenantAddView({model: model,
Scott Bakerc8984372015-01-19 08:56:16 -0800225 collection: xos.slicesPlus,
226 noSubmitButton: true,
Scott Baker97acad92015-01-12 19:45:40 -0800227 });
228 detailView.dialog = $("#tenant-addslice-dialog");
Scott Bakercd07a592015-01-12 12:37:38 -0800229 app.tenantAddSliceInterior.show(detailView);
230 $("#tenant-addslice-dialog").dialog({
231 autoOpen: false,
232 modal: true,
233 width: 640,
234 buttons : {
Scott Baker435c2c92015-01-14 00:34:45 -0800235 "Create Slice" : function() {
Scott Bakercd07a592015-01-12 12:37:38 -0800236 var addDialog = this;
Scott Baker97acad92015-01-12 19:45:40 -0800237 console.log("SAVE!!!");
Scott Bakercd07a592015-01-12 12:37:38 -0800238 detailView.synchronous = true;
239 detailView.afterSave = function() { $(addDialog).dialog("close"); XOSTenantApp.navToSlice(detailView.model.id); }
240 detailView.save();
241 },
242 "Cancel" : function() {
243 $(this).dialog("close");
244 }
245 }
246 });
247 $("#tenant-addslice-dialog").dialog("open");
248};
249
Scott Baker97acad92015-01-12 19:45:40 -0800250XOSTenantApp.editUsers = function(model) {
251 var app=this;
252 var detailView = new XOSEditUsersView({model: model, collection: xos.slicesPlus});
253 detailView.dialog = $("#tenant-edit-users-dialog");
254 app.tenantEditUsersInterior.show(detailView);
255 $("#tenant-edit-users-dialog").dialog({
256 autoOpen: false,
257 modal: true,
258 width: 640,
259 buttons : {
Scott Baker435c2c92015-01-14 00:34:45 -0800260 "Ok" : function() {
Scott Baker97acad92015-01-12 19:45:40 -0800261 var editDialog = this;
262 user_ids = all_options($("#tenant-edit-users-dialog").find(".select-picker-to"));
263 user_ids = user_ids.map( function(x) { return parseInt(x,10); } );
Scott Baker5175e8a2015-01-20 00:20:12 -0800264 if (!array_same_elements(user_ids, model.usersBuffer)) {
265 XOSTenantApp.setDirty(true);
266 }
Scott Baker435c2c92015-01-14 00:34:45 -0800267 model.usersBuffer = user_ids;
Scott Baker97acad92015-01-12 19:45:40 -0800268 $(editDialog).dialog("close");
269 },
270 "Cancel" : function() {
271 $(this).dialog("close");
272 }
273 }
274 });
275 $("#tenant-edit-users-dialog").dialog("open");
276};
277
Scott Bakerec930102015-01-20 01:02:08 -0800278XOSTenantApp.downloadSSHOld = function(model) {
279 sshCommands = "";
280 for (index in model.attributes.sliceInfo.sshCommands) {
281 sshCommand = model.attributes.sliceInfo.sshCommands[index];
282 sshCommands = sshCommands + sshCommand + "\n";
283 }
284
285 if (sshCommands.length == 0) {
286 alert("this slice has no instantiated slivers yet");
287 return;
288 }
289
290 var myWindow = window.open("", "ssh_command_list",""); // "width=640, height=480");
291 myWindow.document.write("<html><head><title>SSH Commands</title></head><body><pre>" + sshCommands + "</pre></body></html>");
292 myWindow.document.close();
293};
294
295XOSTenantApp.downloadSSH = function(model) {
296 sshCommands = "";
297 for (index in model.attributes.sliceInfo.sshCommands) {
298 sshCommand = model.attributes.sliceInfo.sshCommands[index];
299 sshCommands = sshCommands + sshCommand + "\n";
300 }
301
302 if (sshCommands.length == 0) {
303 alert("this slice has no instantiated slivers yet");
304 return;
305 }
306
Scott Baker61b5bfc2015-01-20 01:19:12 -0800307 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 -0800308 XOSTenantApp.tenantSSHCommandsInterior.show(htmlView);
309
310 $("#tenant-ssh-commands-dialog").dialog({
311 autoOpen: false,
312 modal: true,
313 width: 640,
314 buttons : {
315 "Ok" : function() {
316 $(this).dialog("close");
317 },
318 }
319 });
320 $("#tenant-ssh-commands-dialog").dialog("open");
321};
322
Scott Baker6b145aa2015-01-12 12:56:25 -0800323XOSTenantApp.deleteSlice = function(model) {
324 var app=this;
325 app.deleteDialog(model, function() { console.log("afterDelete"); app.viewSlice(undefined); });
326};
327
Scott Baker342d9b92015-01-11 13:44:30 -0800328XOSTenantApp.viewSlice = function(model) {
Scott Baker5175e8a2015-01-20 00:20:12 -0800329 if (XOSTenantApp.dirty) {
330 if (!confirm("The current sliver has unsaved data -- view new sliver anyway ?")) {
331 $("#tenantSliceSelector select").val(XOSTenantApp.currentSlice.id);
332 return;
333 }
334 }
335
336 XOSTenantApp.setDirty(false);
337
Scott Baker342d9b92015-01-11 13:44:30 -0800338 if (!model && xos.slicesPlus.models.length > 0) {
339 model = xos.slicesPlus.models[0];
340 }
341
Scott Bakerb52f7af2015-01-13 14:41:41 -0800342 if (model) {
343 sliceSelector = new XOSTenantApp.tenantSliceSelectorView({collection: xos.slicesPlus,
344 selectedID: model ? model.id : null,
345 } );
346 XOSTenantApp.sliceSelector = sliceSelector;
347 XOSTenantApp.tenantSliceSelector.show(sliceSelector);
Scott Baker342d9b92015-01-11 13:44:30 -0800348
Scott Bakerb52f7af2015-01-13 14:41:41 -0800349 tenantSummary = new XOSTenantApp.tenantSummaryView({model: model,
350 choices: {mount_data_sets: make_choices(xos.tenant().public_volume_names, null),
351 serviceClass: make_choices(xos.tenant().blessed_service_class_names, xos.tenant().blessed_service_classes),
352 default_image: make_choices(xos.tenant().blessed_image_names, xos.tenant().blessed_images),
353 default_flavor: make_choices(xos.tenant().blessed_flavor_names, xos.tenant().blessed_flavors),},
354 });
355 XOSTenantApp.tenantSummary.show(tenantSummary);
Scott Baker342d9b92015-01-11 13:44:30 -0800356
Scott Bakerb52f7af2015-01-13 14:41:41 -0800357 tenantSites = new XOSTenantSiteCollection();
358 tenantSites.getFromSlice(model);
Scott Baker435c2c92015-01-14 00:34:45 -0800359 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 -0800360 model.usersOrig = model.attributes.users; /* save an immutable copy that we'll use for username lookups */
361 model.user_namesOrig = model.attributes.user_names;
Scott Bakerb52f7af2015-01-13 14:41:41 -0800362 model.tenantSiteCollection = tenantSites;
363 XOSTenantApp.tenantSites = tenantSites;
Scott Baker342d9b92015-01-11 13:44:30 -0800364
Scott Bakerb52f7af2015-01-13 14:41:41 -0800365 tenantSiteList = new XOSTenantApp.tenantSiteListView({collection: tenantSites });
366 XOSTenantApp.tenantSiteList.show(tenantSiteList);
367 // on xos.slicePlus.sort, need to update xostenantapp.tenantSites
Scott Baker342d9b92015-01-11 13:44:30 -0800368
Scott Bakerb52f7af2015-01-13 14:41:41 -0800369 XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { app: XOSTenantApp,
370 linkedView: tenantSummary } ) );
Scott Baker5175e8a2015-01-20 00:20:12 -0800371
372 XOSTenantApp.currentSlice = model;
Scott Bakerb52f7af2015-01-13 14:41:41 -0800373 } else {
374 XOSTenantApp.tenantSliceSelector.show(new HTMLView({html: ""}));
375 XOSTenantApp.tenantSummary.show(new HTMLView({html: "You have no slices"}));
376 XOSTenantApp.tenantSiteList.show(new HTMLView({html: ""}));
377 XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { template: "#xos-tenant-buttons-noslice-template",
378 app: XOSTenantApp,
379 linkedView: tenantSummary } ) );
380 }
Scott Baker342d9b92015-01-11 13:44:30 -0800381};
382
Scott Bakeraba91832015-01-12 13:37:31 -0800383XOSTenantApp.sanityCheck = function() {
384 errors = [];
385 if (xos.tenant().blessed_service_classes.length == 0) {
386 errors.push("no blessed service classes");
387 }
388 if (xos.tenant().blessed_flavors.length == 0) {
389 errors.push("no blessed flavors");
390 }
391 if (xos.tenant().blessed_images.length == 0) {
392 errors.push("no blessed images");
393 }
394 if (xos.tenant().blessed_sites.length == 0) {
395 errors.push("no blessed sites");
396 }
Scott Baker9eebcb62015-01-18 17:04:35 -0800397 if (xos.tenant().current_user_site_id == null) {
398 errors.push("current user does not have a site");
399 }
Scott Bakeraba91832015-01-12 13:37:31 -0800400
401 if (errors.length > 0) {
402 $("#tenantSummary").html("Tenant view sanity check failed<br>" + errors.join("<br>"));
403 return false;
404 }
405
406 return true;
Scott Baker342d9b92015-01-11 13:44:30 -0800407}
408
409XOSTenantApp.collectionLoadChange = function() {
410 stats = xos.getCollectionStatus();
411
412 if (!XOSTenantApp.navigationStarted) {
413 if (stats["isLoaded"] + stats["failedLoad"] >= stats["startedLoad"]) {
Scott Bakeraba91832015-01-12 13:37:31 -0800414 if (XOSTenantApp.sanityCheck()) {
415 XOSTenantApp.viewSlice(undefined);
416 }
Scott Baker342d9b92015-01-11 13:44:30 -0800417 } else {
418 $("#tenantSummary").html("<h3>Loading...</h3><div id='xos-startup-progress'></div>");
419 $("#xos-startup-progress").progressbar({value: stats["completedLoad"], max: stats["startedLoad"]});
420 }
421 }
422};
423
424XOSTenantApp.on("start", function() {
425 XOSTenantApp.buildViews();
426
Scott Baker342d9b92015-01-11 13:44:30 -0800427 // fire it once to initially show the progress bar
428 XOSTenantApp.collectionLoadChange();
429
430 // fire it each time the collection load status is updated
431 Backbone.on("xoslib:collectionLoadChange", XOSTenantApp.collectionLoadChange);
432});
433
434$(document).ready(function(){
435 XOSTenantApp.start();
436});
437