FEATURE: Added logging, finally!
Now the log_dir and log_file_path actually do something useful.
This commit is contained in:
parent
3def57a933
commit
a263f5cb93
1 changed files with 36 additions and 11 deletions
47
discorss.py
47
discorss.py
|
@ -13,6 +13,7 @@
|
||||||
import requests
|
import requests
|
||||||
import feedparser
|
import feedparser
|
||||||
import hashlib
|
import hashlib
|
||||||
|
import logging
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import json
|
import json
|
||||||
import time
|
import time
|
||||||
|
@ -58,10 +59,11 @@ def get_description(feed):
|
||||||
|
|
||||||
def setupPaths():
|
def setupPaths():
|
||||||
global app_config
|
global app_config
|
||||||
|
global logger
|
||||||
# Check for log and config files/paths, create empty directories if needed
|
# Check for log and config files/paths, create empty directories if needed
|
||||||
# TODO: make this cleaner
|
# TODO: make this cleaner
|
||||||
if not Path(log_file_path).exists():
|
if not Path(log_dir).exists():
|
||||||
print("No log file path exists. Yark! We'll try and make {}...", log_dir)
|
print("No log file path exists. Yark! We'll try and make {}...".format(log_dir))
|
||||||
try:
|
try:
|
||||||
Path(log_dir).mkdir(parents=True, exist_ok=True)
|
Path(log_dir).mkdir(parents=True, exist_ok=True)
|
||||||
except FileExistsError:
|
except FileExistsError:
|
||||||
|
@ -85,6 +87,15 @@ def setupPaths():
|
||||||
# Loading the config file
|
# Loading the config file
|
||||||
with open(config_file_path, "r") as config_file:
|
with open(config_file_path, "r") as config_file:
|
||||||
app_config = json.load(config_file)
|
app_config = json.load(config_file)
|
||||||
|
# Set up logging
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
logging.basicConfig(
|
||||||
|
filename=str(log_dir + log_file_path),
|
||||||
|
encoding="utf-8",
|
||||||
|
level=logging.INFO,
|
||||||
|
datefmt="%m/%d/%Y %H:%M:%S",
|
||||||
|
format="%(asctime)s: %(levelname)s: %(message)s",
|
||||||
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
@ -99,24 +110,28 @@ def main():
|
||||||
last_check = now - 21600 # first run, no lastupdate, check up to 6 hours ago
|
last_check = now - 21600 # first run, no lastupdate, check up to 6 hours ago
|
||||||
for i, hook in enumerate(app_config["feeds"]):
|
for i, hook in enumerate(app_config["feeds"]):
|
||||||
# Get the feed
|
# Get the feed
|
||||||
print("Parsing feed {}...".format(hook["name"]))
|
logger.info("Parsing feed %s...", hook["name"])
|
||||||
feeds = feedparser.parse(hook["url"])
|
feeds = feedparser.parse(hook["url"])
|
||||||
latest_post = []
|
latest_post = []
|
||||||
prev_best = 0
|
prev_best = 0
|
||||||
for feed in feeds:
|
for feed in feeds["entries"]:
|
||||||
try:
|
try:
|
||||||
|
bad_time = False
|
||||||
published_time = time.mktime(feed["published_parsed"])
|
published_time = time.mktime(feed["published_parsed"])
|
||||||
published_time = published_time + hook["offset"]
|
published_time = published_time + hook["offset"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
published_time = feed["published"]
|
published_time = time.mktime(feed["updated_parsed"])
|
||||||
print(published_time)
|
bad_time = True
|
||||||
sys.exit(254)
|
|
||||||
if published_time > prev_best:
|
if published_time > prev_best:
|
||||||
latest_post = feed
|
latest_post = feed
|
||||||
prev_best = published_time
|
prev_best = published_time
|
||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
|
if bad_time is True:
|
||||||
|
logger.warning(
|
||||||
|
"Feed %s doesn't supply a published time, using updated time instead",
|
||||||
|
hook["name"],
|
||||||
|
)
|
||||||
# Hash the title of the latest post and use that to determine if it's been posted
|
# Hash the title of the latest post and use that to determine if it's been posted
|
||||||
new_hash = hashlib.sha3_512(bytes(latest_post["title"], "utf-8")).hexdigest()
|
new_hash = hashlib.sha3_512(bytes(latest_post["title"], "utf-8")).hexdigest()
|
||||||
try:
|
try:
|
||||||
|
@ -126,7 +141,16 @@ def main():
|
||||||
continue
|
continue
|
||||||
except KeyError:
|
except KeyError:
|
||||||
app_config["feeds"][i]["lasthash"] = new_hash
|
app_config["feeds"][i]["lasthash"] = new_hash
|
||||||
|
logger.info(
|
||||||
|
"Feed %s has no existing hash, likely a new feed!", hook["name"]
|
||||||
|
)
|
||||||
# Generate the webhook
|
# Generate the webhook
|
||||||
|
logger.info(
|
||||||
|
"Publishing webhook for %s. Last check was %d, now is %d",
|
||||||
|
hook["name"],
|
||||||
|
last_check,
|
||||||
|
now,
|
||||||
|
)
|
||||||
webhook = {
|
webhook = {
|
||||||
"embeds": [
|
"embeds": [
|
||||||
{
|
{
|
||||||
|
@ -157,9 +181,10 @@ def main():
|
||||||
}
|
}
|
||||||
webhook_string = json.dumps(webhook)
|
webhook_string = json.dumps(webhook)
|
||||||
|
|
||||||
if published_time > last_check:
|
r = requests.post(hook["webhook"], data=webhook_string, headers=custom_header)
|
||||||
r = requests.post(
|
if r.status_code not in success_codes:
|
||||||
hook["webhook"], data=webhook_string, headers=custom_header
|
logger.error(
|
||||||
|
"Error %d while trying to post %s", r.status_code, hook["webhook"]
|
||||||
)
|
)
|
||||||
if r.status_code not in success_codes:
|
if r.status_code not in success_codes:
|
||||||
print(
|
print(
|
||||||
|
|
Loading…
Add table
Reference in a new issue