Skip to content

Commit

Permalink
Merge pull request #237 from cisagov/bug/switch_psl_helper_package
Browse files Browse the repository at this point in the history
Switch helper package for the Public Suffix List
  • Loading branch information
jsf9k committed Jan 30, 2023
2 parents e3f6a43 + fb108ad commit 47e9b17
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 31 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_version(version_file):
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
install_requires=[
"docopt>=0.6.2",
"publicsuffix>=1.1.0",
"publicsuffixlist[update]>=0.9.2 ",
"pyopenssl>=17.5.0",
"pytablereader>=0.15.0",
"pytablewriter>=0.27.2",
Expand Down
2 changes: 1 addition & 1 deletion src/pshtt/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""This file defines the version of this module."""
__version__ = "0.6.9"
__version__ = "0.6.10"
64 changes: 35 additions & 29 deletions src/pshtt/pshtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
import re
import sys
from urllib import parse as urlparse
from urllib.error import URLError

# Third-Party Libraries
import OpenSSL

# Unable to find type stubs for the publicsuffix package.
from publicsuffix import PublicSuffixList, fetch # type: ignore
from publicsuffixlist.compat import PublicSuffixList # type: ignore
from publicsuffixlist.update import updatePSL # type: ignore
import requests

# Unable to find type stubs for the sslyze package.
Expand Down Expand Up @@ -1594,21 +1592,33 @@ def load_preload_list():
return fully_preloaded


# Returns an instantiated PublicSuffixList object, and the
# list of lines read from the file.
def load_suffix_list():
# Returns an instantiated PublicSuffixList object.
def load_suffix_list(cache_suffix_list=None, update_list=False):
"""Download and load the public suffix list."""
# File does not exist, download current list and cache it at given location.
utils.debug("Downloading the Public Suffix List...", divider=True)
try:
cache_file = fetch()
except URLError as err:
logging.exception("Unable to download the Public Suffix List...")
utils.debug(err)
return []
content = cache_file.readlines()
suffixes = PublicSuffixList(content)
return suffixes, content
if update_list:
utils.debug("Downloading the Public Suffix List...", divider=True)
try:
# Update the local copy
if cache_suffix_list:
updatePSL(cache_suffix_list)
# Update the built-in copy
else:
updatePSL()
except Exception as err:
logging.exception("Unable to download the Public Suffix List...")
utils.debug(err)
return None

# Use the local copy
if cache_suffix_list:
utils.debug("Using cached Public Suffix List.", divider=True)
with codecs.open(cache_suffix_list, encoding="utf-8") as cache_file:
suffixes = PublicSuffixList(cache_file)
# Use the built-in copy
else:
suffixes = PublicSuffixList()

return suffixes


def initialize_external_data(
Expand Down Expand Up @@ -1696,18 +1706,14 @@ def initialize_external_data(

# Load Mozilla's current Public Suffix list.
if SUFFIX_LIST is None:
if cache_suffix_list and os.path.exists(cache_suffix_list):
utils.debug("Using cached suffix list.", divider=True)
with codecs.open(cache_suffix_list, encoding="utf-8") as cache_file:
SUFFIX_LIST = PublicSuffixList(cache_file)
if cache_suffix_list:
# Retrieve the list if the path does not exist otherwise use the cached copy
SUFFIX_LIST = load_suffix_list(
cache_suffix_list, not os.path.exists(cache_suffix_list)
)
else:
SUFFIX_LIST, raw_content = load_suffix_list()

if cache_suffix_list:
utils.debug(
"Caching suffix list at %s", cache_suffix_list, divider=True
)
utils.write("".join(raw_content), cache_suffix_list)
# Load the built-in PSL
SUFFIX_LIST = load_suffix_list()


def inspect_domains(domains, options):
Expand Down

0 comments on commit 47e9b17

Please sign in to comment.