initial checkin of event listener. refactor/cleanup
[plstackapi.git] / planetstack / core / models / slice.py
1 import os
2 from django.db import models
3 from core.models import PlCoreBase
4 from core.models import Site
5 from core.models import User
6 from core.models import Role
7 from core.models import Deployment
8 from core.models import ServiceClass
9
10 # Create your models here.
11
12 class Slice(PlCoreBase):
13     tenant_id = models.CharField(max_length=200, help_text="Keystone tenant id")
14     name = models.CharField(unique=True, help_text="The Name of the Slice", max_length=80)
15     enabled = models.BooleanField(default=True, help_text="Status for this Slice")
16     omf_friendly = models.BooleanField()
17     description=models.TextField(blank=True,help_text="High level description of the slice and expected activities", max_length=1024)
18     slice_url = models.URLField(blank=True, max_length=512)
19     site = models.ForeignKey(Site, related_name='slices', help_text="The Site this Node belongs too")
20     network_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum network")
21     router_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum router id")
22     subnet_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum subnet id")
23
24     serviceClass = models.ForeignKey(ServiceClass, related_name = "slices", null=True, default=ServiceClass.get_default)
25     creator = models.ForeignKey(User, related_name='slices', blank=True, null=True)
26
27     def __unicode__(self):  return u'%s' % (self.name)
28
29     def save(self, *args, **kwds):
30         if self.serviceClass is None:
31             # We allowed None=True for serviceClass because Django evolution
32             # will fail unless it is allowed. But, we we really don't want it to
33             # ever save None, so fix it up here.
34             self.serviceClass = ServiceClass.get_default()
35         if not self.creator and hasattr(self, 'caller'):
36             self.creator = self.caller
37         super(Slice, self).save(*args, **kwds)
38
39 class SliceMembership(PlCoreBase):
40     user = models.ForeignKey('User', related_name='slice_memberships')
41     slice = models.ForeignKey('Slice', related_name='slice_memberships')
42     role = models.ForeignKey('Role')
43
44     def __unicode__(self):  return u'%s %s %s' % (self.slice, self.user, self.role)
45
46     def save(self, *args, **kwds):
47         super(SliceMembership, self).save(*args, **kwds)
48
49     def delete(self, *args, **kwds):
50         super(SliceMembership, self).delete(*args, **kwds)