-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_matches_to_collection.py
executable file
·102 lines (101 loc) · 3.7 KB
/
add_matches_to_collection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python3
#
# import modules
#
import configparser
import sys
import os
import time
from pprint import pprint
from plexapi.server import PlexServer
#
# Sanity check CLI arguments and assign them to readable variable names
#
if len(sys.argv) != 3:
print(f"Usage: {os.path.basename(__file__)} <collection name> <pattern match>")
sys.exit(1)
pattern = sys.argv[2]
collectionName = sys.argv[1]
indieContent = bool(collectionName == "02: Independent Content")
soloContent = bool(collectionName == '01: Category: Solo')
print(f"Pattern: '{pattern}'")
#print(f"Collection: {collectionName}")
#
# Color support
#
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
#
# set default variables
#
config = configparser.ConfigParser()
config.read(os.getenv('HOME')+'/.plexconfig.ini')
plexHost = config['default']['plexHost']
plexPort = config['default']['plexPort']
plexSection = config['default']['plexSection']
plexToken = config['default']['plexToken']
plexSectionName = config['default']['plexSectionName']
baseurl = f"http://{plexHost}:{plexPort}"
sleepInterval = 10
#
# Connect to server
#
plex = PlexServer(baseurl, plexToken)
#
# Select section
#
plexSection = plex.library.section(plexSectionName)
thisCollection = plexSection.collection(collectionName)
if str(thisCollection.title).lower() == collectionName.lower():
print(f"{bcolors.OKGREEN}Collection '{thisCollection.title}' found.{bcolors.ENDC}")
print('')
else:
print(f"{bcolors.FAIL}Collection '{collectionName}' not found!{bcolors.ENDC}")
sys.exit(1)
matchesFound = 0
collectionsAdded = 0
for video in plexSection.all():
#print(f"Checking video '{video.title}' for pattern '{pattern}'...")
skipSceneContent = False
if (indieContent or soloContent) and " (Scene #" in video.title and pattern.lower() in video.title.lower():
skipSceneContent = True
print(f"{bcolors.OKCYAN}Skipping scene content match '{video.title}'{bcolors.ENDC}")
if not skipSceneContent and pattern.lower() in video.title.lower():
# ensure data is up to date
video.reload()
matchesFound += 1
foundCollection = False
skipSoloContent = False
if video.collections:
for collection in video.collections:
if str(collection).lower() == collectionName.lower():
foundCollection = True
elif soloContent and str(collection) == '01: Category: Non-Sexual'.lower():
skipSoloContent = True
if skipSoloContent:
print(f"{bcolors.WARNING}Skipping non-sexual solo content '{video.title}'{bcolors.ENDC}")
elif not foundCollection:
print(f"{bcolors.WARNING}'{video.title}' needs to be added to '{thisCollection.title}'{bcolors.ENDC}")
thisCollection.addItems(video)
collectionsAdded += 1
print(f"{bcolors.OKGREEN}'{video.title}' has been added to {thisCollection.title}{bcolors.ENDC}")
# print(f"{bcolors.OKGREEN}'{video.title}' has been added to {thisCollection.title} (sleeping for {sleepInterval}s...){bcolors.ENDC}")
# time.sleep(sleepInterval) # introduce a delay to avoid hammering the server
else:
print(f"{bcolors.OKCYAN}'{video.title}' is already part of '{thisCollection.title}'{bcolors.ENDC}")
if matchesFound == 0:
print('')
print(f"{bcolors.FAIL}No matches found for pattern '{pattern}'!{bcolors.ENDC}")
print('')
else:
print('')
print(f"{bcolors.OKCYAN}{matchesFound} matches found, {collectionsAdded} collections added.{bcolors.ENDC}")
print('')