source: src/django_gheat/gheat/models.py@ 9317

Last change on this file since 9317 was 9245, checked in by dennisw, 13 years ago

Removed 'Node' table since I had no use for it after all.
(Make sure to run './manage.py syncdb' to get rid of it locally in case you had it.)

File size: 3.1 KB
RevLine 
[9006]1from gheat import managers
[9026]2import datetime
[9184]3import binascii
4import hashlib
[9006]5
[9184]6from django.core import validators
7from django.db import models
8from django.dispatch import receiver
9from django.utils.encoding import smart_unicode
10from django.utils.translation import ugettext_lazy as _
11
12class BinaryField(models.Field):
13 MAGIC = '###MAGIC###'
14 description = _('Binary object using base64 (up to %(max_length)s)')
15
16 __metaclass__ = models.SubfieldBase
17
18 def __init__(self, *args, **kwargs):
19 # base64 roughly max the binary size with with 4 times
20 kwargs['max_length'] = kwargs['max_length'] * 4 + len(self.MAGIC)
21 super(BinaryField, self).__init__(*args, **kwargs)
22 self.validators.append(validators.MaxLengthValidator(self.max_length))
23
24 def to_python(self,value):
25 if value.startswith(self.MAGIC):
26 return binascii.a2b_base64(value[len(self.MAGIC):])
27 else:
28 return value
29
30 def get_db_prep_value(self, value, connection, prepared=False):
31 target = self.MAGIC + binascii.b2a_base64(value)
32 if len(target) > self.max_length:
33 raise ValueError(len(target))
34 return target
35
36 def get_prep_lookup(self, lookup_type, value):
37 raise TypeError('Lookup type %r not supported.' % lookup_type)
38
39 def get_internal_type(self):
40 return 'TextField'
41
42class TileCache(models.Model):
43 key = models.CharField(max_length=34,unique=True)
44 data = BinaryField(max_length=10000)
45 creation_time = models.DateTimeField(auto_now_add=True)
46
47 def __unicode__(self):
48 return self.key
49
50 @staticmethod
51 def make_key(source):
52 return hashlib.md5(source).hexdigest()
53
54
[9026]55class Accespoint(models.Model):
[9053]56 mac = models.CharField(max_length=17)
57 ssid = models.CharField(max_length=64)
58 encryptie = models.BooleanField()
59 def __unicode__(self):
60 return "%s - %s" % (self.mac, self.ssid)
[9006]61
[9026]62class Gebruiker(models.Model):
[9053]63 naam = models.CharField(max_length=64)
64 email = models.CharField(max_length=64)
65 def __unicode__(self):
66 return "%s - %s" % (self.naam, self.email)
[9026]67
[9041]68class Apparatuur(models.Model):
[9053]69 antenne = models.CharField(max_length=64)
70 kaart = models.CharField(max_length=64)
71 def __unicode__(self):
72 return "%s - %s" % (self.antenne, self.kaart)
[9026]73
[9041]74class MeetRondje(models.Model):
[9053]75 datum = models.DateTimeField()
[9097]76 naam = models.CharField(max_length=64)
[9053]77 gebruiker = models.ForeignKey(Gebruiker)
78 apparatuur = models.ForeignKey(Apparatuur)
79 def __unicode__(self):
[9054]80 return "%s - %s" % (self.gebruiker.naam, self.naam)
[9041]81
[9026]82class Meting(models.Model):
[9053]83 meetrondje = models.ForeignKey(MeetRondje)
84 accespoint = models.ForeignKey(Accespoint)
85 latitude = models.FloatField(name='Latitude', db_column='lat')
86 longitude = models.FloatField(name='Longitude', db_column='lng')
87 signaal = models.IntegerField(max_length=3)
88 objects = managers.MetingManager()
[9054]89 def __unicode__(self):
[9164]90 return "%s @ %.5f,%.5f : %s" % (self.accespoint.ssid, float(self.latitude), float(self.longitude), self.signaal)
[9179]91 class Meta:
92 # This implies that you cannot have multiple messurements on the same
93 # location for a single 'run', thus the data needs cleaned before to make
94 # this properly hold.
95 unique_together = ('meetrondje', 'accespoint', 'latitude', 'longitude'),
Note: See TracBrowser for help on using the repository browser.