Matteo Scandolo | 8f6aa12 | 2018-05-10 09:50:48 -0700 | [diff] [blame] | 1 | # 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 Baker | e985501 | 2019-04-01 15:01:34 -0700 | [diff] [blame] | 15 | from __future__ import absolute_import |
| 16 | |
Matteo Scandolo | 8f6aa12 | 2018-05-10 09:50:48 -0700 | [diff] [blame] | 17 | class Helpers(): |
| 18 | @staticmethod |
| 19 | def format_url(url): |
| 20 | if 'http' in url: |
| 21 | return url |
| 22 | else: |
| 23 | return 'http://%s' % url |
Scott Baker | e985501 | 2019-04-01 15:01:34 -0700 | [diff] [blame] | 24 | |
Matteo Scandolo | 8f6aa12 | 2018-05-10 09:50:48 -0700 | [diff] [blame] | 25 | @staticmethod |
Scott Baker | 382366d | 2019-02-04 10:58:43 -0800 | [diff] [blame] | 26 | def get_onos_fabric_service(model_accessor): |
Matteo Scandolo | 6739b51 | 2018-05-30 18:55:29 -0700 | [diff] [blame] | 27 | # FIXME do not select by name but follow ServiceDependency |
Scott Baker | 382366d | 2019-02-04 10:58:43 -0800 | [diff] [blame] | 28 | fabric_service = model_accessor.Service.objects.get(name="fabric") |
Scott Baker | afdf11d | 2018-08-16 15:47:55 -0700 | [diff] [blame] | 29 | onos_fabric_service = fabric_service.provider_services[0].leaf_model |
| 30 | return onos_fabric_service |