Пример #1
0
def update_tld_names(fail_silently=False):
    """
    Updates the local copy of TLDs file.

    :param bool fail_silently: If set to True, no exceptions is raised on failure but boolean False returned.
    :return bool: True on success, False on failure.
    """
    TLD_NAMES_SOURCE_URL = get_setting("NAMES_SOURCE_URL")
    TLD_NAMES_LOCAL_PATH = get_setting("NAMES_LOCAL_PATH")
    try:
        remote_file = urlopen(TLD_NAMES_SOURCE_URL)
        local_file = open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH), "wb")
        local_file.write(remote_file.read())
        local_file.close()
        remote_file.close()
    except Exception as e:
        if fail_silently:
            return False
        raise TldIOError(e)

    return True
Пример #2
0
def update_tld_names(fail_silently=False):
    """
    Updates the local copy of TLDs file.

    :param bool fail_silently: If set to True, no exceptions is raised on
        failure but boolean False returned.
    :return bool: True on success, False on failure.
    """
    TLD_NAMES_SOURCE_URL = get_setting('NAMES_SOURCE_URL')
    TLD_NAMES_LOCAL_PATH = get_setting('NAMES_LOCAL_PATH')
    try:
        remote_file = urlopen(TLD_NAMES_SOURCE_URL)
        local_file = open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH), 'wb')
        local_file.write(remote_file.read())
        local_file.close()
        remote_file.close()
    except Exception as e:
        if fail_silently:
            return False
        raise TldIOError(e)

    return True
Пример #3
0
def get_tld_names(fail_silently=False, retry_count=0):
    """
    Build the ``tlds`` list if empty. Recursive.

    :param fail_silently: If set to True, no exceptions are raised and None
        is returned on failure.
    :param retry_count: If greater than 1, we raise an exception in order
        to avoid infinite loops.
    :return: Returns interable
    """
    TLD_NAMES_LOCAL_PATH = get_setting('NAMES_LOCAL_PATH')

    if retry_count > 1:
        if fail_silently:
            return None
        else:
            raise TldIOError

    global tld_names

    # If already loaded, return
    if len(tld_names):
        return tld_names

    local_file = None
    try:
        # Load the TLD names file
        local_file = codecs.open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH),
                                 'r',
                                 encoding='utf8')
        # Make a list of it all, strip all garbage
        tld_names = set([u'{0}'.format(line.strip()) for line \
                         in local_file if line[0] not in '/\n'])
        local_file.close()
    except IOError as err:
        update_tld_names()  # Grab the file
        retry_count += 1  # Increment ``retry_count`` in order to avoid
        # infinite loops
        return init(retry_count)  # Run again
    except Exception as err:
        try:
            local_file.close()
        except:
            pass

        if fail_silently:
            return None
        else:
            raise err

    return tld_names
Пример #4
0
def get_tld_names(fail_silently=False, retry_count=0):
    """
    Build the ``tlds`` list if empty. Recursive.

    :param fail_silently: If set to True, no exceptions are raised and None
        is returned on failure.
    :param retry_count: If greater than 1, we raise an exception in order
        to avoid infinite loops.
    :return: Returns interable
    """
    TLD_NAMES_LOCAL_PATH = get_setting("NAMES_LOCAL_PATH")

    if retry_count > 1:
        if fail_silently:
            return None
        else:
            raise TldIOError

    global tld_names

    # If already loaded, return
    if len(tld_names):
        return tld_names

    local_file = None
    try:
        # Load the TLD names file
        local_file = codecs.open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH), "r", encoding="utf8")
        # Make a list of it all, strip all garbage
        tld_names = set(["{0}".format(line.strip()) for line in local_file if line[0] not in "/\n"])
        local_file.close()
    except IOError as err:
        update_tld_names()  # Grab the file
        retry_count += 1  # Increment ``retry_count`` in order to avoid
        # infinite loops
        return get_tld_names(fail_silently, retry_count)  # Run again
    except Exception as err:
        try:
            local_file.close()
        except:
            pass

        if fail_silently:
            return None
        else:
            raise err

    return tld_names
