blob: bf142d445821aedf0ddfe60de2f7f783d974e8e0 [file] [log] [blame]
Bri Prebilic Coleeb28b0b2015-01-15 14:20:58 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Coleeb28b0b2015-01-15 14:20:58 -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 -- Remote -- General Purpose Functions
Bri Prebilic Coleeb28b0b2015-01-15 14:20:58 -080019 */
20(function () {
21 'use strict';
22
Simon Hunt1e4a0012015-01-21 11:36:08 -080023 var uiContext = '/onos/ui/',
24 rsSuffix = uiContext + 'rs/',
Thomas Vachuska329af532015-03-10 02:08:33 -070025 wsSuffix = uiContext + 'websock/';
Simon Hunt1e4a0012015-01-21 11:36:08 -080026
Bri Prebilic Coleeb28b0b2015-01-15 14:20:58 -080027 angular.module('onosRemote')
28 .factory('UrlFnService', ['$location', function ($loc) {
29
Simon Hunt1e4a0012015-01-21 11:36:08 -080030 function matchSecure(protocol) {
31 var p = $loc.protocol(),
32 secure = (p === 'https' || p === 'wss');
33 return secure ? protocol + 's' : protocol;
34 }
35
Simon Hunt8b6d2d42015-03-11 13:04:52 -070036 function urlBase(protocol, port, host) {
Simon Huntfa875bb2016-08-24 11:41:02 -070037 // A little bit of funky here. It is possible that ONOS sits
38 // behind a proxy and has an app prefix, e.g.
39 // http://host:port/my/app/onos/ui...
40 // This bit of regex grabs everything after the host:port and
41 // before the uiContext (/onos/ui/) and uses that as an app
42 // prefix by inserting it back into the WS URL.
43 // If no prefix, then no insert.
44
45 var match = $loc.absUrl().match('.*//[^/]+/(.+)' + uiContext),
46 appPrefix = match ? '/' + match[1] : '';
David K. Bainbridge8ba356c2016-08-23 16:50:10 -070047
Simon Hunt1e4a0012015-01-21 11:36:08 -080048 return matchSecure(protocol) + '://' +
Simon Huntfa875bb2016-08-24 11:41:02 -070049 (host || $loc.host()) + ':' +
50 (port || $loc.port()) + appPrefix;
Simon Hunt1e4a0012015-01-21 11:36:08 -080051 }
52
53 function httpPrefix(suffix) {
54 return urlBase('http') + suffix;
55 }
56
Simon Hunt8b6d2d42015-03-11 13:04:52 -070057 function wsPrefix(suffix, wsport, host) {
58 return urlBase('ws', wsport, host) + suffix;
Simon Hunt1e4a0012015-01-21 11:36:08 -080059 }
60
61 function rsUrl(path) {
62 return httpPrefix(rsSuffix) + path;
63 }
64
Simon Hunt8b6d2d42015-03-11 13:04:52 -070065 function wsUrl(path, wsport, host) {
66 return wsPrefix(wsSuffix, wsport, host) + path;
Bri Prebilic Coleeb28b0b2015-01-15 14:20:58 -080067 }
68
69 return {
Simon Hunt1e4a0012015-01-21 11:36:08 -080070 rsUrl: rsUrl,
71 wsUrl: wsUrl
Bri Prebilic Coleeb28b0b2015-01-15 14:20:58 -080072 };
73 }]);
74
75}());