Source code for designate.backend.impl_powerdns

# Copyright 2014 Hewlett-Packard Development Company, L.P.
#
# Author: Kiall Mac Innes <kiall@hpe.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import copy
import threading

import six
from oslo_config import cfg
from oslo_db import options
from oslo_db.exception import DBDuplicateEntry
from oslo_log import log as logging
from oslo_utils import excutils
from sqlalchemy.sql import select

from designate import exceptions
from designate.i18n import _LC
from designate.backend import base
from designate.backend.impl_powerdns import tables
from designate.sqlalchemy import session

LOG = logging.getLogger(__name__)


def _map_col(keys, col):
    return dict([(keys[i], col[i]) for i in range(len(keys))])


[docs]class PowerDNSBackend(base.Backend): __plugin_name__ = 'powerdns' __backend_status__ = 'integrated' @classmethod
[docs] def get_cfg_opts(cls): group = cfg.OptGroup('backend:powerdns') opts = copy.deepcopy(options.database_opts) # Strip connection options discard_opts = ('sqlite_db', 'connection', 'slave_connection') opts = [opt for opt in opts if opt.name not in discard_opts] return [(group, opts,)]
def __init__(self, target): super(PowerDNSBackend, self).__init__(target) self.host = self.options.get('host', '127.0.0.1') self.port = int(self.options.get('port', 53)) self.local_store = threading.local() default_connection = 'sqlite:///%(state_path)s/powerdns.sqlite' % { 'state_path': cfg.CONF.state_path } self.connection = self.options.get('connection', default_connection) @property
[docs] def session(self): # NOTE: This uses a thread local store, allowing each greenthread to # have it's own session stored correctly. Without this, each # greenthread may end up using a single global session, which # leads to bad things happening. if not hasattr(self.local_store, 'session'): self.local_store.session = session.get_session( self.name, self.connection, self.target.id) return self.local_store.session
def _create(self, table, values): query = table.insert() resultproxy = self.session.execute(query, values) # Refetch the row, for generated columns etc query = select([table])\ .where(table.c.id == resultproxy.inserted_primary_key[0]) resultproxy = self.session.execute(query) return _map_col(query.columns.keys(), resultproxy.fetchone()) def _get(self, table, id_, exc_notfound, id_col=None): if id_col is None: id_col = table.c.id query = select([table])\ .where(id_col == id_) resultproxy = self.session.execute(query) results = resultproxy.fetchall() if len(results) != 1: raise exc_notfound() # Map col keys to values in result return _map_col(query.columns.keys(), results[0]) def _delete(self, table, id_, exc_notfound, id_col=None): if id_col is None: id_col = table.c.id query = table.delete()\ .where(id_col == id_) resultproxy = self.session.execute(query) if resultproxy.rowcount != 1: raise exc_notfound() # Zone Methods
[docs] def create_zone(self, context, zone): try: self.session.begin() def _parse_master(master): return '%s:%d' % (master.host, master.port) masters = six.moves.map(_parse_master, self.masters) domain_values = { 'designate_id': zone['id'], 'name': zone['name'].rstrip('.'), 'master': ','.join(masters), 'type': 'SLAVE', 'account': context.tenant } self._create(tables.domains, domain_values) except DBDuplicateEntry: LOG.debug('Successful create of %s in pdns, zone already exists' % zone['name']) # If create fails because the zone exists, don't reraise pass except Exception: with excutils.save_and_reraise_exception(): self.session.rollback() else: self.session.commit() self.mdns_api.notify_zone_changed( context, zone, self.host, self.port, self.timeout, self.retry_interval, self.max_retries, self.delay)
[docs] def delete_zone(self, context, zone): # TODO(kiall): We should make this match create_zone with regard to # transactions. try: self._get(tables.domains, zone['id'], exceptions.ZoneNotFound, id_col=tables.domains.c.designate_id) except exceptions.ZoneNotFound: # If the Zone is already gone, that's ok. We're deleting it # anyway, so just log and continue. LOG.critical(_LC('Attempted to delete a zone which is ' 'not present in the backend. ID: %s') % zone['id']) return self._delete(tables.domains, zone['id'], exceptions.ZoneNotFound, id_col=tables.domains.c.designate_id)

Project Source