summaryrefslogtreecommitdiff
path: root/openstack_dashboard/static/app/core/server_groups/server-groups.module.js
blob: afb071db3332f9415145151c9a98e936f115630b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with 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.
 */

(function() {
  'use strict';

  /**
   * @ngdoc overview
   * @ngname horizon.app.core.server_groups
   *
   * @description
   * Provides all of the services and widgets required
   * to support and display server groups related content.
   */
  angular
    .module('horizon.app.core.server_groups', [
      'horizon.framework.conf',
      'horizon.app.core',
      'horizon.app.core.server_groups.actions',
      'horizon.app.core.server_groups.details'
    ])
    .constant('horizon.app.core.server_groups.resourceType', 'OS::Nova::ServerGroup')
    .run(run)
    .config(config);

  run.$inject = [
    'horizon.app.core.server_groups.resourceType',
    'horizon.app.core.server_groups.service',
    'horizon.framework.conf.resource-type-registry.service'
  ];

  function run(serverGroupResourceType,
               serverGroupsService,
               registry) {
    registry.getResourceType(serverGroupResourceType)
      .setNames('Server Group', 'Server Groups',
                ngettext('Server Group', 'Server Groups', 1))
      .setDefaultIndexUrl('/project/server_groups/')
      .setProperties(serverGroupProperties())
      .setListFunction(serverGroupsService.getServerGroupsPromise)
      .tableColumns
      .append({
        id: 'name',
        priority: 1,
        sortDefault: true,
        classes: "word-wrap",
        urlFunction: serverGroupsService.getDetailsPath
      })
      // The name is not unique, so we need to show the ID to
      // distinguish.
      .append({
        id: 'id',
        priority: 1
      })
      .append({
        id: 'policy',
        priority: 1
      });

    registry.getResourceType(serverGroupResourceType).filterFacets
      .append({
        label: gettext('Name'),
        name: 'name',
        singleton: true
      })
      .append({
        label: gettext('ID'),
        name: 'id',
        singleton: true
      })
      .append({
        label: gettext('Policy'),
        name: 'policy',
        singleton: true
      });
  }

  /**
   * @name serverGroupProperties
   * @description resource properties for server group module
   */
  function serverGroupProperties() {
    return {
      name: gettext('Name'),
      id: gettext('ID'),
      policy: gettext('Policy'),
      project_id: gettext('Project ID'),
      user_id: gettext('User ID')
    };
  }

  config.$inject = [
    '$provide',
    '$windowProvider',
    '$routeProvider',
    'horizon.app.core.detailRoute'
  ];

  /**
   * @name config
   * @param {Object} $provide
   * @param {Object} $windowProvider
   * @param {Object} $routeProvider
   * @param {String} detailRoute
   * @description Routes used by this module.
   * @returns {undefined} Returns nothing
   */
  function config($provide, $windowProvider, $routeProvider, detailRoute) {
    var path = $windowProvider.$get().STATIC_URL + 'app/core/server_groups/';
    $provide.constant('horizon.app.core.server_groups.basePath', path);

    $routeProvider.when('/project/server_groups', {
      templateUrl: path + 'panel.html'
    });

    $routeProvider.when('/project/server_groups/:id', {
      redirectTo: goToAngularDetails
    });

    function goToAngularDetails(params) {
      return detailRoute + 'OS::Nova::ServerGroup/' + params.id;
    }
  }

})();