Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Ferrand <adferrand@users.noreply.github.com>2021-03-10 22:51:27 +0300
committerGitHub <noreply@github.com>2021-03-10 22:51:27 +0300
commitdd6f2f565e8183b69ff3abf5d965d0d1575b2e5e (patch)
tree9c7547ddedba4a9a5d489780c916c1cf98500ae5 /certbot-apache
parentf2d8c81e9b8165a37c27641a49b447e55921147e (diff)
Convert Python 2 type hints to Python 3 types annotations (#8640)
Fixes #8427 This PR converts the Python 2 types hints into Python 3 types annotations. I have used the project https://github.com/ilevkivskyi/com2ann which has been designed for that specific purpose and did that very well. The only remaining things to do were to fix broken type hints that became wrong code after migration, and to fix lines too long with the new syntax. * Raw execution of com2ann * Fixing broken type annotations * Cleanup imports
Diffstat (limited to 'certbot-apache')
-rw-r--r--certbot-apache/certbot_apache/_internal/augeasparser.py2
-rw-r--r--certbot-apache/certbot_apache/_internal/configurator.py33
-rw-r--r--certbot-apache/certbot_apache/_internal/http_01.py4
-rw-r--r--certbot-apache/certbot_apache/_internal/obj.py4
-rw-r--r--certbot-apache/certbot_apache/_internal/override_centos.py6
-rw-r--r--certbot-apache/certbot_apache/_internal/parser.py11
-rw-r--r--certbot-apache/tests/augeasnode_test.py2
-rw-r--r--certbot-apache/tests/http_01_test.py2
8 files changed, 32 insertions, 32 deletions
diff --git a/certbot-apache/certbot_apache/_internal/augeasparser.py b/certbot-apache/certbot_apache/_internal/augeasparser.py
index 461b5cb7b..4549e935a 100644
--- a/certbot-apache/certbot_apache/_internal/augeasparser.py
+++ b/certbot-apache/certbot_apache/_internal/augeasparser.py
@@ -355,7 +355,7 @@ class AugeasBlockNode(AugeasDirectiveNode):
ownpath = self.metadata.get("augeaspath")
directives = self.parser.find_dir(name, start=ownpath, exclude=exclude)
- already_parsed = set() # type: Set[str]
+ already_parsed: Set[str] = set()
for directive in directives:
# Remove the /arg part from the Augeas path
directive = directive.partition("/arg")[0]
diff --git a/certbot-apache/certbot_apache/_internal/configurator.py b/certbot-apache/certbot_apache/_internal/configurator.py
index ecd5c46de..29648d4c1 100644
--- a/certbot-apache/certbot_apache/_internal/configurator.py
+++ b/certbot-apache/certbot_apache/_internal/configurator.py
@@ -16,11 +16,6 @@ from typing import Union
import zope.component
import zope.interface
-try:
- import apacheconfig
- HAS_APACHECONFIG = True
-except ImportError: # pragma: no cover
- HAS_APACHECONFIG = False
from acme import challenges
from certbot import errors
@@ -41,6 +36,12 @@ from certbot_apache._internal import http_01
from certbot_apache._internal import obj
from certbot_apache._internal import parser
+try:
+ import apacheconfig
+ HAS_APACHECONFIG = True
+except ImportError: # pragma: no cover
+ HAS_APACHECONFIG = False
+
logger = logging.getLogger(__name__)
@@ -211,23 +212,23 @@ class ApacheConfigurator(common.Installer):
super(ApacheConfigurator, self).__init__(*args, **kwargs)
# Add name_server association dict
- self.assoc = {} # type: Dict[str, obj.VirtualHost]
+ self.assoc: Dict[str, obj.VirtualHost] = {}
# Outstanding challenges
- self._chall_out = set() # type: Set[KeyAuthorizationAnnotatedChallenge]
+ self._chall_out: Set[KeyAuthorizationAnnotatedChallenge] = set()
# List of vhosts configured per wildcard domain on this run.
# used by deploy_cert() and enhance()
- self._wildcard_vhosts = {} # type: Dict[str, List[obj.VirtualHost]]
+ self._wildcard_vhosts: Dict[str, List[obj.VirtualHost]] = {}
# Maps enhancements to vhosts we've enabled the enhancement for
- self._enhanced_vhosts = defaultdict(set) # type: DefaultDict[str, Set[obj.VirtualHost]]
+ self._enhanced_vhosts: DefaultDict[str, Set[obj.VirtualHost]] = defaultdict(set)
# Temporary state for AutoHSTS enhancement
- self._autohsts = {} # type: Dict[str, Dict[str, Union[int, float]]]
+ self._autohsts: Dict[str, Dict[str, Union[int, float]]] = {}
# Reverter save notes
self.save_notes = ""
# Should we use ParserNode implementation instead of the old behavior
self.USE_PARSERNODE = use_parsernode
# Saves the list of file paths that were parsed initially, and
# not added to parser tree by self.conf("vhost-root") for example.
- self.parsed_paths = [] # type: List[str]
+ self.parsed_paths: List[str] = []
# These will be set in the prepare function
self._prepared = False
self.parser = None
@@ -833,7 +834,7 @@ class ApacheConfigurator(common.Installer):
:rtype: set
"""
- all_names = set() # type: Set[str]
+ all_names: Set[str] = set()
vhost_macro = []
@@ -997,8 +998,8 @@ class ApacheConfigurator(common.Installer):
"""
# Search base config, and all included paths for VirtualHosts
- file_paths = {} # type: Dict[str, str]
- internal_paths = defaultdict(set) # type: DefaultDict[str, Set[str]]
+ file_paths: Dict[str, str] = {}
+ internal_paths: DefaultDict[str, Set[str]] = defaultdict(set)
vhs = []
# Make a list of parser paths because the parser_paths
# dictionary may be modified during the loop.
@@ -2157,7 +2158,7 @@ class ApacheConfigurator(common.Installer):
# There can be other RewriteRule directive lines in vhost config.
# rewrite_args_dict keys are directive ids and the corresponding value
# for each is a list of arguments to that directive.
- rewrite_args_dict = defaultdict(list) # type: DefaultDict[str, List[str]]
+ rewrite_args_dict: DefaultDict[str, List[str]] = defaultdict(list)
pat = r'(.*directive\[\d+\]).*'
for match in rewrite_path:
m = re.match(pat, match)
@@ -2251,7 +2252,7 @@ class ApacheConfigurator(common.Installer):
if ssl_vhost.aliases:
serveralias = "ServerAlias " + " ".join(ssl_vhost.aliases)
- rewrite_rule_args = [] # type: List[str]
+ rewrite_rule_args: List[str] = []
if self.get_version() >= (2, 3, 9):
rewrite_rule_args = constants.REWRITE_HTTPS_ARGS_WITH_END
else:
diff --git a/certbot-apache/certbot_apache/_internal/http_01.py b/certbot-apache/certbot_apache/_internal/http_01.py
index 4bd935d2d..66d888e97 100644
--- a/certbot-apache/certbot_apache/_internal/http_01.py
+++ b/certbot-apache/certbot_apache/_internal/http_01.py
@@ -57,7 +57,7 @@ class ApacheHttp01(common.ChallengePerformer):
self.challenge_dir = os.path.join(
self.configurator.config.work_dir,
"http_challenges")
- self.moded_vhosts = set() # type: Set[VirtualHost]
+ self.moded_vhosts: Set[VirtualHost] = set()
def perform(self):
"""Perform all HTTP-01 challenges."""
@@ -93,7 +93,7 @@ class ApacheHttp01(common.ChallengePerformer):
self.configurator.enable_mod(mod, temp=True)
def _mod_config(self):
- selected_vhosts = [] # type: List[VirtualHost]
+ selected_vhosts: List[VirtualHost] = []
http_port = str(self.configurator.config.http01_port)
for chall in self.achalls:
# Search for matching VirtualHosts
diff --git a/certbot-apache/certbot_apache/_internal/obj.py b/certbot-apache/certbot_apache/_internal/obj.py
index 5e4680e1b..21fd042f6 100644
--- a/certbot-apache/certbot_apache/_internal/obj.py
+++ b/certbot-apache/certbot_apache/_internal/obj.py
@@ -137,7 +137,7 @@ class VirtualHost:
def get_names(self):
"""Return a set of all names."""
- all_names = set() # type: Set[str]
+ all_names: Set[str] = set()
all_names.update(self.aliases)
# Strip out any scheme:// and <port> field from servername
if self.name is not None:
@@ -245,7 +245,7 @@ class VirtualHost:
# already_found acts to keep everything very conservative.
# Don't allow multiple ip:ports in same set.
- already_found = set() # type: Set[str]
+ already_found: Set[str] = set()
for addr in vhost.addrs:
for local_addr in self.addrs:
diff --git a/certbot-apache/certbot_apache/_internal/override_centos.py b/certbot-apache/certbot_apache/_internal/override_centos.py
index 4cde65d57..54edfc911 100644
--- a/certbot-apache/certbot_apache/_internal/override_centos.py
+++ b/certbot-apache/certbot_apache/_internal/override_centos.py
@@ -102,9 +102,9 @@ class CentOSConfigurator(configurator.ApacheConfigurator):
loadmods = self.parser.find_dir("LoadModule", "ssl_module", exclude=False)
- correct_ifmods = [] # type: List[str]
- loadmod_args = [] # type: List[str]
- loadmod_paths = [] # type: List[str]
+ correct_ifmods: List[str] = []
+ loadmod_args: List[str] = []
+ loadmod_paths: List[str] = []
for m in loadmods:
noarg_path = m.rpartition("/")[0]
path_args = self.parser.get_all_args(noarg_path)
diff --git a/certbot-apache/certbot_apache/_internal/parser.py b/certbot-apache/certbot_apache/_internal/parser.py
index eb8f267f9..1a6af4c4b 100644
--- a/certbot-apache/certbot_apache/_internal/parser.py
+++ b/certbot-apache/certbot_apache/_internal/parser.py
@@ -6,7 +6,6 @@ import re
from typing import Dict
from typing import List
-
from certbot import errors
from certbot.compat import os
from certbot_apache._internal import apache_util
@@ -49,9 +48,9 @@ class ApacheParser:
"version 1.2.0 or higher, please make sure you have you have "
"those installed.")
- self.modules = {} # type: Dict[str, str]
- self.parser_paths = {} # type: Dict[str, List[str]]
- self.variables = {} # type: Dict[str, str]
+ self.modules: Dict[str, str] = {}
+ self.parser_paths: Dict[str, List[str]] = {}
+ self.variables: Dict[str, str] = {}
# Find configuration root and make sure augeas can parse it.
self.root = os.path.abspath(root)
@@ -264,7 +263,7 @@ class ApacheParser:
the iteration issue. Else... parse and enable mods at same time.
"""
- mods = {} # type: Dict[str, str]
+ mods: Dict[str, str] = {}
matches = self.find_dir("LoadModule")
iterator = iter(matches)
# Make sure prev_size != cur_size for do: while: iteration
@@ -551,7 +550,7 @@ class ApacheParser:
else:
arg_suffix = "/*[self::arg=~regexp('%s')]" % case_i(arg)
- ordered_matches = [] # type: List[str]
+ ordered_matches: List[str] = []
# TODO: Wildcards should be included in alphabetical order
# https://httpd.apache.org/docs/2.4/mod/core.html#include
diff --git a/certbot-apache/tests/augeasnode_test.py b/certbot-apache/tests/augeasnode_test.py
index abe72a5d0..83224fc98 100644
--- a/certbot-apache/tests/augeasnode_test.py
+++ b/certbot-apache/tests/augeasnode_test.py
@@ -107,7 +107,7 @@ class AugeasParserNodeTest(util.ApacheTest): # pylint: disable=too-many-public-
def test_set_parameters(self):
servernames = self.config.parser_root.find_directives("servername")
- names = [] # type: List[str]
+ names: List[str] = []
for servername in servernames:
names += servername.parameters
self.assertFalse("going_to_set_this" in names)
diff --git a/certbot-apache/tests/http_01_test.py b/certbot-apache/tests/http_01_test.py
index 696cd4a54..06e19e445 100644
--- a/certbot-apache/tests/http_01_test.py
+++ b/certbot-apache/tests/http_01_test.py
@@ -26,7 +26,7 @@ class ApacheHttp01Test(util.ApacheTest):
super(ApacheHttp01Test, self).setUp(*args, **kwargs)
self.account_key = self.rsa512jwk
- self.achalls = [] # type: List[achallenges.KeyAuthorizationAnnotatedChallenge]
+ self.achalls: List[achallenges.KeyAuthorizationAnnotatedChallenge] = []
vh_truth = util.get_vh_truth(
self.temp_dir, "debian_apache_2_4/multiple_vhosts")
# Takes the vhosts for encryption-example.demo, certbot.demo