Compare commits
2 commits
38e78bcdf4
...
bd2af92ec9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bd2af92ec9 |
||
|
|
e6c43876ac |
1 changed files with 20 additions and 14 deletions
34
discorss.py
34
discorss.py
|
|
@ -23,9 +23,11 @@ log_file_name = r"/app.log"
|
||||||
|
|
||||||
def getDescription(feed):
|
def getDescription(feed):
|
||||||
try:
|
try:
|
||||||
desc = str(feed.entries[0]["summary_detail"]["value"])
|
tempStr = str(feed.entries[0]["summary_detail"]["value"])
|
||||||
|
desc = tempStr[:100] if len(tempStr) > 100 else tempStr
|
||||||
except KeyError:
|
except KeyError:
|
||||||
desc = str(feed.entries[0]["description"])
|
tempStr = str(feed.entries[0]["description"])
|
||||||
|
desc = tempStr[:100] if len(tempStr) > 100 else tempStr
|
||||||
return desc
|
return desc
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -52,29 +54,33 @@ def main():
|
||||||
print(feed.entries[0]["published"], published_time, now)
|
print(feed.entries[0]["published"], published_time, now)
|
||||||
# Generate the webhook
|
# Generate the webhook
|
||||||
webhook = {
|
webhook = {
|
||||||
|
"content": "RSS Feed Update from " + str(hook["name"]),
|
||||||
"embeds": [
|
"embeds": [
|
||||||
{
|
{
|
||||||
"title": str(feed.entries[0]["title"]),
|
"title": str(feed.entries[0]["title"]),
|
||||||
"url": str(feed.entries[0]["link"]),
|
"url": str(feed.entries[0]["link"]),
|
||||||
"description": getDescription(feed),
|
"color": 5814783,
|
||||||
"provider": "DiscoRSS",
|
"fields": [
|
||||||
|
{
|
||||||
|
"name": str(feed.entries[0]["title"]),
|
||||||
|
"value": getDescription(feed),
|
||||||
|
}
|
||||||
|
],
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"attachments": [],
|
||||||
}
|
}
|
||||||
customHeader = {
|
customHeader = {
|
||||||
"user-agent": "DiscoRSS (https://git.frzn.dev/amr/discorss, 0.1)",
|
"user-agent": "DiscoRSS (https://git.frzn.dev/amr/discorss, 0.1)",
|
||||||
"content-type": "application/json",
|
"content-type": "application/json",
|
||||||
}
|
}
|
||||||
|
webhookStr = json.dumps(webhook)
|
||||||
|
print(webhookStr)
|
||||||
if published_time > last_check and published_time < now:
|
if published_time > last_check and published_time < now:
|
||||||
print(json.dumps(webhook))
|
r = requests.post(hook["webhook"], data=webhookStr, headers=customHeader)
|
||||||
r = requests.post(
|
app_config["lastupdate"] = now
|
||||||
hook["webhook"], data=json.dumps(webhook), headers=customHeader
|
with open(config_file_path, "w") as config_file:
|
||||||
)
|
json.dump(app_config, config_file, indent=4)
|
||||||
print(webhook["embeds"][0]["title"])
|
|
||||||
print(r.text, r.status_code, r.json())
|
|
||||||
app_config["lastupdate"] = now
|
|
||||||
with open(config_file_path, "w") as config_file:
|
|
||||||
json.dump(app_config, config_file, indent=4)
|
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue