make tenantview method reslient of users with no site, catch users with no site in...
[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
54 XOSTenantButtonView = 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) {
64                      XOSTenantApp.addSlice();
65                      },
66
67             deleteClicked: function(e) {
68                      XOSTenantApp.deleteSlice(this.options.linkedView.model);
69                      },
70
71             addUserClicked: function(e) {
72                      XOSTenantApp.editUsers(this.options.linkedView.model);
73                      },
74
75             saveClicked: function(e) {
76                      model = this.options.linkedView.model;
77                      model.tenantSiteCollection.putToSlice(model);
78                      model.attributes.users = model.usersBuffer;
79                      this.options.linkedView.submitContinueClicked.call(this.options.linkedView, e);
80                      },
81             });
82
83 XOSTenantApp = new XOSApplication({
84     logTableId: "#logTable",
85     statusMsgId: "#statusMsg",
86     hideTabsByDefault: true,
87     varName: "XOSTenantApp",
88 });
89
90 XOSTenantApp.addRegions({
91     tenantSliceSelector: "#tenantSliceSelector",
92     tenantSummary: "#tenantSummary",
93     tenantSiteList: "#tenantSiteList",
94     tenantButtons: "#tenantButtons",
95     tenantAddSliceInterior: "#tenant-addslice-interior",
96     tenantEditUsersInterior: "#tenant-edit-users-interior",
97 });
98
99 XOSTenantApp.buildViews = function() {
100      XOSTenantApp.tenantSites = new XOSTenantSiteCollection();\r
101 \r
102      tenantSummaryClass = XOSDetailView.extend({template: "#xos-detail-template",\r
103                                                 app: XOSTenantApp,\r
104                                                 detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports", "mount_data_sets"],\r
105                                                 fieldDisplayNames: {serviceClass: "Service Level", "default_flavor": "Flavor", "default_image": "Image", "mount_data_sets": "Data Sets"},\r
106 \r
107                                                 onShow: function() {\r
108                                                     // the slice selector is in a different table, so make every label cell the maximal width\r
109                                                     make_same_width("#xos-tenant-view-panel", ".xos-label-cell");\r
110                                                 },\r
111                                                 });\r
112 \r
113      XOSTenantApp.tenantSummaryView = tenantSummaryClass;\r
114 \r
115      tenantAddClass = XOSDetailView.extend({template: "#xos-detail-template",\r
116                                                 app: XOSTenantApp,\r
117                                                 detailFields: ["name", "description"]});\r
118 \r
119      XOSTenantApp.tenantAddView = tenantAddClass;\r
120 \r
121      tenantSiteItemClass = XOSItemView.extend({template: "#xos-listitem-template",\r
122                                                app: XOSTenantApp});\r
123 \r
124      XOSTenantApp.tenantSiteItemView = tenantSiteItemClass;\r
125 \r
126      tenantSiteListClass = XOSDataTableView.extend({template: "#xos-list-template",\r
127                                                app: XOSTenantApp,\r
128                                                childView: tenantSiteItemClass,\r
129                                                collection: XOSTenantApp.tenantSites,\r
130                                                title: "sites",\r
131                                                inputType: {allocated: "spinner"},\r
132                                                noDeleteColumn: true,\r
133                                                disablePaginate: true,\r
134                                                disableFilter: true,\r
135                                                fieldDisplayNames: {"name": "Site"},\r
136                                                });\r
137 \r
138      XOSTenantApp.tenantSiteListView = tenantSiteListClass;\r
139 \r
140      XOSTenantApp.tenantSliceSelectorView = SliceSelectorView.extend( {\r
141          sliceChanged: function(id) {\r
142              XOSTenantApp.navToSlice(id);\r
143          },\r
144      });\r
145 \r
146      xos.sites.fetch();\r
147      xos.slicesPlus.fetch();\r
148      xos.tenantview.fetch();\r
149 };\r
150 \r
151 make_choices = function(list_of_names, list_of_values) {\r
152     result = [];\r
153     if (!list_of_values) {\r
154         for (index in list_of_names) {\r
155             displayName = list_of_names[index];\r
156             result.push( [displayName, displayName] );\r
157         }\r
158     } else {\r
159         for (index in list_of_names) {\r
160             displayName = list_of_names[index];\r
161             id = list_of_values[index];\r
162             result.push( [displayName, id] );\r
163         }\r
164     }\r
165     return result;\r
166 };\r
167 \r
168 XOSTenantApp.navToSlice = function(id) {\r
169     XOSTenantApp.viewSlice(xos.slicesPlus.get(id));\r
170 };\r
171 \r
172 XOSTenantApp.adjustCollectionField = function(collectionName, id, fieldName, amount) {\r
173     model = XOSTenantApp[collectionName].get(id);\r
174     model.set(fieldName, Math.max(model.get(fieldName) + amount, 0));\r
175 };\r
176 \r
177 XOSTenantApp.addSlice = function() {\r
178     var app=this;\r
179 \r
180     if (!xos.tenant().current_user_can_create_slice) {\r
181         window.alert("You do not have sufficient rights to create a slice on your site");\r
182         return;\r
183     }\r
184 \r
185     model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,\r
186                                       name: xos.tenant().current_user_login_base + "_"});\r
187     console.log(model);\r
188     var detailView = new XOSTenantApp.tenantAddView({model: model,\r
189                                                     collection: xos.slicesPlus,\r
190                                                     noSubmitButton: true,\r
191                                                     });\r
192     detailView.dialog = $("#tenant-addslice-dialog");\r
193     app.tenantAddSliceInterior.show(detailView);\r
194     $("#tenant-addslice-dialog").dialog({\r
195        autoOpen: false,
196        modal: true,
197        width: 640,
198        buttons : {
199             "Create Slice" : function() {
200               var addDialog = this;
201               console.log("SAVE!!!");
202               detailView.synchronous = true;
203               detailView.afterSave = function() { $(addDialog).dialog("close"); XOSTenantApp.navToSlice(detailView.model.id); }
204               detailView.save();
205             },
206             "Cancel" : function() {
207               $(this).dialog("close");
208             }
209           }
210         });
211     $("#tenant-addslice-dialog").dialog("open");\r
212 };\r
213 \r
214 XOSTenantApp.editUsers = function(model) {\r
215     var app=this;\r
216     var detailView = new XOSEditUsersView({model: model, collection: xos.slicesPlus});\r
217     detailView.dialog = $("#tenant-edit-users-dialog");\r
218     app.tenantEditUsersInterior.show(detailView);\r
219     $("#tenant-edit-users-dialog").dialog({\r
220        autoOpen: false,
221        modal: true,
222        width: 640,
223        buttons : {
224             "Ok" : function() {
225               var editDialog = this;
226               user_ids = all_options($("#tenant-edit-users-dialog").find(".select-picker-to"));
227               user_ids = user_ids.map( function(x) { return parseInt(x,10); } );
228               model.usersBuffer = user_ids;
229               $(editDialog).dialog("close");
230             },
231             "Cancel" : function() {
232               $(this).dialog("close");
233             }
234           }
235         });
236     $("#tenant-edit-users-dialog").dialog("open");\r
237 };\r
238 \r
239 XOSTenantApp.deleteSlice = function(model) {\r
240     var app=this;\r
241     app.deleteDialog(model, function() { console.log("afterDelete"); app.viewSlice(undefined); });\r
242 };\r
243 \r
244 XOSTenantApp.viewSlice = function(model) {\r
245     if (!model && xos.slicesPlus.models.length > 0) {\r
246         model = xos.slicesPlus.models[0];\r
247     }\r
248 \r
249     if (model) {\r
250         sliceSelector = new XOSTenantApp.tenantSliceSelectorView({collection: xos.slicesPlus,\r
251                                                                   selectedID: model ? model.id : null,\r
252                                                                  } );\r
253         XOSTenantApp.sliceSelector = sliceSelector;\r
254         XOSTenantApp.tenantSliceSelector.show(sliceSelector);\r
255 \r
256         tenantSummary = new XOSTenantApp.tenantSummaryView({model: model,\r
257                                                             choices: {mount_data_sets: make_choices(xos.tenant().public_volume_names, null),\r
258                                                                       serviceClass: make_choices(xos.tenant().blessed_service_class_names, xos.tenant().blessed_service_classes),\r
259                                                                       default_image: make_choices(xos.tenant().blessed_image_names, xos.tenant().blessed_images),\r
260                                                                       default_flavor: make_choices(xos.tenant().blessed_flavor_names, xos.tenant().blessed_flavors),},\r
261                                                            });\r
262         XOSTenantApp.tenantSummary.show(tenantSummary);\r
263 \r
264         tenantSites = new XOSTenantSiteCollection();\r
265         tenantSites.getFromSlice(model);\r
266         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
267         model.usersOrig = model.attributes.users;   /* save an immutable copy that we'll use for username lookups */\r
268         model.user_namesOrig = model.attributes.user_names;\r
269         model.tenantSiteCollection = tenantSites;\r
270         XOSTenantApp.tenantSites = tenantSites;\r
271 \r
272         tenantSiteList = new XOSTenantApp.tenantSiteListView({collection: tenantSites });\r
273         XOSTenantApp.tenantSiteList.show(tenantSiteList);\r
274         // on xos.slicePlus.sort, need to update xostenantapp.tenantSites\r
275 \r
276         XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { app: XOSTenantApp,\r
277                                                                     linkedView: tenantSummary } ) );\r
278     } else {\r
279         XOSTenantApp.tenantSliceSelector.show(new HTMLView({html: ""}));\r
280         XOSTenantApp.tenantSummary.show(new HTMLView({html: "You have no slices"}));\r
281         XOSTenantApp.tenantSiteList.show(new HTMLView({html: ""}));\r
282         XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { template: "#xos-tenant-buttons-noslice-template",\r
283                                                                     app: XOSTenantApp,\r
284                                                                     linkedView: tenantSummary } ) );\r
285     }\r
286 };\r
287 \r
288 XOSTenantApp.sanityCheck = function() {\r
289     errors = [];\r
290     if (xos.tenant().blessed_service_classes.length == 0) {\r
291         errors.push("no blessed service classes");\r
292     }\r
293     if (xos.tenant().blessed_flavors.length == 0) {\r
294         errors.push("no blessed flavors");\r
295     }\r
296     if (xos.tenant().blessed_images.length == 0) {\r
297         errors.push("no blessed images");\r
298     }\r
299     if (xos.tenant().blessed_sites.length == 0) {\r
300         errors.push("no blessed sites");\r
301     }\r
302     if (xos.tenant().current_user_site_id == null) {\r
303         errors.push("current user does not have a site");\r
304     }\r
305 \r
306     if (errors.length > 0) {\r
307          $("#tenantSummary").html("Tenant view sanity check failed<br>" + errors.join("<br>"));\r
308          return false;\r
309     }\r
310 \r
311     return true;\r
312 }\r
313 \r
314 XOSTenantApp.collectionLoadChange = function() {\r
315     stats = xos.getCollectionStatus();\r
316 \r
317     if (!XOSTenantApp.navigationStarted) {\r
318         if (stats["isLoaded"] + stats["failedLoad"] >= stats["startedLoad"]) {\r
319             if (XOSTenantApp.sanityCheck()) {\r
320                 XOSTenantApp.viewSlice(undefined);\r
321             }\r
322         } else {\r
323             $("#tenantSummary").html("<h3>Loading...</h3><div id='xos-startup-progress'></div>");\r
324             $("#xos-startup-progress").progressbar({value: stats["completedLoad"], max: stats["startedLoad"]});\r
325         }\r
326     }\r
327 };\r
328 \r
329 XOSTenantApp.on("start", function() {\r
330      XOSTenantApp.buildViews();
331
332      // fire it once to initially show the progress bar
333      XOSTenantApp.collectionLoadChange();
334
335      // fire it each time the collection load status is updated
336      Backbone.on("xoslib:collectionLoadChange", XOSTenantApp.collectionLoadChange);
337 });
338
339 $(document).ready(function(){
340     XOSTenantApp.start();
341 });
342