implemented radarr
This commit is contained in:
parent
3ab9cb6239
commit
636802f934
@ -23,8 +23,15 @@ def toot(mastodon_url: str, body: str, mastodon_token: str):
|
|||||||
url=f"{mastodon_url}/api/v1/statuses", data=data, headers=headers
|
url=f"{mastodon_url}/api/v1/statuses", data=data, headers=headers
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if os.getenv('radarr_eventtype'):
|
||||||
|
if os.getenv('radarr_eventtype') == 'Download':
|
||||||
|
body = "New content added to Jellyfin: \n"
|
||||||
|
body += "Movie: " + os.getenv('radarr_movie_title') + '\n'
|
||||||
|
toot(server_url, body, server_token)
|
||||||
|
|
||||||
if os.getenv('sonarr_eventtype') == 'Download':
|
|
||||||
|
if os.getenv('sonarr_eventtype'):
|
||||||
|
if os.getenv('sonarr_eventtype') == 'Download':
|
||||||
body = "New content added to Jellyfin: \n"
|
body = "New content added to Jellyfin: \n"
|
||||||
body += 'Series: ' + os.getenv('sonarr_series_title') + '\n'
|
body += 'Series: ' + os.getenv('sonarr_series_title') + '\n'
|
||||||
body += 'Season: ' + os.getenv('sonarr_episodefile_seasonnumber') + '\n'
|
body += 'Season: ' + os.getenv('sonarr_episodefile_seasonnumber') + '\n'
|
||||||
|
Reference in New Issue
Block a user