Add Site and Deployment to Network object
[plstackapi.git] / planetstack / core / models / network.py
1 import os
2 import socket
3 from django.db import models
4 from core.models import PlCoreBase, Site, Slice, Sliver, Deployment
5 from django.contrib.contenttypes.models import ContentType
6 from django.contrib.contenttypes import generic
7
8 # If true, then IP addresses will be allocated by the model. If false, then
9 # we will assume the observer handles it.
10 NO_OBSERVER=False
11
12 class NetworkTemplate(PlCoreBase):
13     VISIBILITY_CHOICES = (('public', 'public'), ('private', 'private'))
14     TRANSLATION_CHOICES = (('none', 'none'), ('NAT', 'NAT'))
15
16     name = models.CharField(max_length=32)
17     description = models.CharField(max_length=1024, blank=True, null=True)
18     guaranteedBandwidth = models.IntegerField(default=0)
19     visibility = models.CharField(max_length=30, choices=VISIBILITY_CHOICES, default="private")
20     translation = models.CharField(max_length=30, choices=TRANSLATION_CHOICES, default="none")
21     sharedNetworkName = models.CharField(max_length=30, blank=True, null=True)
22     sharedNetworkId = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum network")
23
24     def __unicode__(self):  return u'%s' % (self.name)
25
26 class Network(PlCoreBase):
27     name = models.CharField(max_length=32)
28     template = models.ForeignKey(NetworkTemplate)
29     deployment = models.ForeignKey(Deployment, related_name="networks", help_text="Deployment this Network belongs to")
30     site = models.ForeignKey(Site, blank=True, null=True, default=None, related_name="networks", help_text="Is this an infrastructure Network at a single Site?")
31     subnet = models.CharField(max_length=32, blank=True)
32     ports = models.CharField(max_length=1024, blank=True, null=True)
33     labels = models.CharField(max_length=1024, blank=True, null=True)
34     owner = models.ForeignKey(Slice, related_name="ownedNetworks", help_text="Slice that owns control of this Network")
35
36     guaranteedBandwidth = models.IntegerField(default=0)
37     permitAllSlices = models.BooleanField(default=False)
38     permittedSlices = models.ManyToManyField(Slice, blank=True, related_name="availableNetworks")
39     slices = models.ManyToManyField(Slice, blank=True, related_name="networks", through="NetworkSlice")
40     slivers = models.ManyToManyField(Sliver, blank=True, related_name="networks", through="NetworkSliver")
41
42     # for observer/manager
43     network_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum network")
44     router_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum router id")
45     subnet_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum subnet id")
46
47     def __unicode__(self):  return u'%s' % (self.name)
48
49     def save(self, *args, **kwds):
50         if (not self.subnet) and (NO_OBSERVER):
51             from util.network_subnet_allocator import find_unused_subnet
52             self.subnet = find_unused_subnet(existing_subnets=[x.subnet for x in Network.objects.all()])
53         super(Network, self).save(*args, **kwds)
54
55 class NetworkSlice(PlCoreBase):
56     # This object exists solely so we can implement the permission check when
57     # adding slices to networks. It adds no additional fields to the relation.
58
59     network = models.ForeignKey(Network)
60     slice = models.ForeignKey(Slice)
61
62     def save(self, *args, **kwds):
63         slice = self.slice
64         if (slice not in self.network.permittedSlices.all()) and (slice != self.network.owner) and (not self.network.permitAllSlices):
65             # to add a sliver to the network, then one of the following must be true:
66             #   1) sliver's slice is in network's permittedSlices list,
67             #   2) sliver's slice is network's owner, or
68             #   3) network's permitAllSlices is true
69             raise ValueError("Slice %s is not allowed to connect to network %s" % (str(slice), str(self.network)))
70
71         super(NetworkSlice, self).save(*args, **kwds)
72
73     def __unicode__(self):  return u'%s-%s' % (self.network.name, self.slice.name)
74
75 class NetworkSliver(PlCoreBase):
76     network = models.ForeignKey(Network)
77     sliver = models.ForeignKey(Sliver)
78     ip = models.GenericIPAddressField(help_text="Sliver ip address", blank=True, null=True)
79     port_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum port id")
80
81     def save(self, *args, **kwds):
82         slice = self.sliver.slice
83         if (slice not in self.network.permittedSlices.all()) and (slice != self.network.owner) and (not self.network.permitAllSlices):
84             # to add a sliver to the network, then one of the following must be true:
85             #   1) sliver's slice is in network's permittedSlices list,
86             #   2) sliver's slice is network's owner, or
87             #   3) network's permitAllSlices is true
88             raise ValueError("Slice %s is not allowed to connect to network %s" % (str(slice), str(self.network)))
89
90         if (not self.ip) and (NO_OBSERVER):
91             from util.network_subnet_allocator import find_unused_address
92             self.ip = find_unused_address(self.network.subnet,
93                                           [x.ip for x in self.network.networksliver_set.all()])
94         super(NetworkSliver, self).save(*args, **kwds)
95
96     def __unicode__(self):  return u'%s-%s' % (self.network.name, self.sliver.instance_name)
97
98 class Router(PlCoreBase):
99     name = models.CharField(max_length=32)
100     owner = models.ForeignKey(Slice, related_name="routers")
101     permittedNetworks = models.ManyToManyField(Network, blank=True, related_name="availableRouters")
102     networks = models.ManyToManyField(Network, blank=True, related_name="routers")
103
104     def __unicode__(self):  return u'%s' % (self.name)
105
106 class NetworkParameterType(PlCoreBase):
107     name = models.SlugField(help_text="The name of this parameter", max_length=128)
108     description = models.CharField(max_length=1024)
109
110     def __unicode__(self):  return u'%s' % (self.name)
111
112 class NetworkParameter(PlCoreBase):
113     parameter = models.ForeignKey(NetworkParameterType, related_name="parameters", help_text="The type of the parameter")
114     value = models.CharField(help_text="The value of this parameter", max_length=1024)
115
116     # The required fields to do a ObjectType lookup, and object_id assignment
117     content_type = models.ForeignKey(ContentType)
118     object_id = models.PositiveIntegerField()
119     content_object = generic.GenericForeignKey('content_type', 'object_id')
120
121     def __unicode__(self):
122         return self.parameter.name
123
124