mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			402 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			402 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2012 Citrix Systems, Inc. Licensed under the
 | 
						|
// Apache License, Version 2.0 (the "License"); you may not use this
 | 
						|
// file except in compliance with the License.  Citrix Systems, Inc.
 | 
						|
// reserves all rights not expressly granted by the License.
 | 
						|
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
// Unless required by applicable law or agreed to in writing, software
 | 
						|
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
// See the License for the specific language governing permissions and
 | 
						|
// limitations under the License.
 | 
						|
// 
 | 
						|
// Automatically generated by addcopyright.py at 04/03/2012
 | 
						|
(function(cloudStack) {
 | 
						|
  cloudStack.sections.domains = {
 | 
						|
    title: 'label.menu.domains',
 | 
						|
    id: 'domains',
 | 
						|
 | 
						|
    // Domain tree
 | 
						|
    treeView: {
 | 
						|
      // Details
 | 
						|
      detailView: {
 | 
						|
        name: 'Domain details',
 | 
						|
        viewAll: {
 | 
						|
          label: 'label.accounts',
 | 
						|
          path: 'accounts'
 | 
						|
        },
 | 
						|
 | 
						|
        // Detail actions
 | 
						|
        actions: {
 | 
						|
          'delete': {
 | 
						|
            label: 'label.action.delete.domain',
 | 
						|
            messages: {
 | 
						|
              notification: function(args) {
 | 
						|
                return 'label.action.delete.domain';
 | 
						|
              }
 | 
						|
            },
 | 
						|
 | 
						|
            createForm: {
 | 
						|
              title: 'label.action.delete.domain',
 | 
						|
              desc: 'message.action.delete.domain',
 | 
						|
              createLabel: 'label.delete',
 | 
						|
              preFilter: function(args) {
 | 
						|
                if(isAdmin()) {
 | 
						|
                  args.$form.find('.form-item[rel=isForced]').css('display', 'inline-block');
 | 
						|
                }
 | 
						|
              },
 | 
						|
              fields: {
 | 
						|
                isForced: {
 | 
						|
                  label: 'force.delete',
 | 
						|
                  isBoolean: true,
 | 
						|
                  isHidden: true
 | 
						|
                }
 | 
						|
              }
 | 
						|
            },
 | 
						|
 | 
						|
            action: function(args) {
 | 
						|
              var array1 = [];
 | 
						|
              if(args.$form.find('.form-item[rel=isForced]').css("display") != "none") //uncomment after Brian fix it to include $form in args
 | 
						|
                array1.push("&cleanup=" + (args.data.isForced == "on"));
 | 
						|
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("deleteDomain&id=" + args.context.domains[0].id + array1.join("")),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  var jid = json.deletedomainresponse.jobid;
 | 
						|
                  args.response.success(
 | 
						|
                    {_custom:
 | 
						|
                     {jobId: jid}
 | 
						|
                    }
 | 
						|
                  );
 | 
						|
 | 
						|
                  // Quick fix for proper UI reaction to delete domain
 | 
						|
                  var $item = $('.name.selected').closest('li');
 | 
						|
                  var $itemParent = $item.closest('li');
 | 
						|
                  $itemParent.parent().parent().find('.name:first').click();
 | 
						|
                  $item.remove();
 | 
						|
                }
 | 
						|
              });
 | 
						|
            },
 | 
						|
            notification: {
 | 
						|
              poll: pollAsyncJobResult
 | 
						|
            }
 | 
						|
          },
 | 
						|
 | 
						|
          // Edit domain
 | 
						|
          edit: {
 | 
						|
            label: 'label.action.edit.domain',
 | 
						|
            messages: {
 | 
						|
              notification: function(args) {
 | 
						|
                return 'label.action.edit.domain';
 | 
						|
              }
 | 
						|
            },
 | 
						|
            action: function(args) {
 | 
						|
              var domainObj;
 | 
						|
              var array1 = [];
 | 
						|
              array1.push("&name=" + todb(args.data.name));
 | 
						|
              array1.push("&networkdomain=" + todb(args.data.networkdomain));
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("updateDomain&id=" + args.context.domains[0].id + array1.join("")),
 | 
						|
                async: false,
 | 
						|
                dataType: "json",
 | 
						|
                success: function(json) {
 | 
						|
                  domainObj = json.updatedomainresponse.domain;
 | 
						|
                }
 | 
						|
              });
 | 
						|
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("updateResourceLimit&domainid=" + args.context.domains[0].id + "&resourceType=0&max=" + args.data.vmLimit),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  domainObj["vmLimit"] = args.data.vmLimit;
 | 
						|
                }
 | 
						|
              });
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("updateResourceLimit&domainid=" + args.context.domains[0].id + "&resourceType=1&max=" + args.data.ipLimit),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  domainObj["ipLimit"] = args.data.ipLimit;
 | 
						|
                }
 | 
						|
              });
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("updateResourceLimit&domainid=" + args.context.domains[0].id + "&resourceType=2&max=" + args.data.volumeLimit),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  domainObj["volumeLimit"] = args.data.volumeLimit;
 | 
						|
                }
 | 
						|
              });
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("updateResourceLimit&domainid=" + args.context.domains[0].id + "&resourceType=3&max=" + args.data.snapshotLimit),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  domainObj["snapshotLimit"] = args.data.snapshotLimit;
 | 
						|
                }
 | 
						|
              });
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("updateResourceLimit&domainid=" + args.context.domains[0].id + "&resourceType=4&max=" + args.data.templateLimit),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  domainObj["templateLimit"] = args.data.templateLimit;
 | 
						|
                }
 | 
						|
              });
 | 
						|
 | 
						|
              args.response.success({data: domainObj});
 | 
						|
            }
 | 
						|
          },
 | 
						|
 | 
						|
          // Add domain
 | 
						|
          create: {
 | 
						|
            label: 'label.add.domain',
 | 
						|
 | 
						|
            action: function(args) {
 | 
						|
              var array1 = [];
 | 
						|
              array1.push("&parentdomainid=" + args.context.domains[0].id);
 | 
						|
              array1.push("&name=" + todb(args.data.name));     
 | 
						|
              if(args.data.networkdomain != null && args.data.networkdomain.length > 0)              
 | 
						|
                array1.push("&networkdomain=" + todb(args.data.networkdomain));  
 | 
						|
                
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("createDomain" + array1.join("")),
 | 
						|
                dataType: "json",
 | 
						|
                async: false,
 | 
						|
                success: function(json) {
 | 
						|
                  var item = json.createdomainresponse.domain;
 | 
						|
                  args.response.success({data: item});
 | 
						|
                }
 | 
						|
              });
 | 
						|
            },
 | 
						|
 | 
						|
            messages: {
 | 
						|
              notification: function(args) {
 | 
						|
                return 'label.add.domain';
 | 
						|
              }
 | 
						|
            },
 | 
						|
 | 
						|
            createForm: {
 | 
						|
              title: 'label.add.domain',
 | 
						|
              desc: 'message.add.domain',
 | 
						|
              fields: {
 | 
						|
                name: {
 | 
						|
                  label: 'label.name',
 | 
						|
                  validation: { required: true }
 | 
						|
                },
 | 
						|
                networkdomain: {
 | 
						|
                  label: 'label.network.domain',
 | 
						|
                  validation: { required: false }
 | 
						|
                }
 | 
						|
              }
 | 
						|
            }
 | 
						|
          },
 | 
						|
					
 | 
						|
					updateResourceCount: {
 | 
						|
						label: 'label.action.update.resource.count',
 | 
						|
						messages: {
 | 
						|
							confirm: function(args) {
 | 
						|
								return 'message.update.resource.count';
 | 
						|
							},
 | 
						|
							notification: function(args) {
 | 
						|
								return 'label.action.update.resource.count';
 | 
						|
							}
 | 
						|
						},
 | 
						|
						action: function(args) {						  		
 | 
						|
							$.ajax({
 | 
						|
								url: createURL("updateResourceCount&domainid=" + args.context.domains[0].id),
 | 
						|
								dataType: "json",
 | 
						|
								async: true,
 | 
						|
								success: function(json) {
 | 
						|
									//var resourcecounts= json.updateresourcecountresponse.resourcecount;   //do nothing
 | 
						|
									args.response.success();
 | 
						|
								}
 | 
						|
							});
 | 
						|
						},
 | 
						|
						notification: {
 | 
						|
							poll: function(args) {
 | 
						|
								args.complete();
 | 
						|
							}
 | 
						|
						}
 | 
						|
					}	
 | 
						|
        },
 | 
						|
        tabs: {
 | 
						|
          details: {
 | 
						|
            title: 'label.details',
 | 
						|
            fields: [
 | 
						|
              {
 | 
						|
                name: { label: 'label.name', isEditable: true }
 | 
						|
              },
 | 
						|
              {
 | 
						|
                id: { label: 'ID' },
 | 
						|
								
 | 
						|
								path: { label: 'label.full.path' },
 | 
						|
								
 | 
						|
                networkdomain: { 
 | 
						|
                  label: 'label.network.domain',
 | 
						|
                  isEditable: true
 | 
						|
                },
 | 
						|
                vmLimit: {
 | 
						|
                  label: 'label.instance.limits',
 | 
						|
                  isEditable: true
 | 
						|
                },
 | 
						|
                ipLimit: {
 | 
						|
                  label: 'label.ip.limits',
 | 
						|
                  isEditable: true
 | 
						|
                },
 | 
						|
                volumeLimit: {
 | 
						|
                  label: 'label.volume.limits',
 | 
						|
                  isEditable: true
 | 
						|
                },
 | 
						|
                snapshotLimit: {
 | 
						|
                  label: 'label.snapshot.limits',
 | 
						|
                  isEditable: true
 | 
						|
                },
 | 
						|
                templateLimit: {
 | 
						|
                  label: 'label.template.limits',
 | 
						|
                  isEditable: true
 | 
						|
                },
 | 
						|
                accountTotal: { label: 'label.accounts' },
 | 
						|
                vmTotal: { label: 'label.instances' },
 | 
						|
                volumeTotal: { label: 'label.volumes' }
 | 
						|
              }
 | 
						|
            ],
 | 
						|
            dataProvider: function(args) {
 | 
						|
              var domainObj = args.context.domains[0];
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("listAccounts&domainid=" + domainObj.id),
 | 
						|
                async: false,
 | 
						|
                dataType: "json",
 | 
						|
                success: function(json) {
 | 
						|
                  var items = json.listaccountsresponse.account;
 | 
						|
                  var total;
 | 
						|
                  if (items != null)
 | 
						|
                    total = items.length;
 | 
						|
                  else
 | 
						|
                    total = 0;
 | 
						|
                  domainObj["accountTotal"] = total;
 | 
						|
                }
 | 
						|
              });
 | 
						|
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("listVirtualMachines&details=min&domainid=" + domainObj.id),
 | 
						|
                async: false,
 | 
						|
                dataType: "json",
 | 
						|
                success: function(json) {
 | 
						|
                  var items = json.listvirtualmachinesresponse.virtualmachine;
 | 
						|
                  var total;
 | 
						|
                  if (items != null)
 | 
						|
                    total = items.length;
 | 
						|
                  else
 | 
						|
                    total = 0;
 | 
						|
                  domainObj["vmTotal"] = total;
 | 
						|
                }
 | 
						|
              });
 | 
						|
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("listVolumes&domainid=" + domainObj.id),
 | 
						|
                async: false,
 | 
						|
                dataType: "json",
 | 
						|
                success: function(json) {
 | 
						|
                  var items = json.listvolumesresponse.volume;
 | 
						|
                  var total;
 | 
						|
                  if (items != null)
 | 
						|
                    total = items.length;
 | 
						|
                  else
 | 
						|
                    total = 0;
 | 
						|
                  domainObj["volumeTotal"] = total;
 | 
						|
                }
 | 
						|
              });
 | 
						|
 | 
						|
              $.ajax({
 | 
						|
                url: createURL("listResourceLimits&domainid=" + domainObj.id),
 | 
						|
                async: false,
 | 
						|
                dataType: "json",
 | 
						|
                success: function(json) {
 | 
						|
                  var limits = json.listresourcelimitsresponse.resourcelimit;
 | 
						|
                  if (limits != null) {
 | 
						|
                    for (var i = 0; i < limits.length; i++) {
 | 
						|
                      var limit = limits[i];
 | 
						|
                      switch (limit.resourcetype) {
 | 
						|
                        case "0":
 | 
						|
                          domainObj["vmLimit"] = limit.max;
 | 
						|
                          break;
 | 
						|
                        case "1":
 | 
						|
                          domainObj["ipLimit"] = limit.max;
 | 
						|
                          break;
 | 
						|
                        case "2":
 | 
						|
                          domainObj["volumeLimit"] = limit.max;
 | 
						|
                          break;
 | 
						|
                        case "3":
 | 
						|
                          domainObj["snapshotLimit"] = limit.max;
 | 
						|
                          break;
 | 
						|
                        case "4":
 | 
						|
                          domainObj["templateLimit"] = limit.max;
 | 
						|
                          break;
 | 
						|
                      }
 | 
						|
                    }
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              });
 | 
						|
 | 
						|
              args.response.success({
 | 
						|
                data: domainObj,
 | 
						|
                actionFilter: domainActionfilter
 | 
						|
              });
 | 
						|
            }
 | 
						|
          }
 | 
						|
        }
 | 
						|
      },
 | 
						|
      labelField: 'name',
 | 
						|
      dataProvider: function(args) {
 | 
						|
        var parentDomain = args.context.parentDomain;
 | 
						|
        if(parentDomain == null) { //draw root node
 | 
						|
          $.ajax({
 | 
						|
            url: createURL("listDomains&id=" + g_domainid + '&listAll=true'),
 | 
						|
            dataType: "json",
 | 
						|
            async: false,
 | 
						|
            success: function(json) {
 | 
						|
              var domainObjs = json.listdomainsresponse.domain;
 | 
						|
              args.response.success({
 | 
						|
                actionFilter: domainActionfilter,
 | 
						|
                data: domainObjs
 | 
						|
              });
 | 
						|
            }
 | 
						|
          });
 | 
						|
        }
 | 
						|
        else {
 | 
						|
          $.ajax({
 | 
						|
            url: createURL("listDomainChildren&id=" + parentDomain.id),
 | 
						|
            dataType: "json",
 | 
						|
            async: false,
 | 
						|
            success: function(json) {
 | 
						|
              var domainObjs = json.listdomainchildrenresponse.domain;
 | 
						|
              args.response.success({
 | 
						|
                actionFilter: domainActionfilter,
 | 
						|
                data: domainObjs
 | 
						|
              });
 | 
						|
            }
 | 
						|
          });
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  var domainActionfilter = function(args) {
 | 
						|
    var jsonObj = args.context.item;
 | 
						|
    var allowedActions = [];
 | 
						|
    if(isAdmin()) {
 | 
						|
      allowedActions.push("create");     
 | 
						|
			if(jsonObj.level != 0) { //ROOT domain (whose level is 0) is not allowed to edit or delete
 | 
						|
        allowedActions.push("edit"); //merge updateResourceLimit into edit
 | 
						|
        allowedActions.push("delete");
 | 
						|
      }
 | 
						|
    }
 | 
						|
    allowedActions.push("updateResourceCount");
 | 
						|
    return allowedActions;
 | 
						|
  }
 | 
						|
 | 
						|
})(cloudStack);
 |