Finished description cutoff detection.

Added min_length parameter, as well as an addon parameter that
might be used in the future to add extra text to the description
where needed.

Next up will be checking for media in the entry and adding a
second embed field or attachment so the media can be previewed
or listened to/watched right in the Discord post.
This commit is contained in:
A.M. Rowsell 2025-03-04 16:36:01 -05:00
parent 8129da759f
commit 9a5c4616e3
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9

View file

@ -44,34 +44,25 @@ app_config = {}
# This function gets and formats the brief excerpt that goes in the embed
# Different feeds put summaries in different fields, so we pick the best
# one and limit it to 250 characters.
# TODO: make the character limit smarter, as to split at a natural point
def get_description(feed, length=250):
def get_description(feed, length=250, min_length=150, addons=None):
try:
temporary_string = str(feed["summary_detail"]["value"])
temporary_string = html_filter.sub("", temporary_string)
while length > 150:
while length > min_length:
if temporary_string[length - 1 : length] == " ":
break
else:
length -= 1
desc = (
temporary_string[:length]
if len(temporary_string) > length
else temporary_string
)
desc = temporary_string[:length]
except KeyError:
temporary_string = str(feed["description"])
temporary_string = html_filter.sub("", temporary_string)
while length > 150:
while length > min_length:
if temporary_string[length - 1 : length] == " ":
break
else:
length -= 1
desc = (
temporary_string[:length]
if len(temporary_string) > length
else temporary_string
)
desc = temporary_string[:length]
return desc