Пример #5
0
def get_tld(url, active_only=False, fail_silently=False):
    """
    Extracts the top level domain based on the mozilla's effective TLD names dat file. Returns a string. May throw
    ``TldBadUrl`` or ``TldDomainNotFound`` exceptions if there's bad URL provided or no TLD match found respectively.

    :param url: URL to get top level domain from.
    :param active_only: If set to True, only active patterns are matched.
    :param fail_silently: If set to True, no exceptions are raised and None is returned on failure.
    :return: String with top level domain or None on failure.
    """
    TLD_NAMES_LOCAL_PATH = get_setting("NAMES_LOCAL_PATH")

    def init(retry_count=0):
        """
        Build the ``tlds`` list if empty. Recursive.

        :param retry_count: If greater than 1, we raise an exception in order to avoid infinite loops.
        :return: Returns interable
        """
        if retry_count > 1:
            if fail_silently:
                return None
            else:
                raise TldIOError

        global tld_names

        # If already loaded, return
        if len(tld_names):
            return tld_names

        local_file = None
        try:
            # Load the TLD names file
            if PY3:
                local_file = open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH), encoding="utf8")
            else:
                local_file = open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH))
            # Make a list of it all, strip all garbage
            # tld_names = list(set([line.strip() for line in local_file if line[0] not in '/\n']))
            tld_names = set([line.strip() for line in local_file if line[0] not in "/\n"])
            local_file.close()
        except IOError as e:
            update_tld_names()  # Grab the file
            retry_count += 1  # Increment ``retry_count`` in order to avoid infinite loops
            return init(retry_count)  # Run again
        except Exception as e:
            try:
                local_file.close()
            except:
                pass

            if fail_silently:
                return None
            else:
                raise e

        return tld_names

    init()  # Init

    # Get (sub) domain name
    domain_name = urlparse(url).netloc.split(":", 1)[0]

    if not domain_name:
        if fail_silently:
            return None
        else:
            raise TldBadUrl(url=url)

    domain_parts = domain_name.split(".")

    # Looping from much to less (for example if we have a domain named "v3.api.google.co.uk" we'll try
    # "v3.api.google.co.uk", then "api.google.co.uk", then "api.google.co.uk", then "google.co.uk", then
    # "co.uk" and finally "uk". If the last one does not match any TLDs, we throw a <TldDomainNotFound>
    # exception.
    for i in range(0, len(domain_parts)):
        sliced_domain_parts = domain_parts[i:]

        match = ".".join(sliced_domain_parts)
        wildcard_match = ".".join(["*"] + sliced_domain_parts[1:])
        inactive_match = "!%s" % match

        # Match tlds
        if match in tld_names or wildcard_match in tld_names or (active_only is False and inactive_match in tld_names):
            return ".".join(domain_parts[i - 1 :])

    if fail_silently:
        return None
    else:
        raise TldDomainNotFound(domain_name=domain_name)
Пример #6
0
def get_tld(url, active_only=False, fail_silently=False, as_object=False):
    """
    Extracts the top level domain based on the mozilla's effective TLD names
    dat file. Returns a string. May throw ``TldBadUrl`` or
    ``TldDomainNotFound`` exceptions if there's bad URL provided or no TLD
    match found respectively.

    :param url: URL to get top level domain from.
    :param active_only: If set to True, only active patterns are matched.
    :param fail_silently: If set to True, no exceptions are raised and None
        is returned on failure.
    :param as_object: If set to True, ``tld.utils.Result`` object is returned,
        ``domain``, ``suffix`` and ``tld`` properties.
    :return mixed: String with top level domain (if ``as_object`` argument
        is set to False) or a ``tld.utils.Result`` object (if ``as_object``
        argument is set to True); returns None on failure.
    """
    TLD_NAMES_LOCAL_PATH = get_setting('NAMES_LOCAL_PATH')

    url = url.lower()

    def init(retry_count=0):
        """
        Build the ``tlds`` list if empty. Recursive.

        :param retry_count: If greater than 1, we raise an exception in order
            to avoid infinite loops.
        :return: Returns interable
        """
        if retry_count > 1:
            if fail_silently:
                return None
            else:
                raise TldIOError

        global tld_names

        # If already loaded, return
        if len(tld_names):
            return tld_names

        local_file = None
        try:
            # Load the TLD names file
            if PY3:
                local_file = open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH), \
                                  encoding="utf8")
            else:
                local_file = open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH))
            # Make a list of it all, strip all garbage
            tld_names = set(
                [line.strip() for line in local_file if line[0] not in '/\n'])
            local_file.close()
        except IOError as e:
            update_tld_names()  # Grab the file
            retry_count += 1  # Increment ``retry_count`` in order to avoid infinite loops
            return init(retry_count)  # Run again
        except Exception as e:
            try:
                local_file.close()
            except:
                pass

            if fail_silently:
                return None
            else:
                raise e

        return tld_names

    init()  # Init

    # Get (sub) domain name
    domain_name = urlparse(url).netloc.split(":", 1)[0]

    if not domain_name:
        if fail_silently:
            return None
        else:
            raise TldBadUrl(url=url)

    domain_parts = domain_name.split('.')

    # Looping from much to less (for example if we have a domain named
    # "v3.api.google.co.uk" we'll try "v3.api.google.co.uk", then
    # "api.google.co.uk", then "api.google.co.uk", then "google.co.uk", then
    # "co.uk" and finally "uk". If the last one does not match any TLDs, we
    # throw a <TldDomainNotFound> exception.
    for i in range(0, len(domain_parts)):
        sliced_domain_parts = domain_parts[i:]

        match = '.'.join(sliced_domain_parts)
        wildcard_match = '.'.join(['*'] + sliced_domain_parts[1:])
        inactive_match = "!%s" % match

        # Match tlds
        if (match in tld_names or wildcard_match in tld_names
                or (active_only is False and inactive_match in tld_names)):
            if not as_object:
                return ".".join(domain_parts[i - 1:])
            else:
                subdomain = ".".join(domain_parts[:i - 1])
                domain = ".".join(domain_parts[i - 1:i])
                suffix = ".".join(domain_parts[i:])
                return Result(subdomain, domain, suffix)

    if fail_silently:
        return None
    else:
        raise TldDomainNotFound(domain_name=domain_name)
