blob: 042a9acbb50af931ba23c7db0a43ec330d8d1733 [file] [log] [blame]
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present 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 */
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080020(function () {
21 'use strict';
22
Simon Huntf4ef6dd2016-02-03 17:05:14 -080023 // injected refs
24 var $log;
25
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080026 // define core module dependencies here...
27 var coreDependencies = [
28 'ngRoute',
29 'onosMast',
30 'onosNav',
31 'onosUtil',
32 'onosSvg',
33 'onosRemote',
34 'onosLayer',
35 'onosWidget'
36 ];
37
Simon Hunt40927332016-01-22 15:29:47 -080038 // view IDs.. injected via the servlet
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080039 var viewIds = [
Thomas Vachuskaa0509892015-02-21 22:18:41 -080040 // {INJECTED-VIEW-IDS-START}
Thomas Vachuskaa0509892015-02-21 22:18:41 -080041 // {INJECTED-VIEW-IDS-END}
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080042 // dummy entry
43 ''
44 ];
45
Simon Huntf4ef6dd2016-02-03 17:05:14 -080046 // secret sauce
47 var sauce = [
Simon Huntfedd1752016-02-11 14:37:26 -080048 '6:69857666',
49 '9:826970',
50 '22:8069828667',
Simon Huntf4ef6dd2016-02-03 17:05:14 -080051 '6:698570688669887967',
52 '7:6971806889847186',
53 '22:8369867682',
54 '13:736583',
55 '7:667186698384',
Simon Huntfedd1752016-02-11 14:37:26 -080056 '1:857780888778876787',
57 '20:70717066',
58 '24:886774868469'
Simon Huntf4ef6dd2016-02-03 17:05:14 -080059 ];
60
Simon Hunt40927332016-01-22 15:29:47 -080061 var defaultView = 'topo',
62 viewDependencies = [];
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080063
64 viewIds.forEach(function (id) {
65 if (id) {
Simon Hunt40927332016-01-22 15:29:47 -080066 viewDependencies.push('ov' + cap(id));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080067 }
68 });
69
70 var moduleDependencies = coreDependencies.concat(viewDependencies);
71
Simon Huntf4ef6dd2016-02-03 17:05:14 -080072 function saucy(ee, ks) {
73 var map = ee.genMap(sauce);
74 Object.keys(map).forEach(function (k) {
75 ks.addSeq(k, map[k]);
76 });
77 }
78
Simon Hunt40927332016-01-22 15:29:47 -080079 function cap(s) {
80 return s ? s[0].toUpperCase() + s.slice(1) : s;
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080081 }
82
83 angular.module('onosApp', moduleDependencies)
84
85 .controller('OnosCtrl', [
Bri Prebilic Cole55ee09b2015-08-04 14:34:07 -070086 '$log', '$scope', '$route', '$routeParams', '$location',
Bri Prebilic Cole068814d2015-05-14 16:06:38 -070087 'KeyService', 'ThemeService', 'GlyphService', 'VeilService',
Simon Huntf4ef6dd2016-02-03 17:05:14 -080088 'PanelService', 'FlashService', 'QuickHelpService', 'EeService',
Bri Prebilic Cole068814d2015-05-14 16:06:38 -070089 'WebSocketService',
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080090
Simon Huntf4ef6dd2016-02-03 17:05:14 -080091 function (_$log_, $scope, $route, $routeParams, $location,
92 ks, ts, gs, vs, ps, flash, qhs, ee, wss) {
Thomas Vachuskaa0509892015-02-21 22:18:41 -080093 var self = this;
Simon Huntf4ef6dd2016-02-03 17:05:14 -080094 $log = _$log_;
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080095
Thomas Vachuskaa0509892015-02-21 22:18:41 -080096 self.$route = $route;
97 self.$routeParams = $routeParams;
98 self.$location = $location;
Simon Huntf4ef6dd2016-02-03 17:05:14 -080099 self.version = '1.5.0';
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800100
Bri Prebilic Cole55ee09b2015-08-04 14:34:07 -0700101 // shared object inherited by all views:
102 $scope.onos = {};
103
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800104 // initialize services...
105 ts.init();
106 ks.installOn(d3.select('body'));
107 ks.bindQhs(qhs);
108 gs.init();
Bri Prebilic Cole068814d2015-05-14 16:06:38 -0700109 vs.init();
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800110 ps.init();
Simon Huntf4ef6dd2016-02-03 17:05:14 -0800111 saucy(ee, ks);
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800112 flash.initFlash();
113 qhs.initQuickHelp();
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800114
Simon Hunt20207df2015-03-10 18:30:14 -0700115 wss.createWebSocket({
Thomas Vachuska329af532015-03-10 02:08:33 -0700116 wsport: $location.search().wsport
117 });
118
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800119 $log.log('OnosCtrl has been created');
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800120
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800121 $log.debug('route: ', self.$route);
122 $log.debug('routeParams: ', self.$routeParams);
123 $log.debug('location: ', self.$location);
124 }])
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800125
126 .config(['$routeProvider', function ($routeProvider) {
Simon Hunt40927332016-01-22 15:29:47 -0800127 // If view ID not provided, route to the default view
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800128 $routeProvider
129 .otherwise({
Simon Hunt40927332016-01-22 15:29:47 -0800130 redirectTo: '/' + defaultView
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800131 });
132
133 function viewCtrlName(vid) {
Simon Hunt40927332016-01-22 15:29:47 -0800134 return 'Ov' + cap(vid) + 'Ctrl';
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800135 }
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800136
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800137 function viewTemplateUrl(vid) {
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800138 return 'app/view/' + vid + '/' + vid + '.html';
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800139 }
140
141 // Add routes for each defined view.
142 viewIds.forEach(function (vid) {
143 if (vid) {
144 $routeProvider.when('/' + vid, {
145 controller: viewCtrlName(vid),
146 controllerAs: 'ctrl',
147 templateUrl: viewTemplateUrl(vid)
148 });
149 }
150 });
Bri Prebilic Cole55ee09b2015-08-04 14:34:07 -0700151 }])
152
153 .directive('detectBrowser', ['$log', 'FnService',
154 function ($log, fs) {
155 return function (scope) {
156 var body = d3.select('body'),
157 browser = '';
158 if (fs.isChrome()) {
159 browser = 'chrome';
160 } else if (fs.isSafari()) {
161 browser = 'safari';
162 } else if (fs.isFirefox()) {
163 browser = 'firefox';
164 }
165 body.classed(browser, true);
166 scope.onos.browser = browser;
167
168 if (fs.isMobile()) {
169 body.classed('mobile', true);
170 scope.onos.mobile = true;
171 }
172
173 $log.debug('Detected browser is', fs.cap(browser));
174 };
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800175 }]);
176}());