first commit

This commit is contained in:
2022-06-05 11:25:23 +07:00
commit 1d4dc3deeb
4 changed files with 225 additions and 0 deletions

42
Readarr/delete_files.py Normal file
View File

@ -0,0 +1,42 @@
#!/usr/bin/python3
import sys
import os
book = {}
try:
book = {
"EventType": os.environ.get('readarr_eventtype'),
"AuthorId": os.environ.get('readarr_author_id'),
"AuthorName": os.environ.get('readarr_author_name'),
"AuthorPath": os.environ.get('readarr_author_path'),
"AuthorGrid": os.environ.get('readarr_author_grid'),
"BookId": os.environ.get('readarr_book_id'),
"BookTitle": os.environ.get('readarr_book_title'),
"BookGrid": os.environ.get('readarr_book_grid'),
"BookReleaseDate": os.environ.get('readarr_book_releasedate'),
"DownloadClient": os.environ.get('readarr_download_client'),
"DownloadId": os.environ.get('readarr_download_id'),
"AddedBookPath": os.environ.get('readarr_addedbookpaths'),
"DeletedPath": os.environ.get('readarr_deletedpaths')
}
except:
print("Cannot get env variables")
for key, value in book.items():
with open('/home/rouggy/Scripts/Readarr/log.txt', 'a') as f:
f.write(f"{key}: {value}")
f.write('\n')
f.close()
# if radarrBasePath not in PATH_LIST:
# try:
# os.remove(radarrSourcePath)
# os.rmdir(radarrMovieFolder)
# except:
# pass
# else:
# try:
# os.remove(radarrSourcePath)
# except:
# pass