blob: d49d2c02d2a7e12003f90ebfa2015af99ec413fe [file] [log] [blame]
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -08001/*
Thomas Vachuskaa0509892015-02-21 22:18:41 -08002 * Copyright 2014,2015 Open Networking Laboratory
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Main Application Module
19 */
20
21(function () {
22 'use strict';
23
24 // define core module dependencies here...
25 var coreDependencies = [
26 'ngRoute',
27 'onosMast',
28 'onosNav',
29 'onosUtil',
30 'onosSvg',
31 'onosRemote',
32 'onosLayer',
33 'onosWidget'
34 ];
35
36 // view IDs.. note the first view listed is loaded at startup
37 var viewIds = [
Thomas Vachuskaa0509892015-02-21 22:18:41 -080038 // {INJECTED-VIEW-IDS-START}
Thomas Vachuskaa0509892015-02-21 22:18:41 -080039 'topo',
40 'device',
Simon Hunt1002cd82015-04-23 14:44:03 -070041 'flow',
Bri Prebilic Coleac829e42015-05-05 13:42:06 -070042 'port',
Bri Prebilic Coleff3dc672015-05-06 12:59:38 -070043 'group',
Thomas Vachuskae586b792015-03-26 13:59:38 -070044 'host',
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070045 'app',
Bri Prebilic Cole96f26472015-03-31 13:07:05 -070046 'intent',
Bri Prebilic Cole384e8dc2015-04-13 15:51:14 -070047 'cluster',
Bri Prebilic Cole9fb594a2015-04-14 09:15:54 -070048 'link',
Thomas Vachuskaa0509892015-02-21 22:18:41 -080049 // {INJECTED-VIEW-IDS-END}
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080050
51 // dummy entry
52 ''
53 ];
54
55 var viewDependencies = [];
56
57 viewIds.forEach(function (id) {
58 if (id) {
59 viewDependencies.push('ov' + capitalize(id));
60 }
61 });
62
63 var moduleDependencies = coreDependencies.concat(viewDependencies);
64
65 function capitalize(word) {
66 return word ? word[0].toUpperCase() + word.slice(1) : word;
67 }
68
69 angular.module('onosApp', moduleDependencies)
70
71 .controller('OnosCtrl', [
72 '$log', '$route', '$routeParams', '$location',
73 'KeyService', 'ThemeService', 'GlyphService', 'PanelService',
Thomas Vachuska329af532015-03-10 02:08:33 -070074 'FlashService', 'QuickHelpService', 'WebSocketService',
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080075
Thomas Vachuskaa0509892015-02-21 22:18:41 -080076 function ($log, $route, $routeParams, $location,
Thomas Vachuska329af532015-03-10 02:08:33 -070077 ks, ts, gs, ps, flash, qhs, wss) {
Thomas Vachuskaa0509892015-02-21 22:18:41 -080078 var self = this;
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080079
Thomas Vachuskaa0509892015-02-21 22:18:41 -080080 self.$route = $route;
81 self.$routeParams = $routeParams;
82 self.$location = $location;
Bri Prebilic Cole6ed04eb2015-04-27 16:26:03 -070083 self.version = '1.2.0';
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080084
Thomas Vachuskaa0509892015-02-21 22:18:41 -080085 // initialize services...
86 ts.init();
87 ks.installOn(d3.select('body'));
88 ks.bindQhs(qhs);
89 gs.init();
90 ps.init();
91 flash.initFlash();
92 qhs.initQuickHelp();
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080093
Simon Hunt20207df2015-03-10 18:30:14 -070094 // TODO: register handler for user settings, etc.
Thomas Vachuska329af532015-03-10 02:08:33 -070095
Simon Hunt20207df2015-03-10 18:30:14 -070096 wss.createWebSocket({
Thomas Vachuska329af532015-03-10 02:08:33 -070097 wsport: $location.search().wsport
98 });
99
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800100 $log.log('OnosCtrl has been created');
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800101
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800102 $log.debug('route: ', self.$route);
103 $log.debug('routeParams: ', self.$routeParams);
104 $log.debug('location: ', self.$location);
105 }])
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800106
107 .config(['$routeProvider', function ($routeProvider) {
108 // If view ID not provided, route to the first view in the list.
109 $routeProvider
110 .otherwise({
Thomas Vachuska8b91f4f2015-04-23 17:55:36 -0700111 redirectTo: '/topo'
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800112 });
113
114 function viewCtrlName(vid) {
115 return 'Ov' + capitalize(vid) + 'Ctrl';
116 }
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800117
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800118 function viewTemplateUrl(vid) {
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800119 return 'app/view/' + vid + '/' + vid + '.html';
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800120 }
121
122 // Add routes for each defined view.
123 viewIds.forEach(function (vid) {
124 if (vid) {
125 $routeProvider.when('/' + vid, {
126 controller: viewCtrlName(vid),
127 controllerAs: 'ctrl',
128 templateUrl: viewTemplateUrl(vid)
129 });
130 }
131 });
132 }]);
133}());