Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 1 | import os |
| 2 | from django.db import models |
Siobhan Tully | 30fd429 | 2013-05-10 08:59:56 -0400 | [diff] [blame] | 3 | from core.models import PlCoreBase |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 4 | #from core.models import Deployment |
Siobhan Tully | de5450d | 2013-06-21 11:35:33 -0400 | [diff] [blame] | 5 | from core.models import Tag |
| 6 | from django.contrib.contenttypes import generic |
Siobhan Tully | 567e3e6 | 2013-06-21 18:03:16 -0400 | [diff] [blame] | 7 | from geoposition.fields import GeopositionField |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 8 | |
| 9 | class Site(PlCoreBase): |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 10 | """ |
| 11 | A logical grouping of Nodes that are co-located at the same geographic location, which also typically corresponds to the Nodes' location in the physical network. |
| 12 | """ |
Tony Mack | 85d1883 | 2013-05-09 17:02:31 -0400 | [diff] [blame] | 13 | tenant_id = models.CharField(null=True, blank=True, max_length=200, help_text="Keystone tenant id") |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 14 | name = models.CharField(max_length=200, help_text="Name for this Site") |
| 15 | site_url = models.URLField(null=True, blank=True, max_length=512, help_text="Site's Home URL Page") |
| 16 | enabled = models.BooleanField(default=True, help_text="Status for this Site") |
Siobhan Tully | 567e3e6 | 2013-06-21 18:03:16 -0400 | [diff] [blame] | 17 | location = GeopositionField() |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 18 | longitude = models.FloatField(null=True, blank=True) |
| 19 | latitude = models.FloatField(null=True, blank=True) |
| 20 | login_base = models.CharField(max_length=50, unique=True, help_text="Prefix for Slices associated with this Site") |
| 21 | is_public = models.BooleanField(default=True, help_text="Indicates the visibility of this site to other members") |
| 22 | abbreviated_name = models.CharField(max_length=80) |
| 23 | |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 24 | deployments = models.ManyToManyField('Deployment', blank=True) |
| 25 | #deployments = models.ManyToManyField('Deployment', through='SiteDeployments', blank=True) |
Siobhan Tully | de5450d | 2013-06-21 11:35:33 -0400 | [diff] [blame] | 26 | tags = generic.GenericRelation(Tag) |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 27 | |
| 28 | def __unicode__(self): return u'%s' % (self.name) |
| 29 | |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 30 | class SiteRole(PlCoreBase): |
| 31 | |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 32 | ROLE_CHOICES = (('admin','Admin'),('pi','PI'),('tech','Tech'),('billing','Billing')) |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 33 | role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30) |
| 34 | |
| 35 | def __unicode__(self): return u'%s' % (self.role) |
| 36 | |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 37 | class SitePrivilege(PlCoreBase): |
| 38 | |
Siobhan Tully | 30fd429 | 2013-05-10 08:59:56 -0400 | [diff] [blame] | 39 | user = models.ForeignKey('User', related_name='site_privileges') |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 40 | site = models.ForeignKey('Site', related_name='site_privileges') |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 41 | role = models.ForeignKey('SiteRole') |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 42 | |
| 43 | def __unicode__(self): return u'%s %s %s' % (self.site, self.user, self.role) |
| 44 | |
Tony Mack | 00d361f | 2013-04-28 10:28:42 -0400 | [diff] [blame] | 45 | def save(self, *args, **kwds): |
Tony Mack | 00d361f | 2013-04-28 10:28:42 -0400 | [diff] [blame] | 46 | super(SitePrivilege, self).save(*args, **kwds) |
| 47 | |
| 48 | def delete(self, *args, **kwds): |
Tony Mack | 00d361f | 2013-04-28 10:28:42 -0400 | [diff] [blame] | 49 | super(SitePrivilege, self).delete(*args, **kwds) |
| 50 | |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 51 | class Deployment(PlCoreBase): |
| 52 | name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment") |
| 53 | #sites = models.ManyToManyField('Site', through='SiteDeployments', blank=True) |
| 54 | |
| 55 | def __unicode__(self): return u'%s' % (self.name) |
| 56 | |
| 57 | |
| 58 | class DeploymentRole(PlCoreBase): |
| 59 | |
| 60 | ROLE_CHOICES = (('admin','Admin'),) |
| 61 | role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30) |
| 62 | |
| 63 | def __unicode__(self): return u'%s' % (self.role) |
| 64 | |
| 65 | class DeploymentPrivilege(PlCoreBase): |
| 66 | |
| 67 | user = models.ForeignKey('User', related_name='deployment_privileges') |
| 68 | deployment = models.ForeignKey('Deployment', related_name='deployment_privileges') |
| 69 | role = models.ForeignKey('DeploymentRole') |
| 70 | |
| 71 | def __unicode__(self): return u'%s %s %s' % (self.deployment, self.user, self.role) |
| 72 | |
| 73 | class SiteDeployments(PlCoreBase): |
| 74 | site = models.ForeignKey(Site) |
| 75 | deployment = models.ForeignKey(Deployment) |
| 76 | |
| 77 | class Meta: |
| 78 | db_table = 'site_deployments' |
| 79 | #auto_created = Site |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 80 | |