lint: reformat python code with black
This commit is contained in:
parent
331beb01b4
commit
a406a7974b
88 changed files with 2579 additions and 1608 deletions
|
@ -32,6 +32,7 @@ class BlockRoskomsvobodaAutomation(BlockMirrorAutomation):
|
|||
|
||||
Where proxies are found to be blocked they will be rotated.
|
||||
"""
|
||||
|
||||
short_name = "block_roskomsvoboda"
|
||||
description = "Import Russian blocklist from RosKomSvoboda"
|
||||
frequency = 300
|
||||
|
@ -43,7 +44,11 @@ class BlockRoskomsvobodaAutomation(BlockMirrorAutomation):
|
|||
try:
|
||||
# This endpoint routinely has an expired certificate, and it's more useful that we are consuming the
|
||||
# data than that we are verifying the certificate.
|
||||
r = requests.get(f"https://dumps.rublacklist.net/fetch/{latest_rev}", timeout=180, verify=False) # nosec: B501
|
||||
r = requests.get(
|
||||
f"https://dumps.rublacklist.net/fetch/{latest_rev}",
|
||||
timeout=180,
|
||||
verify=False,
|
||||
) # nosec: B501
|
||||
r.raise_for_status()
|
||||
zip_file = ZipFile(BytesIO(r.content))
|
||||
self._data = zip_file.read("dump.xml")
|
||||
|
@ -51,26 +56,33 @@ class BlockRoskomsvobodaAutomation(BlockMirrorAutomation):
|
|||
except requests.HTTPError:
|
||||
activity = Activity(
|
||||
activity_type="automation",
|
||||
text=(f"[{self.short_name}] 🚨 Unable to download dump {latest_rev} due to HTTP error {r.status_code}. "
|
||||
"The automation task has not been disabled and will attempt to download the next dump when the "
|
||||
"latest dump revision is incremented at the server."))
|
||||
text=(
|
||||
f"[{self.short_name}] 🚨 Unable to download dump {latest_rev} due to HTTP error {r.status_code}. "
|
||||
"The automation task has not been disabled and will attempt to download the next dump when the "
|
||||
"latest dump revision is incremented at the server."
|
||||
),
|
||||
)
|
||||
activity.notify()
|
||||
db.session.add(activity)
|
||||
db.session.commit()
|
||||
except BadZipFile:
|
||||
activity = Activity(
|
||||
activity_type="automation",
|
||||
text=(f"[{self.short_name}] 🚨 Unable to extract zip file from dump {latest_rev}. There was an error "
|
||||
"related to the format of the zip file. "
|
||||
"The automation task has not been disabled and will attempt to download the next dump when the "
|
||||
"latest dump revision is incremented at the server."))
|
||||
text=(
|
||||
f"[{self.short_name}] 🚨 Unable to extract zip file from dump {latest_rev}. There was an error "
|
||||
"related to the format of the zip file. "
|
||||
"The automation task has not been disabled and will attempt to download the next dump when the "
|
||||
"latest dump revision is incremented at the server."
|
||||
),
|
||||
)
|
||||
activity.notify()
|
||||
db.session.add(activity)
|
||||
db.session.commit()
|
||||
|
||||
def fetch(self) -> None:
|
||||
state: Optional[TerraformState] = TerraformState.query.filter(
|
||||
TerraformState.key == "block_roskomsvoboda").first()
|
||||
TerraformState.key == "block_roskomsvoboda"
|
||||
).first()
|
||||
if state is None:
|
||||
state = TerraformState()
|
||||
state.key = "block_roskomsvoboda"
|
||||
|
@ -80,8 +92,14 @@ class BlockRoskomsvobodaAutomation(BlockMirrorAutomation):
|
|||
latest_metadata = json.loads(state.state)
|
||||
# This endpoint routinely has an expired certificate, and it's more useful that we are consuming the
|
||||
# data than that we are verifying the certificate.
|
||||
latest_rev = requests.get("https://dumps.rublacklist.net/fetch/latest", timeout=30, verify=False).text.strip() # nosec: B501
|
||||
logging.debug("Latest revision is %s, already got %s", latest_rev, latest_metadata["dump_rev"])
|
||||
latest_rev = requests.get(
|
||||
"https://dumps.rublacklist.net/fetch/latest", timeout=30, verify=False
|
||||
).text.strip() # nosec: B501
|
||||
logging.debug(
|
||||
"Latest revision is %s, already got %s",
|
||||
latest_rev,
|
||||
latest_metadata["dump_rev"],
|
||||
)
|
||||
if latest_rev != latest_metadata["dump_rev"]:
|
||||
state.state = json.dumps({"dump_rev": latest_rev})
|
||||
db.session.commit()
|
||||
|
@ -94,18 +112,24 @@ class BlockRoskomsvobodaAutomation(BlockMirrorAutomation):
|
|||
logging.debug("No new data to parse")
|
||||
return
|
||||
try:
|
||||
for _event, element in lxml.etree.iterparse(BytesIO(self._data),
|
||||
resolve_entities=False):
|
||||
for _event, element in lxml.etree.iterparse(
|
||||
BytesIO(self._data), resolve_entities=False
|
||||
):
|
||||
if element.tag == "domain":
|
||||
self.patterns["roskomsvoboda"].append("https://" + element.text.strip())
|
||||
self.patterns["roskomsvoboda"].append(
|
||||
"https://" + element.text.strip()
|
||||
)
|
||||
except XMLSyntaxError:
|
||||
activity = Activity(
|
||||
activity_type="automation",
|
||||
text=(f"[{self.short_name}] 🚨 Unable to parse XML file from dump. There was an error "
|
||||
"related to the format of the XML file within the zip file. Interestingly we were able to "
|
||||
"extract the file from the zip file fine. "
|
||||
"The automation task has not been disabled and will attempt to download the next dump when the "
|
||||
"latest dump revision is incremented at the server."))
|
||||
text=(
|
||||
f"[{self.short_name}] 🚨 Unable to parse XML file from dump. There was an error "
|
||||
"related to the format of the XML file within the zip file. Interestingly we were able to "
|
||||
"extract the file from the zip file fine. "
|
||||
"The automation task has not been disabled and will attempt to download the next dump when the "
|
||||
"latest dump revision is incremented at the server."
|
||||
),
|
||||
)
|
||||
activity.notify()
|
||||
db.session.add(activity)
|
||||
db.session.commit()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue