blob: 3ac04fe359c2c564e8da8e0a8368857a6096bea7 [file] [log] [blame]
Matteo Scandolo8f6aa122018-05-10 09:50:48 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Scott Bakere9855012019-04-01 15:01:34 -070015from __future__ import absolute_import
16
Matteo Scandolo8f6aa122018-05-10 09:50:48 -070017class Helpers():
18 @staticmethod
19 def format_url(url):
20 if 'http' in url:
21 return url
22 else:
23 return 'http://%s' % url
Scott Bakere9855012019-04-01 15:01:34 -070024
Matteo Scandolo8f6aa122018-05-10 09:50:48 -070025 @staticmethod
Scott Baker382366d2019-02-04 10:58:43 -080026 def get_onos_fabric_service(model_accessor):
Matteo Scandolo6739b512018-05-30 18:55:29 -070027 # FIXME do not select by name but follow ServiceDependency
Scott Baker382366d2019-02-04 10:58:43 -080028 fabric_service = model_accessor.Service.objects.get(name="fabric")
Scott Bakerafdf11d2018-08-16 15:47:55 -070029 onos_fabric_service = fabric_service.provider_services[0].leaf_model
30 return onos_fabric_service