summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-06-01 14:55:13 +0200
committerJan Cholasta <jcholast@redhat.com>2016-06-03 09:00:34 +0200
commit6cfb9d73d9701767d8b76d7ff5bbc080a6be9386 (patch)
tree06fb0af44192500812d5f1cbe410fbfb5975055a /ipalib
parentb8988da0968e3b0bf27ac97a18b1ceae77e41cc3 (diff)
downloadfreeipa-6cfb9d73d9701767d8b76d7ff5bbc080a6be9386.tar.gz
freeipa-6cfb9d73d9701767d8b76d7ff5bbc080a6be9386.tar.xz
freeipa-6cfb9d73d9701767d8b76d7ff5bbc080a6be9386.zip
dns: move code shared by client and server to separate module
Move the shared code to a new ipalib.dns module. https://fedorahosted.org/freeipa/ticket/4739 Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/dns.py100
-rw-r--r--ipalib/plugins/dns.py82
-rw-r--r--ipalib/rpc.py2
-rw-r--r--ipalib/util.py2
4 files changed, 109 insertions, 77 deletions
diff --git a/ipalib/dns.py b/ipalib/dns.py
new file mode 100644
index 000000000..54a4c24a0
--- /dev/null
+++ b/ipalib/dns.py
@@ -0,0 +1,100 @@
+# Authors:
+# Martin Kosek <mkosek@redhat.com>
+# Pavel Zuna <pzuna@redhat.com>
+#
+# Copyright (C) 2010 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+import re
+
+from ipalib import errors
+
+# dnsrecord param name formats
+record_name_format = '%srecord'
+
+
+def get_record_rrtype(name):
+ match = re.match('([^_]+)record$', name)
+ if match is None:
+ return None
+
+ return match.group(1).upper()
+
+
+def has_cli_options(cmd, options, no_option_msg, allow_empty_attrs=False):
+ sufficient = ('setattr', 'addattr', 'delattr', 'rename')
+ if any(k in options for k in sufficient):
+ return
+
+ has_options = False
+ for attr in options.keys():
+ obj_params = [
+ p.name for p in cmd.params()
+ if get_record_rrtype(p.name) or 'dnsrecord_part' in p.flags]
+ if attr in obj_params:
+ if options[attr] or allow_empty_attrs:
+ has_options = True
+ break
+
+ if not has_options:
+ raise errors.OptionError(no_option_msg)
+
+
+def get_rrparam_from_part(cmd, part_name):
+ """
+ Get an instance of DNSRecord parameter that has part_name as its part.
+ If such parameter is not found, None is returned
+
+ :param part_name Part parameter name
+ """
+ try:
+ param = cmd.params[part_name]
+
+ if not any(flag in param.flags for flag in
+ ('dnsrecord_part', 'dnsrecord_extra')):
+ return None
+
+ # All DNS record part or extra parameters contain a name of its
+ # parent RR parameter in its hint attribute
+ rrparam = cmd.params[param.hint]
+ except (KeyError, AttributeError):
+ return None
+
+ return rrparam
+
+
+def iterate_rrparams_by_parts(cmd, kw, skip_extra=False):
+ """
+ Iterates through all DNSRecord instances that has at least one of its
+ parts or extra options in given dictionary. It returns the DNSRecord
+ instance only for the first occurence of part/extra option.
+
+ :param kw Dictionary with DNS record parts or extra options
+ :param skip_extra Skip DNS record extra options, yield only DNS records
+ with a real record part
+ """
+ processed = []
+ for opt in kw:
+ rrparam = get_rrparam_from_part(cmd, opt)
+ if rrparam is None:
+ continue
+
+ if skip_extra and 'dnsrecord_extra' in cmd.params[opt].flags:
+ continue
+
+ if rrparam.name not in processed:
+ processed.append(rrparam.name)
+ yield rrparam
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index 085b39bd2..3a3846d48 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -33,6 +33,11 @@ import dns.rdatatype
import dns.resolver
import six
+from ipalib.dns import (get_record_rrtype,
+ get_rrparam_from_part,
+ has_cli_options,
+ iterate_rrparams_by_parts,
+ record_name_format)
from ipalib.request import context
from ipalib import api, errors, output
from ipalib import Command
@@ -297,9 +302,6 @@ server:
register = Registry()
-# dnsrecord param name formats
-record_name_format = '%srecord'
-
# supported resource record types
_record_types = (
u'A', u'AAAA', u'A6', u'AFSDB', u'APL', u'CERT', u'CNAME', u'DHCID', u'DLV',
@@ -337,14 +339,6 @@ _output_permissions = (
)
-def get_record_rrtype(name):
- match = re.match('([^_]+)record$', name)
- if match is None:
- return None
-
- return match.group(1).upper()
-
-
def _rname_validator(ugettext, zonemgr):
try:
DNSName(zonemgr) # test only if it is valid domain name
@@ -734,72 +728,6 @@ def prompt_missing_parts(rrtype, cmd, kw, prompt_optional=False):
return user_options
-def has_cli_options(cmd, options, no_option_msg, allow_empty_attrs=False):
- sufficient = ('setattr', 'addattr', 'delattr', 'rename')
- if any(k in options for k in sufficient):
- return
-
- has_options = False
- for attr in options.keys():
- obj_params = [
- p.name for p in cmd.params()
- if get_record_rrtype(p.name) or 'dnsrecord_part' in p.flags]
- if attr in obj_params:
- if options[attr] or allow_empty_attrs:
- has_options = True
- break
-
- if not has_options:
- raise errors.OptionError(no_option_msg)
-
-
-def get_rrparam_from_part(cmd, part_name):
- """
- Get an instance of DNSRecord parameter that has part_name as its part.
- If such parameter is not found, None is returned
-
- :param part_name Part parameter name
- """
- try:
- param = cmd.params[part_name]
-
- if not any(flag in param.flags for flag in
- ('dnsrecord_part', 'dnsrecord_extra')):
- return None
-
- # All DNS record part or extra parameters contain a name of its
- # parent RR parameter in its hint attribute
- rrparam = cmd.params[param.hint]
- except (KeyError, AttributeError):
- return None
-
- return rrparam
-
-
-def iterate_rrparams_by_parts(cmd, kw, skip_extra=False):
- """
- Iterates through all DNSRecord instances that has at least one of its
- parts or extra options in given dictionary. It returns the DNSRecord
- instance only for the first occurence of part/extra option.
-
- :param kw Dictionary with DNS record parts or extra options
- :param skip_extra Skip DNS record extra options, yield only DNS records
- with a real record part
- """
- processed = []
- for opt in kw:
- rrparam = get_rrparam_from_part(cmd, opt)
- if rrparam is None:
- continue
-
- if skip_extra and 'dnsrecord_extra' in cmd.params[opt].flags:
- continue
-
- if rrparam.name not in processed:
- processed.append(rrparam.name)
- yield rrparam
-
-
class DNSRecord(Str):
# a list of parts that create the actual raw DNS record
parts = None
diff --git a/ipalib/rpc.py b/ipalib/rpc.py
index 16db33168..67b503b69 100644
--- a/ipalib/rpc.py
+++ b/ipalib/rpc.py
@@ -30,6 +30,8 @@ For documentation on the ``xmlrpclib`` module, see:
Also see the `ipaserver.rpcserver` module.
"""
+from __future__ import absolute_import
+
from decimal import Decimal
import datetime
import os
diff --git a/ipalib/util.py b/ipalib/util.py
index 3fb46b298..2c8772e52 100644
--- a/ipalib/util.py
+++ b/ipalib/util.py
@@ -21,6 +21,8 @@
Various utility functions.
"""
+from __future__ import absolute_import
+
import os
import socket
import re