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 | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 4 | from django.contrib.contenttypes import generic |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 5 | |
| 6 | # Create your models here. |
| 7 | |
Siobhan Tully | bf1153a | 2013-05-27 20:53:48 -0400 | [diff] [blame] | 8 | class Deployment(PlCoreBase): |
| 9 | name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment") |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 10 | |
| 11 | def __unicode__(self): return u'%s' % (self.name) |
| 12 | |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 13 | |
| 14 | class DeploymentRole(PlCoreBase): |
| 15 | |
| 16 | ROLE_CHOICES = (('admin','Admin'),) |
| 17 | role = models.CharField(choices=ROLE_CHOICES, unique=True, max_length=30) |
Tony Mack | f4f1616 | 2013-10-08 15:30:35 -0400 | [diff] [blame] | 18 | krole_id = models.CharField(max_length=80, verbose_name="Keystone role id", null=True, blank=True) |
Siobhan Tully | bfd11dc | 2013-09-03 12:59:24 -0400 | [diff] [blame] | 19 | |
| 20 | def __unicode__(self): return u'%s' % (self.role) |
| 21 | |
| 22 | class DeploymentPrivilege(PlCoreBase): |
| 23 | |
| 24 | user = models.ForeignKey('User', related_name='deployment_privileges') |
| 25 | deployment = models.ForeignKey('Deployment', related_name='deployment_privileges') |
| 26 | role = models.ForeignKey('DeploymentRole') |
| 27 | |
| 28 | def __unicode__(self): return u'%s %s %s' % (self.deployment, self.user, self.role) |
| 29 | |