aboutsummaryrefslogtreecommitdiff
path: root/gnunet/gnsrecord.py
blob: 4d0013970e12a11f043cd4db9a55c50b412bd98f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import datetime

dns_types = {
  "A":      1,
  "NS":     2,
  "CNAME":  5,
  "SOA":    6,
  "PTR":    12,
  "MX":     15,
  "TXT":    16,
  "AAAA":   28,
  "TLSA":   52}

gns_types = {
  "PKEY":     65536,
  "NICK":     65537,
  "LEHO":     65538,
  "VPN":      65539,
  "GNS2DNS":  65540}

types = dict(list(dns_types.items()) + list(gns_types.items()))

class Data:
  def __init__(self, record_type, data, expiration_time=None, private=None, pending=None, shadow=None):
    self.record_type = str(record_type)
    if record_type not in types:
      raise ValueError("'record_type' must be one of %s" % types)
    #self.data = bytearray(data)
    self.data = str(data)
    if expiration_time is not None and not isinstance(expiration_time, datetime.datetime) or isinstance(expiration_time, datetime.timedelta):
      raise TypeError("'expiration_time' must be a datetime.datetime or a datetime.timedelta")
    self.expiration_time = expiration_time
    self.private = private
    self.pending = pending
    self.shadow = shadow