blob: 7b42e981f3d97a71e6873ce83206eeb7c5f90fde [file] [log] [blame]
Matteo Scandoloede125b2017-08-08 13:05:25 -07001
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 Baker8f32cc82016-08-08 10:34:53 -070017from xosresource import XOSResource
Zack Williamsb7e97762016-10-05 16:12:36 -070018from services.hpc.models import ServiceProvider, HpcService
Scott Baker8f32cc82016-08-08 10:34:53 -070019
20class XOSServiceProvider(XOSResource):
21 provides = "tosca.nodes.ServiceProvider"
22 xos_model = ServiceProvider
23 copyin_props = []
24
25 def get_xos_args(self):
26 hpc_service_name = self.get_requirement("tosca.relationships.MemberOfService", throw_exception=True)
27 hpc_service = self.get_xos_object(HpcService, name=hpc_service_name)
28 return {"name": self.obj_name,
29 "hpcService": hpc_service}
30
31 def can_delete(self, obj):
32 if obj.contentprovider_set.exists():
33 self.info("%s %s has active content providers; skipping delete" % (self.xos_model.__class__, obj.name))
34 return False
35 return super(XOSServiceProvider, self).can_delete(obj)
36