clean up
This commit is contained in:
parent
ed6f7d7ca8
commit
317b72f178
|
@ -51,6 +51,6 @@ There are also a couple of other things we need to do:
|
|||
|
||||
## RSS feed
|
||||
|
||||
The rss feed is `https://newcardigan.org/category/cardiparties/?feed=cardipartyfeed`.
|
||||
The rss feed is `https://newcardigan.org/category/cardiparties/?feed=featured_image_feed`.
|
||||
|
||||
This special `cardipartyfeed` is a slightly modified RSS2 feed. The only thing it does differently is filter out everything that isn't a cardiparty ,and include the featured image in an `enclosure` so that we can pick it up directly from the feed. See the newcardigan WordPress theme for how this works.
|
||||
This special `featured_image_feed` is a slightly modified RSS2 feed. The only thing it does differently is include the featured image in an `enclosure` so that we can pick it up directly from the feed. See the newcardigan WordPress theme for how this works.
|
|
@ -4,7 +4,7 @@
|
|||
export PATH=/home/cardigan/rss-discord-bot/venv/bin:usr/local/bin:usr/bin:
|
||||
source /home/cardigan/rss-discord-bot/venv/bin/activate
|
||||
export CIVICRM_SETTINGS="/var/www/html/wp-content/uploads/civicrm/civicrm.settings.php"
|
||||
export DISCORD_SERVER="<server_id>"
|
||||
export DISCORD_GUILD="<server_id>"
|
||||
export DISCORD_TOKEN="<token>"
|
||||
export DISCORD_CARDIPARTY_PING="<group_id>"
|
||||
|
||||
|
|
0
latest_post.txt
Normal file
0
latest_post.txt
Normal file
10
webhook.py
10
webhook.py
|
@ -8,12 +8,12 @@ import sys
|
|||
import feedparser
|
||||
import requests
|
||||
|
||||
dc_server = os.getenv("DISCORD_SERVER") # this is actually the instance, not a channel
|
||||
guild = os.getenv("DISCORD_GUILD") # the Discord server/guild id
|
||||
token = os.getenv("DISCORD_TOKEN") # token for this bot
|
||||
cardiparty_ping = os.getenv("DISCORD_CARDIPARTY_PING")
|
||||
|
||||
# get the latest cardiparty with image as enclosure
|
||||
f = feedparser.parse("https://newcardigan.org/category/cardiparties/?feed=cardipartyfeed")
|
||||
f = feedparser.parse("https://newcardigan.org/category/cardiparties/?feed=featured_image_feed")
|
||||
first = f.entries[0]
|
||||
# check whether we have already seen this entry
|
||||
with open("latest_post.txt", "r+") as f:
|
||||
|
@ -48,7 +48,7 @@ if guid != first.guid:
|
|||
}]
|
||||
|
||||
headers = {'user-agent': 'cardiParty-discord-bot/1.0.0'}
|
||||
url = f"https://discord.com/api/webhooks/{dc_server}/{token}"
|
||||
url = f"https://discord.com/api/webhooks/{guild}/{token}"
|
||||
payload = {
|
||||
"thread_name": f"{first.title} | {title}",
|
||||
"content": content,
|
||||
|
@ -57,5 +57,5 @@ if guid != first.guid:
|
|||
}
|
||||
|
||||
r = requests.post(url, json=payload, headers=headers)
|
||||
print(r)
|
||||
r.raise_for_status() # if we got a 4xx response this will log it
|
||||
print(datetime.now().isoformat(' '), r)
|
||||
r.raise_for_status() # if we got a 4xx response
|
||||
|
|
Loading…
Reference in a new issue