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 | """ |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 13 | name = models.CharField(max_length=200, help_text="Name for this Site") |
| 14 | site_url = models.URLField(null=True, blank=True, max_length=512, help_text="Site's Home URL Page") |
| 15 | enabled = models.BooleanField(default=True, help_text="Status for this Site") |
Siobhan Tully | 567e3e6 | 2013-06-21 18:03:16 -0400 | [diff] [blame] | 16 | location = GeopositionField() |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 17 | longitude = models.FloatField(null=True, blank=True) |
| 18 | latitude = models.FloatField(null=True, blank=True) |
| 19 | login_base = models.CharField(max_length=50, unique=True, help_text="Prefix for Slices associated with this Site") |
| 20 | is_public = models.BooleanField(default=True, help_text="Indicates the visibility of this site to other members") |
| 21 | abbreviated_name = models.CharField(max_length=80) |
| 22 | |
Tony Mack | e4be32f | 2014-03-11 20:45:25 -0400 | [diff] [blame] | 23 | #deployments = models.ManyToManyField('Deployment', blank=True, related_name='sites') |
| 24 | deployments = models.ManyToManyField('Deployment', through='SiteDeployments', blank=True) |
Siobhan Tully | de5450d | 2013-06-21 11:35:33 -0400 | [diff] [blame] | 25 | tags = generic.GenericRelation(Tag) |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 26 | |
| 27 | def __unicode__(self): return u'%s' % (self.name) |
| 28 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 29 | def can_update(self, user): |
Tony Mack | b7b4f84 | 2014-02-04 19:50:31 -0500 | [diff] [blame] | 30 | if user.is_readonly: |
| 31 | return False |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 32 | if user.is_admin: |
| 33 | return True |
| 34 | site_privs = SitePrivilege.objects.filter(user=user, site=self) |
| 35 | for site_priv in site_privs: |
Tony Mack | b7b4f84 | 2014-02-04 19:50:31 -0500 | [diff] [blame] | 36 | if site_priv.role.role == 'pi': |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 37 | return True |
| 38 | return False |
| 39 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 40 | @staticmethod |
| 41 | def select_by_user(user): |
| 42 | if user.is_admin: |
| 43 | qs = Site.objects.all() |
| 44 | else: |
| 45 | site_ids = [sp.site.id for sp in SitePrivilege.objects.filter(user=user)] |
| 46 | site_ids.append(user.site.id) |
| 47 | qs = Site.objects.filter(id__in=site_ids) |
| 48 | return qs |
| 49 | |
| 50 | |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 51 | class SiteRole(PlCoreBase): |
| 52 | |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 53 | ROLE_CHOICES = (('admin','Admin'),('pi','PI'),('tech','Tech'),('billing','Billing')) |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 54 | role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30) |
| 55 | |
| 56 | def __unicode__(self): return u'%s' % (self.role) |
| 57 | |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 58 | class SitePrivilege(PlCoreBase): |
| 59 | |
Siobhan Tully | 30fd429 | 2013-05-10 08:59:56 -0400 | [diff] [blame] | 60 | user = models.ForeignKey('User', related_name='site_privileges') |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 61 | site = models.ForeignKey('Site', related_name='site_privileges') |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 62 | role = models.ForeignKey('SiteRole') |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 63 | |
| 64 | def __unicode__(self): return u'%s %s %s' % (self.site, self.user, self.role) |
| 65 | |
Tony Mack | 00d361f | 2013-04-28 10:28:42 -0400 | [diff] [blame] | 66 | def save(self, *args, **kwds): |
Tony Mack | 00d361f | 2013-04-28 10:28:42 -0400 | [diff] [blame] | 67 | super(SitePrivilege, self).save(*args, **kwds) |
| 68 | |
| 69 | def delete(self, *args, **kwds): |
Tony Mack | 00d361f | 2013-04-28 10:28:42 -0400 | [diff] [blame] | 70 | super(SitePrivilege, self).delete(*args, **kwds) |
| 71 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 72 | def can_update(self, user): |
Tony Mack | b7b4f84 | 2014-02-04 19:50:31 -0500 | [diff] [blame] | 73 | return self.site.can_update(user) |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 74 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 75 | @staticmethod |
| 76 | def select_by_user(user): |
| 77 | if user.is_admin: |
| 78 | qs = SitePrivilege.objects.all() |
| 79 | else: |
| 80 | sp_ids = [sp.id for sp in SitePrivilege.objects.filter(user=user)] |
| 81 | qs = SitePrivilege.objects.filter(id__in=sp_ids) |
| 82 | return qs |
| 83 | |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 84 | class Deployment(PlCoreBase): |
| 85 | name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment") |
| 86 | #sites = models.ManyToManyField('Site', through='SiteDeployments', blank=True) |
| 87 | |
| 88 | def __unicode__(self): return u'%s' % (self.name) |
| 89 | |
Tony Mack | e4be32f | 2014-03-11 20:45:25 -0400 | [diff] [blame] | 90 | @staticmethod |
| 91 | def select_by_user(user): |
| 92 | return Deployment.objects.all() |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 93 | |
| 94 | class DeploymentRole(PlCoreBase): |
| 95 | |
| 96 | ROLE_CHOICES = (('admin','Admin'),) |
| 97 | role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30) |
| 98 | |
| 99 | def __unicode__(self): return u'%s' % (self.role) |
| 100 | |
| 101 | class DeploymentPrivilege(PlCoreBase): |
| 102 | |
| 103 | user = models.ForeignKey('User', related_name='deployment_privileges') |
| 104 | deployment = models.ForeignKey('Deployment', related_name='deployment_privileges') |
| 105 | role = models.ForeignKey('DeploymentRole') |
| 106 | |
| 107 | def __unicode__(self): return u'%s %s %s' % (self.deployment, self.user, self.role) |
| 108 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 109 | def can_update(self, user): |
| 110 | if user.is_readonly: |
| 111 | return False |
| 112 | if user.is_admin: |
| 113 | return True |
| 114 | dprivs = DeploymentPrivilege.objects.filter(user=user) |
| 115 | for dpriv in dprivs: |
Tony Mack | b7b4f84 | 2014-02-04 19:50:31 -0500 | [diff] [blame] | 116 | if dpriv.role.role == 'admin': |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 117 | return True |
| 118 | return False |
| 119 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 120 | @staticmethod |
| 121 | def select_by_user(user): |
| 122 | if user.is_admin: |
| 123 | qs = DeploymentPrivilege.objects.all() |
| 124 | else: |
| 125 | dpriv_ids = [dp.id for dp in DeploymentPrivilege.objects.filter(user=user)] |
| 126 | qs = DeploymentPrivilege.objects.filter(id__in=dpriv_ids) |
| 127 | return qs |
| 128 | |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 129 | class SiteDeployments(PlCoreBase): |
| 130 | site = models.ForeignKey(Site) |
| 131 | deployment = models.ForeignKey(Deployment) |
Tony Mack | e4be32f | 2014-03-11 20:45:25 -0400 | [diff] [blame] | 132 | tenant_id = models.CharField(null=True, blank=True, max_length=200, help_text="Keystone tenant id") |
| 133 | |
| 134 | @staticmethod |
| 135 | def select_by_user(user): |
| 136 | return SiteDeployments.objects.all() |
Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 137 | |
Tony Mack | 929af70 | 2014-02-04 19:36:52 -0500 | [diff] [blame] | 138 | #class Meta: |
| 139 | # db_table = 'core_site_deployments' |
| 140 | # #auto_created = Site |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 141 | |