Added support for Generic Tags. Tags can be applied to Node, Site, Slice, Sliver...
[plstackapi.git] / planetstack / core / models / site.py
1 import os
2 from django.db import models
3 from core.models import PlCoreBase
4 from core.models import Deployment
5 from core.models import Tag
6 from django.contrib.contenttypes import generic
7
8 class Site(PlCoreBase):
9
10     tenant_id = models.CharField(null=True, blank=True, max_length=200, help_text="Keystone tenant id")
11     name = models.CharField(max_length=200, help_text="Name for this Site")
12     site_url = models.URLField(null=True, blank=True, max_length=512, help_text="Site's Home URL Page")
13     enabled = models.BooleanField(default=True, help_text="Status for this Site")
14     longitude = models.FloatField(null=True, blank=True)
15     latitude = models.FloatField(null=True, blank=True)
16     login_base = models.CharField(max_length=50, unique=True, help_text="Prefix for Slices associated with this Site")
17     is_public = models.BooleanField(default=True, help_text="Indicates the visibility of this site to other members")
18     abbreviated_name = models.CharField(max_length=80)
19
20     deployments = models.ManyToManyField(Deployment, blank=True, related_name='sites')
21     tags = generic.GenericRelation(Tag)
22
23     def __unicode__(self):  return u'%s' % (self.name)
24
25 class SitePrivilege(PlCoreBase):
26
27     user = models.ForeignKey('User', related_name='site_privileges')
28     site = models.ForeignKey('Site', related_name='site_privileges')
29     role = models.ForeignKey('Role')
30
31     def __unicode__(self):  return u'%s %s %s' % (self.site, self.user, self.role)
32
33     def save(self, *args, **kwds):
34         super(SitePrivilege, self).save(*args, **kwds)
35
36     def delete(self, *args, **kwds):
37         super(SitePrivilege, self).delete(*args, **kwds)
38
39