blob: 51e05f5aeb910497e6d29849a64efb4145cb1e78 [file] [log] [blame]
Siobhan Tully4bc09f22013-04-10 21:15:21 -04001import os
2from django.db import models
Siobhan Tully30fd4292013-05-10 08:59:56 -04003from core.models import PlCoreBase
4from core.models import Site
5from core.models import User
6from core.models import Role
Siobhan Tullybf1153a2013-05-27 20:53:48 -04007from core.models import Deployment
Scott Bakere8d596f2013-05-13 23:17:13 -07008from core.models import ServiceClass
Siobhan Tullyde5450d2013-06-21 11:35:33 -04009from core.models import Tag
10from django.contrib.contenttypes import generic
Siobhan Tullyce652d02013-10-08 21:52:35 -040011from core.models import Service
Siobhan Tully4bc09f22013-04-10 21:15:21 -040012
13# Create your models here.
14
15class Slice(PlCoreBase):
Tony Mackcdec0902013-04-15 00:38:49 -040016 tenant_id = models.CharField(max_length=200, help_text="Keystone tenant id")
Tony Mack48952032013-04-12 11:49:34 -040017 name = models.CharField(unique=True, help_text="The Name of the Slice", max_length=80)
Siobhan Tully4bc09f22013-04-10 21:15:21 -040018 enabled = models.BooleanField(default=True, help_text="Status for this Slice")
Siobhan Tully4bc09f22013-04-10 21:15:21 -040019 omf_friendly = models.BooleanField()
20 description=models.TextField(blank=True,help_text="High level description of the slice and expected activities", max_length=1024)
21 slice_url = models.URLField(blank=True, max_length=512)
22 site = models.ForeignKey(Site, related_name='slices', help_text="The Site this Node belongs too")
Tony Mack85d18832013-05-09 17:02:31 -040023 network_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum network")
24 router_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum router id")
25 subnet_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum subnet id")
Siobhan Tullyce652d02013-10-08 21:52:35 -040026 service = models.ForeignKey(Service, related_name='service', null=True, blank=True)
Siobhan Tully4bc09f22013-04-10 21:15:21 -040027
Siobhan Tullyde5450d2013-06-21 11:35:33 -040028 tags = generic.GenericRelation(Tag)
29
Scott Bakere8d596f2013-05-13 23:17:13 -070030 serviceClass = models.ForeignKey(ServiceClass, related_name = "slices", null=True, default=ServiceClass.get_default)
Tony Mack2bd5b412013-06-11 21:05:06 -040031 creator = models.ForeignKey(User, related_name='slices', blank=True, null=True)
Siobhan Tully231f4c82013-05-02 05:47:24 -040032
Siobhan Tully4bc09f22013-04-10 21:15:21 -040033 def __unicode__(self): return u'%s' % (self.name)
34
Tony Mack62bc59a2013-04-14 23:27:12 -040035 def save(self, *args, **kwds):
Scott Bakere8d596f2013-05-13 23:17:13 -070036 if self.serviceClass is None:
37 # We allowed None=True for serviceClass because Django evolution
38 # will fail unless it is allowed. But, we we really don't want it to
39 # ever save None, so fix it up here.
40 self.serviceClass = ServiceClass.get_default()
Tony Mack2bd5b412013-06-11 21:05:06 -040041 if not self.creator and hasattr(self, 'caller'):
42 self.creator = self.caller
Tony Mack62bc59a2013-04-14 23:27:12 -040043 super(Slice, self).save(*args, **kwds)
44
Siobhan Tullybfd11dc2013-09-03 12:59:24 -040045class SliceRole(PlCoreBase):
46 ROLE_CHOICES = (('admin','Admin'),('default','Default'))
47
48 role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30)
49
50 def __unicode__(self): return u'%s' % (self.role)
51
52class SlicePrivilege(PlCoreBase):
53 user = models.ForeignKey('User', related_name='slice_privileges')
54 slice = models.ForeignKey('Slice', related_name='slice_privileges')
55 role = models.ForeignKey('SliceRole')
Siobhan Tully4bc09f22013-04-10 21:15:21 -040056
57 def __unicode__(self): return u'%s %s %s' % (self.slice, self.user, self.role)