blob: 48ac835e34511feee66dadf629ff8cad7c331bef [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
53
Scott Baker342d9b92015-01-11 13:44:30 -080054XOSTenantButtonView = Marionette.ItemView.extend({
55 template: "#xos-tenant-buttons-template",
56
57 events: {"click button.btn-tenant-create": "createClicked",
58 "click button.btn-tenant-delete": "deleteClicked",
59 "click button.btn-tenant-add-user": "addUserClicked",
60 "click button.btn-tenant-save": "saveClicked",
61 },
62
63 createClicked: function(e) {
Scott Bakercd07a592015-01-12 12:37:38 -080064 XOSTenantApp.addSlice();
Scott Baker342d9b92015-01-11 13:44:30 -080065 },
66
67 deleteClicked: function(e) {
Scott Baker6b145aa2015-01-12 12:56:25 -080068 XOSTenantApp.deleteSlice(this.options.linkedView.model);
Scott Baker342d9b92015-01-11 13:44:30 -080069 },
70
71 addUserClicked: function(e) {
Scott Baker97acad92015-01-12 19:45:40 -080072 XOSTenantApp.editUsers(this.options.linkedView.model);
Scott Baker342d9b92015-01-11 13:44:30 -080073 },
74
75 saveClicked: function(e) {
Scott Baker97acad92015-01-12 19:45:40 -080076 model = this.options.linkedView.model;
77 model.tenantSiteCollection.putToSlice(model);
Scott Baker435c2c92015-01-14 00:34:45 -080078 model.attributes.users = model.usersBuffer;
Scott Baker342d9b92015-01-11 13:44:30 -080079 this.options.linkedView.submitContinueClicked.call(this.options.linkedView, e);
80 },
81 });
82
83XOSTenantApp = new XOSApplication({
84 logTableId: "#logTable",
85 statusMsgId: "#statusMsg",
Scott Bakercd07a592015-01-12 12:37:38 -080086 hideTabsByDefault: true,
87 varName: "XOSTenantApp",
Scott Baker342d9b92015-01-11 13:44:30 -080088});
89
90XOSTenantApp.addRegions({
91 tenantSliceSelector: "#tenantSliceSelector",
92 tenantSummary: "#tenantSummary",
93 tenantSiteList: "#tenantSiteList",
94 tenantButtons: "#tenantButtons",
Scott Bakercd07a592015-01-12 12:37:38 -080095 tenantAddSliceInterior: "#tenant-addslice-interior",
Scott Baker97acad92015-01-12 19:45:40 -080096 tenantEditUsersInterior: "#tenant-edit-users-interior",
Scott Baker342d9b92015-01-11 13:44:30 -080097});
98
Scott Bakercd07a592015-01-12 12:37:38 -080099XOSTenantApp.buildViews = function() {
Scott Baker342d9b92015-01-11 13:44:30 -0800100 XOSTenantApp.tenantSites = new XOSTenantSiteCollection();
101
102 tenantSummaryClass = XOSDetailView.extend({template: "#xos-detail-template",
103 app: XOSTenantApp,
Scott Baker97acad92015-01-12 19:45:40 -0800104 detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports", "mount_data_sets"],
105 fieldDisplayNames: {serviceClass: "Service Level", "default_flavor": "Flavor", "default_image": "Image"},
106 });
Scott Baker342d9b92015-01-11 13:44:30 -0800107
108 XOSTenantApp.tenantSummaryView = tenantSummaryClass;
109
Scott Bakercd07a592015-01-12 12:37:38 -0800110 tenantAddClass = XOSDetailView.extend({template: "#xos-detail-template",
111 app: XOSTenantApp,
112 detailFields: ["name", "description"]});
113
114 XOSTenantApp.tenantAddView = tenantAddClass;
115
Scott Baker342d9b92015-01-11 13:44:30 -0800116 tenantSiteItemClass = XOSItemView.extend({template: "#xos-listitem-template",
117 app: XOSTenantApp});
118
119 XOSTenantApp.tenantSiteItemView = tenantSiteItemClass;
120
121 tenantSiteListClass = XOSDataTableView.extend({template: "#xos-list-template",
122 app: XOSTenantApp,
123 childView: tenantSiteItemClass,
124 collection: XOSTenantApp.tenantSites,
125 title: "sites",
126 inputType: {allocated: "spinner"},
127 noDeleteColumn: true,
128 });
129
130 XOSTenantApp.tenantSiteListView = tenantSiteListClass;
131
132 XOSTenantApp.tenantSliceSelectorView = SliceSelectorView.extend( {
133 sliceChanged: function(id) {
Scott Bakercd07a592015-01-12 12:37:38 -0800134 XOSTenantApp.navToSlice(id);
Scott Baker342d9b92015-01-11 13:44:30 -0800135 },
136 });
137
138 xos.sites.fetch();
139 xos.slicesPlus.fetch();
140 xos.tenantview.fetch();
141};
142
143make_choices = function(list_of_names, list_of_values) {
144 result = [];
145 if (!list_of_values) {
146 for (index in list_of_names) {
147 displayName = list_of_names[index];
148 result.push( [displayName, displayName] );
149 }
Scott Bakeraba91832015-01-12 13:37:31 -0800150 } else {
151 for (index in list_of_names) {
152 displayName = list_of_names[index];
153 id = list_of_values[index];
154 result.push( [displayName, id] );
155 }
Scott Baker342d9b92015-01-11 13:44:30 -0800156 }
157 return result;
158};
159
Scott Bakercd07a592015-01-12 12:37:38 -0800160XOSTenantApp.navToSlice = function(id) {
161 XOSTenantApp.viewSlice(xos.slicesPlus.get(id));
162};
163
164XOSTenantApp.adjustCollectionField = function(collectionName, id, fieldName, amount) {
165 model = XOSTenantApp[collectionName].get(id);
166 model.set(fieldName, Math.max(model.get(fieldName) + amount, 0));
167};
168
169XOSTenantApp.addSlice = function() {
170 var app=this;
Scott Baker97acad92015-01-12 19:45:40 -0800171 model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,
172 name: xos.tenant().current_user_login_base + "_"});
Scott Bakercd07a592015-01-12 12:37:38 -0800173 console.log(model);
Scott Baker97acad92015-01-12 19:45:40 -0800174 var detailView = new XOSTenantApp.tenantAddView({model: model,
175 collection: xos.slicesPlus,
176 noSubmitButton: true,
177 });
178 detailView.dialog = $("#tenant-addslice-dialog");
Scott Bakercd07a592015-01-12 12:37:38 -0800179 app.tenantAddSliceInterior.show(detailView);
180 $("#tenant-addslice-dialog").dialog({
181 autoOpen: false,
182 modal: true,
183 width: 640,
184 buttons : {
Scott Baker435c2c92015-01-14 00:34:45 -0800185 "Create Slice" : function() {
Scott Bakercd07a592015-01-12 12:37:38 -0800186 var addDialog = this;
Scott Baker97acad92015-01-12 19:45:40 -0800187 console.log("SAVE!!!");
Scott Bakercd07a592015-01-12 12:37:38 -0800188 detailView.synchronous = true;
189 detailView.afterSave = function() { $(addDialog).dialog("close"); XOSTenantApp.navToSlice(detailView.model.id); }
190 detailView.save();
191 },
192 "Cancel" : function() {
193 $(this).dialog("close");
194 }
195 }
196 });
197 $("#tenant-addslice-dialog").dialog("open");
198};
199
Scott Baker97acad92015-01-12 19:45:40 -0800200XOSTenantApp.editUsers = function(model) {
201 var app=this;
202 var detailView = new XOSEditUsersView({model: model, collection: xos.slicesPlus});
203 detailView.dialog = $("#tenant-edit-users-dialog");
204 app.tenantEditUsersInterior.show(detailView);
205 $("#tenant-edit-users-dialog").dialog({
206 autoOpen: false,
207 modal: true,
208 width: 640,
209 buttons : {
Scott Baker435c2c92015-01-14 00:34:45 -0800210 "Ok" : function() {
Scott Baker97acad92015-01-12 19:45:40 -0800211 var editDialog = this;
212 user_ids = all_options($("#tenant-edit-users-dialog").find(".select-picker-to"));
213 user_ids = user_ids.map( function(x) { return parseInt(x,10); } );
Scott Baker435c2c92015-01-14 00:34:45 -0800214 model.usersBuffer = user_ids;
Scott Baker97acad92015-01-12 19:45:40 -0800215 $(editDialog).dialog("close");
216 },
217 "Cancel" : function() {
218 $(this).dialog("close");
219 }
220 }
221 });
222 $("#tenant-edit-users-dialog").dialog("open");
223};
224
Scott Baker6b145aa2015-01-12 12:56:25 -0800225XOSTenantApp.deleteSlice = function(model) {
226 var app=this;
227 app.deleteDialog(model, function() { console.log("afterDelete"); app.viewSlice(undefined); });
228};
229
Scott Baker342d9b92015-01-11 13:44:30 -0800230XOSTenantApp.viewSlice = function(model) {
231 if (!model && xos.slicesPlus.models.length > 0) {
232 model = xos.slicesPlus.models[0];
233 }
234
Scott Bakerb52f7af2015-01-13 14:41:41 -0800235 if (model) {
236 sliceSelector = new XOSTenantApp.tenantSliceSelectorView({collection: xos.slicesPlus,
237 selectedID: model ? model.id : null,
238 } );
239 XOSTenantApp.sliceSelector = sliceSelector;
240 XOSTenantApp.tenantSliceSelector.show(sliceSelector);
Scott Baker342d9b92015-01-11 13:44:30 -0800241
Scott Bakerb52f7af2015-01-13 14:41:41 -0800242 tenantSummary = new XOSTenantApp.tenantSummaryView({model: model,
243 choices: {mount_data_sets: make_choices(xos.tenant().public_volume_names, null),
244 serviceClass: make_choices(xos.tenant().blessed_service_class_names, xos.tenant().blessed_service_classes),
245 default_image: make_choices(xos.tenant().blessed_image_names, xos.tenant().blessed_images),
246 default_flavor: make_choices(xos.tenant().blessed_flavor_names, xos.tenant().blessed_flavors),},
247 });
248 XOSTenantApp.tenantSummary.show(tenantSummary);
Scott Baker342d9b92015-01-11 13:44:30 -0800249
Scott Bakerb52f7af2015-01-13 14:41:41 -0800250 tenantSites = new XOSTenantSiteCollection();
251 tenantSites.getFromSlice(model);
Scott Baker435c2c92015-01-14 00:34:45 -0800252 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 Bakerb52f7af2015-01-13 14:41:41 -0800253 model.tenantSiteCollection = tenantSites;
254 XOSTenantApp.tenantSites = tenantSites;
Scott Baker342d9b92015-01-11 13:44:30 -0800255
Scott Bakerb52f7af2015-01-13 14:41:41 -0800256 tenantSiteList = new XOSTenantApp.tenantSiteListView({collection: tenantSites });
257 XOSTenantApp.tenantSiteList.show(tenantSiteList);
258 // on xos.slicePlus.sort, need to update xostenantapp.tenantSites
Scott Baker342d9b92015-01-11 13:44:30 -0800259
Scott Bakerb52f7af2015-01-13 14:41:41 -0800260 XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { app: XOSTenantApp,
261 linkedView: tenantSummary } ) );
262 } else {
263 XOSTenantApp.tenantSliceSelector.show(new HTMLView({html: ""}));
264 XOSTenantApp.tenantSummary.show(new HTMLView({html: "You have no slices"}));
265 XOSTenantApp.tenantSiteList.show(new HTMLView({html: ""}));
266 XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { template: "#xos-tenant-buttons-noslice-template",
267 app: XOSTenantApp,
268 linkedView: tenantSummary } ) );
269 }
Scott Baker342d9b92015-01-11 13:44:30 -0800270};
271
Scott Bakeraba91832015-01-12 13:37:31 -0800272XOSTenantApp.sanityCheck = function() {
273 errors = [];
274 if (xos.tenant().blessed_service_classes.length == 0) {
275 errors.push("no blessed service classes");
276 }
277 if (xos.tenant().blessed_flavors.length == 0) {
278 errors.push("no blessed flavors");
279 }
280 if (xos.tenant().blessed_images.length == 0) {
281 errors.push("no blessed images");
282 }
283 if (xos.tenant().blessed_sites.length == 0) {
284 errors.push("no blessed sites");
285 }
286
287 if (errors.length > 0) {
288 $("#tenantSummary").html("Tenant view sanity check failed<br>" + errors.join("<br>"));
289 return false;
290 }
291
292 return true;
Scott Baker342d9b92015-01-11 13:44:30 -0800293}
294
295XOSTenantApp.collectionLoadChange = function() {
296 stats = xos.getCollectionStatus();
297
298 if (!XOSTenantApp.navigationStarted) {
299 if (stats["isLoaded"] + stats["failedLoad"] >= stats["startedLoad"]) {
Scott Bakeraba91832015-01-12 13:37:31 -0800300 if (XOSTenantApp.sanityCheck()) {
301 XOSTenantApp.viewSlice(undefined);
302 }
Scott Baker342d9b92015-01-11 13:44:30 -0800303 } else {
304 $("#tenantSummary").html("<h3>Loading...</h3><div id='xos-startup-progress'></div>");
305 $("#xos-startup-progress").progressbar({value: stats["completedLoad"], max: stats["startedLoad"]});
306 }
307 }
308};
309
310XOSTenantApp.on("start", function() {
311 XOSTenantApp.buildViews();
312
Scott Baker342d9b92015-01-11 13:44:30 -0800313 // fire it once to initially show the progress bar
314 XOSTenantApp.collectionLoadChange();
315
316 // fire it each time the collection load status is updated
317 Backbone.on("xoslib:collectionLoadChange", XOSTenantApp.collectionLoadChange);
318});
319
320$(document).ready(function(){
321 XOSTenantApp.start();
322});
323