Matteo Scandolo | ede125b | 2017-08-08 13:05:25 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 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 | |
Scott Baker | 8f32cc8 | 2016-08-08 10:34:53 -0700 | [diff] [blame] | 17 | from xosresource import XOSResource |
Zack Williams | b7e9776 | 2016-10-05 16:12:36 -0700 | [diff] [blame] | 18 | from services.hpc.models import ContentProvider, ServiceProvider |
Scott Baker | 8f32cc8 | 2016-08-08 10:34:53 -0700 | [diff] [blame] | 19 | |
| 20 | class XOSContentProvider(XOSResource): |
| 21 | provides = "tosca.nodes.ContentProvider" |
| 22 | xos_model = ContentProvider |
| 23 | copyin_props = [] |
| 24 | |
| 25 | def get_xos_args(self): |
| 26 | sp_name = self.get_requirement("tosca.relationships.MemberOfServiceProvider", throw_exception=True) |
| 27 | sp = self.get_xos_object(ServiceProvider, name=sp_name) |
| 28 | return {"name": self.obj_name, |
| 29 | "serviceProvider": sp} |
| 30 | |
| 31 | def can_delete(self, obj): |
| 32 | if obj.cdnprefix_set.exists(): |
| 33 | self.info("%s %s has active CDN prefixes; skipping delete" % (self.xos_model.__class__, obj.name)) |
| 34 | return False |
| 35 | return super(XOSContentProvider, self).can_delete(obj) |
| 36 | |