blob: 1f53674a98b899a23541f63bb4854205d0bc4ca4 [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
15from synchronizers.new_base.modelaccessor import Service
16
17class Helpers():
18 @staticmethod
19 def format_url(url):
20 if 'http' in url:
21 return url
22 else:
23 return 'http://%s' % url
24 @staticmethod
25 def get_onos_fabric_service():
Matteo Scandolo6739b512018-05-30 18:55:29 -070026 # FIXME do not select by name but follow ServiceDependency
27 fabric_service = Service.objects.get(name="fabric")
Matteo Scandolo8f6aa122018-05-10 09:50:48 -070028 onos_fabric_service = fabric_service.subscriber_services[0].leaf_model
Matteo Scandolo8f6aa122018-05-10 09:50:48 -070029 return onos_fabric_service