aboutsummaryrefslogtreecommitdiff
path: root/octodns-custom-providers/source/phpipam.py
blob: aacebb81da578a1cddc8fcef21fa668b65a4646b (plain)
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
import octodns.zone.Zone
import octodns.source.base.BaseSource
import phpipam
import logging

class PhpipamSource(BaseSource):
    SUPPORTS_GEO=False
    SUPPORTS=set(('A', 'AAAA'))

    def __init__(self, id, url, user="", token, appid, section):
        '''
        Arguments
        =========
        id: str
        url: str
        user: str
        token: str
        appid: str
        section: str
            phpipam section id to search for addresses
        '''
        self.log = logging.getLogger('PhpipamSource[{}]'.format(id))
        self.log.debug('__init__: id=%s url=%s appid=%s', id, url, appid)

        super(PhpipamSource).__init__(id)

        self._ipam = PhpipamAPI( url, appid, user, token )

    def populate(self, zone, target=False, lenient=False):
        domain = zone.name

        # Do the *MAGIC* Here
        return False