This repository has been archived on 2022-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
arr-mastodon/arr-mastodon.py
2022-06-01 19:39:54 +02:00

41 lines
1.0 KiB
Python
Executable File

#!/usr/bin/python3
# https://wiki.servarr.com/en/sonarr/custom-scripts
import os
import configparser
import requests
from bs4 import BeautifulSoup
config = configparser.ConfigParser()
config.read('config.ini')
server_token = config['server']['token']
server_url = config['server']['url']
def toot(mastodon_url: str, body: str, mastodon_token: str):
headers = {}
headers["Authorization"] = f"Bearer {mastodon_token}"
data = {}
data["status"] = body
response = requests.post(
url=f"{mastodon_url}/api/v1/statuses", data=data, headers=headers
)
if os.getenv('sonarr_eventtype') == 'Download':
body = "New content added to Jellyfin: \n"
body += 'Series: ' + os.getenv('sonarr_series_title') + '\n'
body += 'Season: ' + os.getenv('sonarr_episodefile_seasonnumber') + '\n'
body += 'Episode: ' + os.getenv('sonarr_episodefile_episodecount') + '\n'
toot(server_url, body, server_token)
if os.getenv('sonarr_eventtype') == 'Test':
f.write('Sonarr: Test')
toot(server_url, "Test message", server_token)