blob: d509cc0707dcfb32bace28b0bd27c8503203eeae [file] [log] [blame]
Siobhan Tully4bc09f22013-04-10 21:15:21 -04001import os
2from django.db import models
3from plstackapi.core.models import PlCoreBase
4from plstackapi.core.models import Site
Siobhan Tully53437282013-04-26 19:30:27 -04005from plstackapi.core.models import PLUser
Siobhan Tully4bc09f22013-04-10 21:15:21 -04006from plstackapi.core.models import Role
7from plstackapi.core.models import DeploymentNetwork
Siobhan Tully4bc09f22013-04-10 21:15:21 -04008
9# Create your models here.
10
11class Slice(PlCoreBase):
Tony Mackcdec0902013-04-15 00:38:49 -040012 tenant_id = models.CharField(max_length=200, help_text="Keystone tenant id")
Tony Mack48952032013-04-12 11:49:34 -040013 name = models.CharField(unique=True, help_text="The Name of the Slice", max_length=80)
Siobhan Tully4bc09f22013-04-10 21:15:21 -040014 enabled = models.BooleanField(default=True, help_text="Status for this Slice")
15 SLICE_CHOICES = (('plc', 'PLC'), ('delegated', 'Delegated'), ('controller','Controller'), ('none','None'))
16 instantiation = models.CharField(help_text="The instantiation type of the slice", max_length=80, choices=SLICE_CHOICES)
17 omf_friendly = models.BooleanField()
18 description=models.TextField(blank=True,help_text="High level description of the slice and expected activities", max_length=1024)
19 slice_url = models.URLField(blank=True, max_length=512)
20 site = models.ForeignKey(Site, related_name='slices', help_text="The Site this Node belongs too")
21 network_id = models.CharField(max_length=256, help_text="Quantum network")
22 router_id = models.CharField(max_length=256, help_text="Quantum router id")
23
Siobhan Tully231f4c82013-05-02 05:47:24 -040024 SVC_CLASS_CHOICES = (('besteffort', 'Best Effort'), ('silver', 'Silver'), ('gold','Gold'))
25 serviceClass = models.CharField(verbose_name="Service Class",default="besteffort",help_text="The Service Class of this slice", max_length=30, choices=SVC_CLASS_CHOICES)
26
27
Siobhan Tully4bc09f22013-04-10 21:15:21 -040028 def __unicode__(self): return u'%s' % (self.name)
29
Tony Mack62bc59a2013-04-14 23:27:12 -040030 def save(self, *args, **kwds):
Tony Mack93048c22013-05-02 11:20:26 -040031 self.os_manager.save_slice(self)
Tony Mack62bc59a2013-04-14 23:27:12 -040032 super(Slice, self).save(*args, **kwds)
33
34 def delete(self, *args, **kwds):
Tony Mack93048c22013-05-02 11:20:26 -040035 self.os_manager.delete_slice(self)
Tony Mack62bc59a2013-04-14 23:27:12 -040036 super(Slice, self).delete(*args, **kwds)
37
Siobhan Tully4bc09f22013-04-10 21:15:21 -040038class SliceMembership(PlCoreBase):
Siobhan Tully53437282013-04-26 19:30:27 -040039 user = models.ForeignKey('PLUser', related_name='slice_memberships')
Siobhan Tully4bc09f22013-04-10 21:15:21 -040040 slice = models.ForeignKey('Slice', related_name='slice_memberships')
41 role = models.ForeignKey('Role')
42
43 def __unicode__(self): return u'%s %s %s' % (self.slice, self.user, self.role)
44
Tony Mack00d361f2013-04-28 10:28:42 -040045 def save(self, *args, **kwds):
Tony Mack93048c22013-05-02 11:20:26 -040046 self.os_manager.driver.add_user_role(self.user.user_id, self.slice.tenant_id, self.role.role_type)
Tony Mack00d361f2013-04-28 10:28:42 -040047 super(SliceMembership, self).save(*args, **kwds)
48
49 def delete(self, *args, **kwds):
Tony Mack93048c22013-05-02 11:20:26 -040050 self.os_manager.driver.delete_user_role(self.user.user_id, self.slice.tenant_id, self.role.role_type)
Tony Mack00d361f2013-04-28 10:28:42 -040051 super(SliceMembership, self).delete(*args, **kwds)