Andy Bavier | 03df22b | 2017-08-30 14:46:02 -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 | |
| 17 | def __init__(self, *args, **kwargs): |
| 18 | volt_services = VOLTService.objects.all() |
| 19 | if volt_services: |
| 20 | self._meta.get_field("owner").default = volt_services[0].id |
| 21 | super(VOLTTenant, self).__init__(*args, **kwargs) |
| 22 | self.cached_vcpe = None |
| 23 | |
Sapan Bhatia | b9d223f | 2017-09-20 06:42:38 -0700 | [diff] [blame] | 24 | def __xos_save_base(self, *args, **kwargs): |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 25 | if not self.creator: |
| 26 | if not getattr(self, "caller", None): |
| 27 | # caller must be set when creating a vCPE since it creates a slice |
| 28 | raise XOSProgrammingError("VOLTTenant's self.caller was not set") |
| 29 | self.creator = self.caller |
| 30 | if not self.creator: |
| 31 | raise XOSProgrammingError("VOLTTenant's self.creator was not set") |
| 32 | |
Sapan Bhatia | b9d223f | 2017-09-20 06:42:38 -0700 | [diff] [blame] | 33 | return False |