Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 1 | /* |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | * Copyright 2014-present Open Networking Foundation |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 3 | * |
| 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 | */ |
Steven Burrows | 0f26ac8 | 2017-08-07 22:36:36 +0100 | [diff] [blame] | 20 | |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 21 | (function () { |
| 22 | 'use strict'; |
| 23 | |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 24 | // injected refs |
| 25 | var $log; |
| 26 | |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 27 | // define core module dependencies here... |
| 28 | var coreDependencies = [ |
| 29 | 'ngRoute', |
| 30 | 'onosMast', |
| 31 | 'onosNav', |
| 32 | 'onosUtil', |
| 33 | 'onosSvg', |
| 34 | 'onosRemote', |
| 35 | 'onosLayer', |
| 36 | 'onosWidget' |
| 37 | ]; |
| 38 | |
chengfan | 386620e | 2016-11-09 17:02:40 +0800 | [diff] [blame] | 39 | // view ID to help page url map.. injected via the servlet |
| 40 | var viewMap = { |
| 41 | // {INJECTED-VIEW-DATA-START} |
| 42 | // {INJECTED-VIEW-DATA-END} |
| 43 | }, |
| 44 | viewIds = []; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 45 | |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 46 | // secret sauce |
| 47 | var sauce = [ |
Simon Hunt | fedd175 | 2016-02-11 14:37:26 -0800 | [diff] [blame] | 48 | '6:69857666', |
| 49 | '9:826970', |
| 50 | '22:8069828667', |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 51 | '6:698570688669887967', |
| 52 | '7:6971806889847186', |
| 53 | '22:8369867682', |
| 54 | '13:736583', |
| 55 | '7:667186698384', |
Simon Hunt | fedd175 | 2016-02-11 14:37:26 -0800 | [diff] [blame] | 56 | '1:857780888778876787', |
| 57 | '20:70717066', |
Simon Hunt | b8d3798 | 2016-08-22 21:29:55 -0700 | [diff] [blame] | 58 | '24:886774868469', |
Viswanath KSP | 0cf084b | 2016-11-19 18:17:55 +0530 | [diff] [blame] | 59 | '17:7487696973687580739078', |
Viswanath KSP | 539427f | 2016-12-21 19:08:08 +0530 | [diff] [blame] | 60 | '14:70777086', |
Thomas Vachuska | 9e4bf03 | 2017-08-01 10:05:09 -0700 | [diff] [blame] | 61 | '17:7287687967', |
| 62 | '11:65678869706783687184', |
| 63 | '1:80777778', |
Thomas Vachuska | bea68cf | 2017-11-03 13:05:18 -0700 | [diff] [blame] | 64 | '9:72696982', |
| 65 | '7:857165828967' |
Simon Hunt | b8d3798 | 2016-08-22 21:29:55 -0700 | [diff] [blame] | 66 | // Add more sauce... |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 67 | ]; |
| 68 | |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 69 | var defaultView = 'topo', |
| 70 | viewDependencies = []; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 71 | |
chengfan | 386620e | 2016-11-09 17:02:40 +0800 | [diff] [blame] | 72 | viewIds = d3.map(viewMap).keys(); |
| 73 | |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 74 | viewIds.forEach(function (id) { |
| 75 | if (id) { |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 76 | viewDependencies.push('ov' + cap(id)); |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 77 | } |
| 78 | }); |
| 79 | |
| 80 | var moduleDependencies = coreDependencies.concat(viewDependencies); |
| 81 | |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 82 | function saucy(ee, ks) { |
| 83 | var map = ee.genMap(sauce); |
| 84 | Object.keys(map).forEach(function (k) { |
| 85 | ks.addSeq(k, map[k]); |
| 86 | }); |
| 87 | } |
| 88 | |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 89 | function cap(s) { |
| 90 | return s ? s[0].toUpperCase() + s.slice(1) : s; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | angular.module('onosApp', moduleDependencies) |
| 94 | |
| 95 | .controller('OnosCtrl', [ |
Bri Prebilic Cole | 55ee09b | 2015-08-04 14:34:07 -0700 | [diff] [blame] | 96 | '$log', '$scope', '$route', '$routeParams', '$location', |
Simon Hunt | c1656ed | 2017-06-21 16:47:04 -0700 | [diff] [blame] | 97 | 'LionService', |
Bri Prebilic Cole | 068814d | 2015-05-14 16:06:38 -0700 | [diff] [blame] | 98 | 'KeyService', 'ThemeService', 'GlyphService', 'VeilService', |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 99 | 'PanelService', 'FlashService', 'QuickHelpService', 'EeService', |
Simon Hunt | a1028c4 | 2017-02-07 20:08:03 -0800 | [diff] [blame] | 100 | 'WebSocketService', 'SpriteService', |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 101 | |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 102 | function (_$log_, $scope, $route, $routeParams, $location, |
Simon Hunt | c1656ed | 2017-06-21 16:47:04 -0700 | [diff] [blame] | 103 | lion, ks, ts, gs, vs, ps, flash, qhs, ee, wss, ss) { |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 104 | var self = this; |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 105 | $log = _$log_; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 106 | |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 107 | self.$route = $route; |
| 108 | self.$routeParams = $routeParams; |
| 109 | self.$location = $location; |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 110 | self.version = '1.5.0'; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 111 | |
Bri Prebilic Cole | 55ee09b | 2015-08-04 14:34:07 -0700 | [diff] [blame] | 112 | // shared object inherited by all views: |
| 113 | $scope.onos = {}; |
chengfan | 386620e | 2016-11-09 17:02:40 +0800 | [diff] [blame] | 114 | $scope.onos['viewMap'] = viewMap; |
Bri Prebilic Cole | 55ee09b | 2015-08-04 14:34:07 -0700 | [diff] [blame] | 115 | |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 116 | // initialize services... |
Simon Hunt | c1656ed | 2017-06-21 16:47:04 -0700 | [diff] [blame] | 117 | lion.init(); |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 118 | ts.init(); |
| 119 | ks.installOn(d3.select('body')); |
| 120 | ks.bindQhs(qhs); |
| 121 | gs.init(); |
Simon Hunt | a1028c4 | 2017-02-07 20:08:03 -0800 | [diff] [blame] | 122 | ss.init(); |
Bri Prebilic Cole | 068814d | 2015-05-14 16:06:38 -0700 | [diff] [blame] | 123 | vs.init(); |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 124 | ps.init(); |
Simon Hunt | f4ef6dd | 2016-02-03 17:05:14 -0800 | [diff] [blame] | 125 | saucy(ee, ks); |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 126 | flash.initFlash(); |
| 127 | qhs.initQuickHelp(); |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 128 | |
Simon Hunt | 20207df | 2015-03-10 18:30:14 -0700 | [diff] [blame] | 129 | wss.createWebSocket({ |
Thomas Vachuska | 329af53 | 2015-03-10 02:08:33 -0700 | [diff] [blame] | 130 | wsport: $location.search().wsport |
| 131 | }); |
| 132 | |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 133 | $log.log('OnosCtrl has been created'); |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 134 | |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 135 | $log.debug('route: ', self.$route); |
| 136 | $log.debug('routeParams: ', self.$routeParams); |
| 137 | $log.debug('location: ', self.$location); |
| 138 | }]) |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 139 | |
| 140 | .config(['$routeProvider', function ($routeProvider) { |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 141 | // If view ID not provided, route to the default view |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 142 | $routeProvider |
| 143 | .otherwise({ |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 144 | redirectTo: '/' + defaultView |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 145 | }); |
| 146 | |
| 147 | function viewCtrlName(vid) { |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 148 | return 'Ov' + cap(vid) + 'Ctrl'; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 149 | } |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 150 | |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 151 | function viewTemplateUrl(vid) { |
Thomas Vachuska | a050989 | 2015-02-21 22:18:41 -0800 | [diff] [blame] | 152 | return 'app/view/' + vid + '/' + vid + '.html'; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | // Add routes for each defined view. |
| 156 | viewIds.forEach(function (vid) { |
| 157 | if (vid) { |
| 158 | $routeProvider.when('/' + vid, { |
| 159 | controller: viewCtrlName(vid), |
| 160 | controllerAs: 'ctrl', |
Steven Burrows | f303c1e | 2017-03-13 12:26:22 +0000 | [diff] [blame] | 161 | templateUrl: viewTemplateUrl(vid), |
Simon Hunt | 9edd172 | 2017-03-10 17:43:26 -0800 | [diff] [blame] | 162 | |
| 163 | // Disable reload on $loc.hash() changes for bookmarked topo regions |
Steven Burrows | f303c1e | 2017-03-13 12:26:22 +0000 | [diff] [blame] | 164 | reloadOnSearch: (vid !== 'topo2') |
Simon Hunt | 9edd172 | 2017-03-10 17:43:26 -0800 | [diff] [blame] | 165 | // <SDH> assume this is not needed for ?regionId=... query string |
Steven Burrows | f303c1e | 2017-03-13 12:26:22 +0000 | [diff] [blame] | 166 | // <SBM> Yes this is still needed. Without it the page will reload when navigating between |
| 167 | // regions which loads the new regions without a clean transition to it. |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 168 | }); |
| 169 | } |
| 170 | }); |
Bri Prebilic Cole | 55ee09b | 2015-08-04 14:34:07 -0700 | [diff] [blame] | 171 | }]) |
| 172 | |
| 173 | .directive('detectBrowser', ['$log', 'FnService', |
| 174 | function ($log, fs) { |
| 175 | return function (scope) { |
| 176 | var body = d3.select('body'), |
| 177 | browser = ''; |
| 178 | if (fs.isChrome()) { |
| 179 | browser = 'chrome'; |
| 180 | } else if (fs.isSafari()) { |
| 181 | browser = 'safari'; |
| 182 | } else if (fs.isFirefox()) { |
| 183 | browser = 'firefox'; |
| 184 | } |
| 185 | body.classed(browser, true); |
| 186 | scope.onos.browser = browser; |
| 187 | |
| 188 | if (fs.isMobile()) { |
| 189 | body.classed('mobile', true); |
| 190 | scope.onos.mobile = true; |
| 191 | } |
| 192 | |
| 193 | $log.debug('Detected browser is', fs.cap(browser)); |
| 194 | }; |
Thomas Vachuska | fe8c98a | 2015-02-04 01:24:32 -0800 | [diff] [blame] | 195 | }]); |
| 196 | }()); |