Пример #7
0
 def override_settings():
     return get_setting('DEBUG')
Пример #8
0
def get_tld(url, active_only=False, fail_silently=False, as_object=False):
    """
    Extracts the top level domain based on the mozilla's effective TLD names
    dat file. Returns a string. May throw ``TldBadUrl`` or
    ``TldDomainNotFound`` exceptions if there's bad URL provided or no TLD
    match found respectively.

    :param url: URL to get top level domain from.
    :param active_only: If set to True, only active patterns are matched.
    :param fail_silently: If set to True, no exceptions are raised and None
        is returned on failure.
    :param as_object: If set to True, ``tld.utils.Result`` object is returned,
        ``domain``, ``suffix`` and ``tld`` properties.
    :return mixed: String with top level domain (if ``as_object`` argument
        is set to False) or a ``tld.utils.Result`` object (if ``as_object``
        argument is set to True); returns None on failure.
    """
    TLD_NAMES_LOCAL_PATH = get_setting('NAMES_LOCAL_PATH')

    url = url.lower()

    def init(retry_count=0):
        """
        Build the ``tlds`` list if empty. Recursive.

        :param retry_count: If greater than 1, we raise an exception in order
            to avoid infinite loops.
        :return: Returns interable
        """
        if retry_count > 1:
            if fail_silently:
                return None
            else:
                raise TldIOError

        global tld_names

        # If already loaded, return
        if len(tld_names):
            return tld_names

        local_file = None
        try:
            # Load the TLD names file
            local_file = codecs.open(PROJECT_DIR(TLD_NAMES_LOCAL_PATH),
                                     'r',
                                     encoding='utf8')
            # Make a list of it all, strip all garbage
            tld_names = set([u'{0}'.format(line.strip()) for line \
                             in local_file if line[0] not in '/\n'])
            local_file.close()
        except IOError as err:
            update_tld_names() # Grab the file
            retry_count += 1 # Increment ``retry_count`` in order to avoid
                             # infinite loops
            return init(retry_count) # Run again
        except Exception as err:
            try:
                local_file.close()
            except:
                pass

            if fail_silently:
                return None
            else:
                raise err

        return tld_names

    init() # Init

    # Get (sub) domain name
    domain_name = urlparse(url).netloc.split(":", 1)[0]

    if not domain_name:
        if fail_silently:
            return None
        else:
            raise TldBadUrl(url=url)

    domain_parts = domain_name.split('.')

    # Looping from much to less (for example if we have a domain named
    # "v3.api.google.co.uk" we'll try "v3.api.google.co.uk", then
    # "api.google.co.uk", then "api.google.co.uk", then "google.co.uk", then
    # "co.uk" and finally "uk". If the last one does not match any TLDs, we
    # throw a <TldDomainNotFound> exception.
    for i in range(0, len(domain_parts)):
        sliced_domain_parts = domain_parts[i:]

        match = text_type('.').join(sliced_domain_parts)
        wildcard_match = text_type('.').join(['*'] + sliced_domain_parts[1:])
        inactive_match = text_type("!{0}").format(match)

        #if not PY3:
        #    try:
        #        match = match.encode('utf8')
        #        wildcard_match = wildcard_match.encode('utf8')
        #        inactive_match = inactive_match.encode('utf8')
        #    except UnicodeDecodeError as e:
        #        pass

        # Match tlds
        if (match in tld_names or wildcard_match in tld_names or (active_only is False and inactive_match in tld_names)):
            if not as_object:
                return text_type(".").join(domain_parts[i-1:])
            else:
                subdomain = text_type(".").join(domain_parts[:i-1])
                domain = text_type(".").join(domain_parts[i-1:i])
                suffix = text_type(".").join(domain_parts[i:])
                return Result(subdomain, domain, suffix)

    if fail_silently:
        return None
    else:
        raise TldDomainNotFound(domain_name=domain_name)
Пример #9
0
 def override_settings():
     return get_setting('DEBUG')
Пример #10
0
 def __init__(self, msg=None):
     TLD_NAMES_LOCAL_PATH = get_setting('NAMES_LOCAL_PATH')
     if msg is None:
         msg = _("Can't read from or write to the %s file!"
                 ) % TLD_NAMES_LOCAL_PATH
     super(TldIOError, self).__init__(msg)
Пример #11
0
 def __init__(self, msg=None):
     TLD_NAMES_LOCAL_PATH = get_setting('NAMES_LOCAL_PATH')
     if msg is None:
         msg = _("Can't read from or write to the %s file!") % TLD_NAMES_LOCAL_PATH
     super(TldIOError, self).__init__(msg)