Compare commits

...
Sign in to create a new pull request.

3 commits
docker ... main

Author SHA1 Message Date
ce71ef1e81
chore: Changed warning text, and some logging values 2025-03-16 02:20:10 -04:00
b72f1d7291
docs: add syntax highlighting to README.md 2025-03-14 10:50:45 +00:00
457e2c3315
feat: rewrote get_description to allow extra text
Now if you want to add something to the end of the description,
you can pass it via the addons parameter. Also moved a line
that was duplicated to reduce the function length.
2025-03-06 20:11:51 -05:00
2 changed files with 10 additions and 7 deletions

View file

@ -23,7 +23,7 @@ Logging was recently enabled. Make sure that the user running the script (especi
To configure the script, create ~/.config/discorss/discorss.conf with the following structure: To configure the script, create ~/.config/discorss/discorss.conf with the following structure:
``` ```json
{ {
"feeds": [ "feeds": [
{ {
@ -54,7 +54,7 @@ To automate feed posting, create a systemd service and timer to execute the scri
Use the command `systemctl --user edit --full --force discorss.service` and then paste in something like this: Use the command `systemctl --user edit --full --force discorss.service` and then paste in something like this:
``` ```systemd
[Unit] [Unit]
Description=Discord RSS feeder Description=Discord RSS feeder
Wants=discorss.timer Wants=discorss.timer
@ -68,7 +68,7 @@ WantedBy=default.target
``` ```
Make sure to edit the ExecStart to point to the correct location. Then we need a systemd timer to automatically fire the script. Run `systemctl --user edit --full --force discorss.timer` and then paste in this: Make sure to edit the ExecStart to point to the correct location. Then we need a systemd timer to automatically fire the script. Run `systemctl --user edit --full --force discorss.timer` and then paste in this:
``` ```systemd
[Unit] [Unit]
Description=Timer for DiscoRSS Description=Timer for DiscoRSS
Requires=discorss.service Requires=discorss.service

View file

@ -53,7 +53,6 @@ def get_description(feed, length=250, min_length=150, addons=None):
break break
else: else:
length -= 1 length -= 1
desc = temporary_string[:length]
except KeyError: except KeyError:
temporary_string = str(feed["description"]) temporary_string = str(feed["description"])
temporary_string = html_filter.sub("", temporary_string) temporary_string = html_filter.sub("", temporary_string)
@ -62,7 +61,10 @@ def get_description(feed, length=250, min_length=150, addons=None):
break break
else: else:
length -= 1 length -= 1
desc = temporary_string[:length]
desc = temporary_string[:length]
if addons is not None:
desc = desc + str(addons)
return desc return desc
@ -87,7 +89,7 @@ def setupPaths():
Path(config_dir).mkdir(parents=True, exist_ok=True) Path(config_dir).mkdir(parents=True, exist_ok=True)
except FileExistsError: except FileExistsError:
print( print(
"The config dir {} already exists and is not a directory! Please fix manually.".format( "The config dir {} already exists and is not a directory! Please fix manually. Quitting!".format(
config_dir config_dir
) )
) )
@ -136,11 +138,12 @@ def main():
else: else:
continue continue
if bad_time is True: if bad_time is True:
logger.warning( logger.debug(
"Feed %s doesn't supply a published time, using updated time instead", "Feed %s doesn't supply a published time, using updated time instead",
hook["name"], hook["name"],
) )
# Hash the title and time of the latest post and use that to determine if it's been posted # Hash the title and time of the latest post and use that to determine if it's been posted
# Yes, SHA3-512 is totally unnecessary for this purpose, but I love SHA3
new_hash = hashlib.sha3_512( new_hash = hashlib.sha3_512(
bytes(latest_post["title"] + str(published_time), "utf-8") bytes(latest_post["title"] + str(published_time), "utf-8")
).hexdigest() ).hexdigest()