-
Notifications
You must be signed in to change notification settings - Fork 626
/
ATVSettings.py
executable file
·209 lines (174 loc) · 7.68 KB
/
ATVSettings.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/env python
import sys
from os import sep, makedirs
from os.path import isdir
import ConfigParser
import fnmatch
from Debug import * # dprint()
options = { \
'playlistsview' :('List', 'Tabbed List', 'Hide'), \
'libraryview' :('List', 'Grid', 'Bookcase', 'Hide'), \
'sharedlibrariesview' :('List', 'Grid', 'Bookcase', 'Hide'), \
'channelview' :('Hide', 'List', 'Tabbed List', 'Grid', 'Bookcase'), \
'sharedchannelsview' :('Hide', 'List', 'Tabbed List', 'Grid', 'Bookcase'), \
'globalsearch' :('Show', 'Hide'), \
'movieview' :('Grid', 'List', 'Detailed List'), \
'homevideoview' :('Grid', 'List', 'Detailed List'), \
'actorview' :('Movies', 'Portrait'), \
'showview' :('List', 'Detailed List', 'Grid', 'Bookcase'), \
'flattenseason' :('False', 'True'), \
'seasonview' :('List', 'Coverflow'), \
'durationformat' :('Hours/Minutes', 'Minutes'), \
'postertitles' :('Highlighted Only', 'Show All'), \
'fanart' :('Hide', 'Show'), \
'fanart_blur' :('0', '5', '10', '15', '20'), \
'allowdeletion' :('No', 'Yes'), \
'moviepreplay_bottomshelf' :('Extras', 'Related Movies'), \
'movies_navbar_ondeck' :('checked', 'unchecked'), \
'movies_navbar_unwatched' :('checked', 'unchecked'), \
'movies_navbar_byfolder' :('checked', 'unchecked'), \
'movies_navbar_collections' :('checked', 'unchecked'), \
'movies_navbar_genres' :('checked', 'unchecked'), \
'movies_navbar_decades' :('checked', 'unchecked'), \
'movies_navbar_directors' :('checked', 'unchecked'), \
'movies_navbar_actors' :('checked', 'unchecked'), \
'movies_navbar_more' :('checked', 'unchecked'), \
'homevideos_navbar_ondeck' :('checked', 'unchecked'), \
'homevideos_navbar_unwatched' :('checked', 'unchecked'), \
'homevideos_navbar_byfolder' :('checked', 'unchecked'), \
'homevideos_navbar_collections' :('checked', 'unchecked'), \
'homevideos_navbar_genres' :('checked', 'unchecked'), \
'music_navbar_recentlyadded' :('checked', 'unchecked'), \
'music_navbar_genre' :('checked', 'unchecked'), \
'music_navbar_decade' :('checked', 'unchecked'), \
'music_navbar_year' :('checked', 'unchecked'), \
'music_navbar_more' :('checked', 'unchecked'), \
'tv_navbar_ondeck' :('checked', 'unchecked'), \
'tv_navbar_unwatched' :('checked', 'unchecked'), \
'tv_navbar_genres' :('checked', 'unchecked'), \
'tv_navbar_more' :('checked', 'unchecked'), \
'transcodequality' :('1080p 12.0Mbps', \
'1080p 20.0Mbps', \
'1080p 40.0Mbps', \
'480p 2.0Mbps', \
'720p 3.0Mbps', '720p 4.0Mbps', \
'1080p 8.0Mbps', '1080p 10.0Mbps'), \
'transcoderaction' :('Auto', 'DirectPlay', 'Transcode'), \
'remotebitrate' :('720p 3.0Mbps', '720p 4.0Mbps', \
'1080p 8.0Mbps', '1080p 10.0Mbps', '1080p 12.0Mbps', '1080p 20.0Mbps', '1080p 40.0Mbps', \
'480p 2.0Mbps'), \
'dolbydigital' :('Off', 'On'), \
'phototranscoderaction' :('Auto', 'Transcode'), \
'subtitlerenderer' :('Auto', 'iOS, PMS', 'PMS'), \
'subtitlesize' :('100', '125', '150', '50', '75'), \
'audioboost' :('100', '175', '225', '300'), \
'showunwatched' :('True', 'False'), \
'showsynopsis' :('Hide', 'Show'), \
'showplayerclock' :('True', 'False'), \
'overscanadjust' :('0', '1', '2', '3', '-3', '-2', '-1'), \
'clockposition' :('Center', 'Right', 'Left'), \
'showendtime' :('True', 'False'), \
'timeformat' :('24 Hour', '12 Hour'), \
'myplex_user' :('', ), \
'myplex_auth' :('', ), \
'plexhome_enable' :('False', 'True'), \
'plexhome_user' :('', ), \
'plexhome_auth' :('', ), \
}
class CATVSettings():
def __init__(self, path):
dprint(__name__, 1, "init class CATVSettings")
self.cfg = None
self.path = path
self.loadSettings()
# load/save config
def loadSettings(self):
dprint(__name__, 1, "load settings")
# options -> default
dflt = {}
for opt in options:
dflt[opt] = options[opt][0]
# load settings
self.cfg = ConfigParser.SafeConfigParser(dflt)
self.cfg.read(self.getSettingsFile())
def saveSettings(self):
dprint(__name__, 1, "save settings")
f = open(self.getSettingsFile(), 'wb')
self.cfg.write(f)
f.close()
def getSettingsFile(self):
if self.path.startswith('.'):
# relative to current path
directory = sys.path[0] + sep + self.path
else:
# absolute path
directory = self.path
if not isdir(directory):
makedirs(directory)
return directory + sep + "ATVSettings.cfg"
def checkSection(self, UDID):
# check for existing UDID section
sections = self.cfg.sections()
if not UDID in sections:
self.cfg.add_section(UDID)
dprint(__name__, 0, "add section {0}", UDID)
# access/modify AppleTV options
def getSetting(self, UDID, option):
self.checkSection(UDID)
dprint(__name__, 1, "getsetting {0}", self.cfg.get(UDID, option))
return self.cfg.get(UDID, option)
def setSetting(self, UDID, option, val):
self.checkSection(UDID)
self.cfg.set(UDID, option, val)
def checkSetting(self, UDID, option):
self.checkSection(UDID)
val = self.cfg.get(UDID, option)
opts = options[option]
# check val in list
found = False
for opt in opts:
if fnmatch.fnmatch(val, opt):
found = True
# if not found, correct to default
if not found:
self.cfg.set(UDID, option, opts[0])
dprint(__name__, 1, "checksetting: default {0} to {1}", option, opts[0])
def toggleSetting(self, UDID, option):
self.checkSection(UDID)
cur = self.cfg.get(UDID, option)
opts = options[option]
# find current in list
i=0
for i,opt in enumerate(opts):
if opt==cur:
break
# get next option (circle to first)
i=i+1
if i>=len(opts):
i=0
# set
self.cfg.set(UDID, option, opts[i])
def setOptions(self, option, opts):
global options
if option in options:
options[option] = opts
dprint(__name__, 1, 'setOption: update {0} to {1}', option, opts)
if __name__=="__main__":
ATVSettings = CATVSettings()
UDID = '007'
ATVSettings.checkSection(UDID)
option = 'transcodequality'
print ATVSettings.getSetting(UDID, option)
print "setSetting"
ATVSettings.setSetting(UDID, option, 'True') # error - pick default
print ATVSettings.getSetting(UDID, option)
ATVSettings.setSetting(UDID, option, '9')
print ATVSettings.getSetting(UDID, option)
print "toggleSetting"
ATVSettings.toggleSetting(UDID, option)
print ATVSettings.getSetting(UDID, option)
ATVSettings.toggleSetting(UDID, option)
print ATVSettings.getSetting(UDID, option)
ATVSettings.toggleSetting(UDID, option)
print ATVSettings.getSetting(UDID, option)
del ATVSettings