tivohmo 0.2.3 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG +30 -0
- data/Gemfile +2 -0
- data/README.md +4 -6
- data/TODO +1 -0
- data/contrib/tivohmo.conf +2 -2
- data/contrib/tivohmo.plist +1 -1
- data/contrib/tivohmo.yml +60 -0
- data/lib/tivohmo/adapters/filesystem/file_item.rb +2 -3
- data/lib/tivohmo/adapters/plex/category.rb +87 -6
- data/lib/tivohmo/adapters/plex/episode.rb +30 -11
- data/lib/tivohmo/adapters/plex/group.rb +20 -0
- data/lib/tivohmo/adapters/plex/movie.rb +15 -3
- data/lib/tivohmo/adapters/plex/qualified_category.rb +14 -3
- data/lib/tivohmo/adapters/plex/season.rb +2 -2
- data/lib/tivohmo/adapters/plex/section.rb +5 -5
- data/lib/tivohmo/adapters/plex/transcoder.rb +5 -1
- data/lib/tivohmo/adapters/plex.rb +1 -0
- data/lib/tivohmo/adapters/settings/application.rb +37 -0
- data/lib/tivohmo/adapters/settings/display_item.rb +35 -0
- data/lib/tivohmo/adapters/settings/key_container.rb +35 -0
- data/lib/tivohmo/adapters/settings/metadata.rb +26 -0
- data/lib/tivohmo/adapters/settings/reset_defaults_item.rb +39 -0
- data/lib/tivohmo/adapters/settings/set_value_item.rb +38 -0
- data/lib/tivohmo/adapters/settings/transcoder.rb +23 -0
- data/lib/tivohmo/adapters/settings.rb +7 -0
- data/lib/tivohmo/adapters/streamio/transcoder.rb +39 -1
- data/lib/tivohmo/api/container.rb +5 -1
- data/lib/tivohmo/api/item.rb +2 -0
- data/lib/tivohmo/api/subtitle.rb +13 -0
- data/lib/tivohmo/api/transcoder.rb +1 -3
- data/lib/tivohmo/api.rb +1 -0
- data/lib/tivohmo/beacon.rb +3 -3
- data/lib/tivohmo/cli.rb +175 -48
- data/lib/tivohmo/config.rb +157 -0
- data/lib/tivohmo/server/views/_container.builder +1 -1
- data/lib/tivohmo/server.rb +6 -3
- data/lib/tivohmo/version.rb +1 -1
- data/lib/tivohmo.rb +1 -0
- data/spec/adapters/filesystem/file_item_spec.rb +1 -1
- data/spec/adapters/plex/application_spec.rb +10 -1
- data/spec/adapters/plex/category_spec.rb +93 -20
- data/spec/adapters/plex/episode_spec.rb +34 -15
- data/spec/adapters/plex/metadata_spec.rb +5 -7
- data/spec/adapters/plex/movie_spec.rb +10 -7
- data/spec/adapters/plex/qualified_category_spec.rb +17 -17
- data/spec/adapters/plex/season_spec.rb +23 -4
- data/spec/adapters/plex/section_spec.rb +4 -4
- data/spec/adapters/plex/show_spec.rb +19 -4
- data/spec/adapters/plex/transcoder_spec.rb +2 -8
- data/spec/adapters/settings/application_spec.rb +25 -0
- data/spec/adapters/settings/display_item_spec.rb +29 -0
- data/spec/adapters/settings/key_container_spec.rb +33 -0
- data/spec/adapters/settings/metadata_spec.rb +33 -0
- data/spec/adapters/settings/reset_defaults_item_spec.rb +54 -0
- data/spec/adapters/settings/set_value_item_spec.rb +54 -0
- data/spec/api/container_spec.rb +12 -0
- data/spec/api/item_spec.rb +2 -0
- data/spec/api/transcoder_spec.rb +0 -1
- data/spec/beacon_spec.rb +3 -1
- data/spec/cli_spec.rb +57 -19
- data/spec/config_spec.rb +224 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Application/_children/should_get_children.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_allow_disabling_subtitles.yml +424 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_display_non-zero_child_count_once_children_fetched.yml +653 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_have_children.yml +599 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_have_children_with_embedded_subtitles.yml +595 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_have_children_with_subtitles.yml +482 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_memoize.yml +478 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_refresh_children_when_config_changes.yml +1245 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_children/should_use_category_value_for_children.yml +395 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_initialize/should_instantiate.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_initialize/should_set_presorted_if_present.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Category/_initialize/should_use_category_value_for_title_if_present.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Episode/_initialize/should_instantiate.yml +444 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Episode/_metadata/should_allow_disabling_series_id_in_metadata.yml +444 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Episode/_metadata/should_populate_metadata.yml +579 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Metadata/_initialize/should_instantiate.yml +296 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Movie/_initialize/should_instantiate.yml +296 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Movie/_metadata/should_populate_metadata.yml +296 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_QualifiedCategory/_children/should_display_non-zero_child_count_once_children_fetched.yml +220 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_QualifiedCategory/_children/should_have_children.yml +393 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_QualifiedCategory/_children/should_memoize.yml +219 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_QualifiedCategory/_initialize/should_instantiate.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Season/_children/should_have_children.yml +444 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Season/_children/should_memoize.yml +444 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Season/_initialize/should_instantiate.yml +250 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Section/_children/should_have_category_children.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Section/_children/should_memoize.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Section/_initialize/should_instantiate.yml +61 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Show/_children/should_have_children.yml +250 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Show/_children/should_memoize.yml +250 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Show/_initialize/should_instantiate.yml +166 -0
- data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_Transcoder/_initialize/should_instantiate.yml +296 -0
- data/spec/server_spec.rb +31 -2
- data/spec/spec_helper.rb +24 -36
- data/tivohmo.gemspec +2 -2
- metadata +109 -3
data/spec/fixtures/vcr/TivoHMO_Adapters_Plex_QualifiedCategory/_children/should_have_children.yml
ADDED
@@ -0,0 +1,393 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://localhost:32400/library/sections
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept-Encoding:
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- text/xml;charset=utf-8
|
23
|
+
Connection:
|
24
|
+
- close
|
25
|
+
X-Plex-Protocol:
|
26
|
+
- '1.0'
|
27
|
+
X-Plex-Content-Original-Length:
|
28
|
+
- '2991'
|
29
|
+
X-Plex-Content-Compressed-Length:
|
30
|
+
- '805'
|
31
|
+
Content-Length:
|
32
|
+
- '805'
|
33
|
+
Cache-Control:
|
34
|
+
- no-cache
|
35
|
+
body:
|
36
|
+
encoding: UTF-8
|
37
|
+
string: |
|
38
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
39
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
40
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
41
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
42
|
+
</Directory>
|
43
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
44
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
45
|
+
</Directory>
|
46
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
47
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
48
|
+
</Directory>
|
49
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
50
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
51
|
+
</Directory>
|
52
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
53
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
54
|
+
</Directory>
|
55
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
56
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
57
|
+
</Directory>
|
58
|
+
</MediaContainer>
|
59
|
+
http_version:
|
60
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
61
|
+
- request:
|
62
|
+
method: get
|
63
|
+
uri: http://localhost:32400/library/sections
|
64
|
+
body:
|
65
|
+
encoding: US-ASCII
|
66
|
+
string: ''
|
67
|
+
headers:
|
68
|
+
Accept-Encoding:
|
69
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
70
|
+
Accept:
|
71
|
+
- "*/*"
|
72
|
+
User-Agent:
|
73
|
+
- Ruby
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 200
|
77
|
+
message: OK
|
78
|
+
headers:
|
79
|
+
Content-Type:
|
80
|
+
- text/xml;charset=utf-8
|
81
|
+
Connection:
|
82
|
+
- close
|
83
|
+
X-Plex-Protocol:
|
84
|
+
- '1.0'
|
85
|
+
X-Plex-Content-Original-Length:
|
86
|
+
- '2991'
|
87
|
+
X-Plex-Content-Compressed-Length:
|
88
|
+
- '805'
|
89
|
+
Content-Length:
|
90
|
+
- '805'
|
91
|
+
Cache-Control:
|
92
|
+
- no-cache
|
93
|
+
body:
|
94
|
+
encoding: UTF-8
|
95
|
+
string: |
|
96
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
97
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
98
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
99
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
100
|
+
</Directory>
|
101
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
102
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
103
|
+
</Directory>
|
104
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
105
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
106
|
+
</Directory>
|
107
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
108
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
109
|
+
</Directory>
|
110
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
111
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
112
|
+
</Directory>
|
113
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
114
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
115
|
+
</Directory>
|
116
|
+
</MediaContainer>
|
117
|
+
http_version:
|
118
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
119
|
+
- request:
|
120
|
+
method: get
|
121
|
+
uri: http://localhost:32400/library/sections/6/year
|
122
|
+
body:
|
123
|
+
encoding: US-ASCII
|
124
|
+
string: ''
|
125
|
+
headers:
|
126
|
+
Accept-Encoding:
|
127
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
128
|
+
Accept:
|
129
|
+
- "*/*"
|
130
|
+
User-Agent:
|
131
|
+
- Ruby
|
132
|
+
response:
|
133
|
+
status:
|
134
|
+
code: 200
|
135
|
+
message: OK
|
136
|
+
headers:
|
137
|
+
Content-Type:
|
138
|
+
- text/xml;charset=utf-8
|
139
|
+
Connection:
|
140
|
+
- close
|
141
|
+
X-Plex-Protocol:
|
142
|
+
- '1.0'
|
143
|
+
X-Plex-Content-Original-Length:
|
144
|
+
- '452'
|
145
|
+
X-Plex-Content-Compressed-Length:
|
146
|
+
- '303'
|
147
|
+
Content-Length:
|
148
|
+
- '303'
|
149
|
+
Cache-Control:
|
150
|
+
- no-cache
|
151
|
+
body:
|
152
|
+
encoding: UTF-8
|
153
|
+
string: |
|
154
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
155
|
+
<MediaContainer size="2" allowSync="0" art="/:/resources/movie-fanart.jpg" content="secondary" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" thumb="/:/resources/movie.png" title1="Test Movies" title2="By Year" viewGroup="secondary" viewMode="65592">
|
156
|
+
<Directory key="2015" title="2015" />
|
157
|
+
<Directory key="2009" title="2009" />
|
158
|
+
</MediaContainer>
|
159
|
+
http_version:
|
160
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
161
|
+
- request:
|
162
|
+
method: get
|
163
|
+
uri: http://localhost:32400/library/sections
|
164
|
+
body:
|
165
|
+
encoding: US-ASCII
|
166
|
+
string: ''
|
167
|
+
headers:
|
168
|
+
Accept-Encoding:
|
169
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
170
|
+
Accept:
|
171
|
+
- "*/*"
|
172
|
+
User-Agent:
|
173
|
+
- Ruby
|
174
|
+
response:
|
175
|
+
status:
|
176
|
+
code: 200
|
177
|
+
message: OK
|
178
|
+
headers:
|
179
|
+
Content-Type:
|
180
|
+
- text/xml;charset=utf-8
|
181
|
+
Connection:
|
182
|
+
- close
|
183
|
+
X-Plex-Protocol:
|
184
|
+
- '1.0'
|
185
|
+
X-Plex-Content-Original-Length:
|
186
|
+
- '2991'
|
187
|
+
X-Plex-Content-Compressed-Length:
|
188
|
+
- '805'
|
189
|
+
Content-Length:
|
190
|
+
- '805'
|
191
|
+
Cache-Control:
|
192
|
+
- no-cache
|
193
|
+
body:
|
194
|
+
encoding: UTF-8
|
195
|
+
string: |
|
196
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
197
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
198
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
199
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
200
|
+
</Directory>
|
201
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
202
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
203
|
+
</Directory>
|
204
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
205
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
206
|
+
</Directory>
|
207
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
208
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
209
|
+
</Directory>
|
210
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
211
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
212
|
+
</Directory>
|
213
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
214
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
215
|
+
</Directory>
|
216
|
+
</MediaContainer>
|
217
|
+
http_version:
|
218
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
219
|
+
- request:
|
220
|
+
method: get
|
221
|
+
uri: http://localhost:32400/library/sections
|
222
|
+
body:
|
223
|
+
encoding: US-ASCII
|
224
|
+
string: ''
|
225
|
+
headers:
|
226
|
+
Accept-Encoding:
|
227
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
228
|
+
Accept:
|
229
|
+
- "*/*"
|
230
|
+
User-Agent:
|
231
|
+
- Ruby
|
232
|
+
response:
|
233
|
+
status:
|
234
|
+
code: 200
|
235
|
+
message: OK
|
236
|
+
headers:
|
237
|
+
Content-Type:
|
238
|
+
- text/xml;charset=utf-8
|
239
|
+
Connection:
|
240
|
+
- close
|
241
|
+
X-Plex-Protocol:
|
242
|
+
- '1.0'
|
243
|
+
X-Plex-Content-Original-Length:
|
244
|
+
- '2991'
|
245
|
+
X-Plex-Content-Compressed-Length:
|
246
|
+
- '805'
|
247
|
+
Content-Length:
|
248
|
+
- '805'
|
249
|
+
Cache-Control:
|
250
|
+
- no-cache
|
251
|
+
body:
|
252
|
+
encoding: UTF-8
|
253
|
+
string: |
|
254
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
255
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
256
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
257
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
258
|
+
</Directory>
|
259
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
260
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
261
|
+
</Directory>
|
262
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
263
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
264
|
+
</Directory>
|
265
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
266
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
267
|
+
</Directory>
|
268
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
269
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
270
|
+
</Directory>
|
271
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
272
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
273
|
+
</Directory>
|
274
|
+
</MediaContainer>
|
275
|
+
http_version:
|
276
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
277
|
+
- request:
|
278
|
+
method: get
|
279
|
+
uri: http://localhost:32400/library/sections
|
280
|
+
body:
|
281
|
+
encoding: US-ASCII
|
282
|
+
string: ''
|
283
|
+
headers:
|
284
|
+
Accept-Encoding:
|
285
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
286
|
+
Accept:
|
287
|
+
- "*/*"
|
288
|
+
User-Agent:
|
289
|
+
- Ruby
|
290
|
+
response:
|
291
|
+
status:
|
292
|
+
code: 200
|
293
|
+
message: OK
|
294
|
+
headers:
|
295
|
+
Content-Type:
|
296
|
+
- text/xml;charset=utf-8
|
297
|
+
Connection:
|
298
|
+
- close
|
299
|
+
X-Plex-Protocol:
|
300
|
+
- '1.0'
|
301
|
+
X-Plex-Content-Original-Length:
|
302
|
+
- '2991'
|
303
|
+
X-Plex-Content-Compressed-Length:
|
304
|
+
- '805'
|
305
|
+
Content-Length:
|
306
|
+
- '805'
|
307
|
+
Cache-Control:
|
308
|
+
- no-cache
|
309
|
+
body:
|
310
|
+
encoding: UTF-8
|
311
|
+
string: |
|
312
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
313
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
314
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
315
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
316
|
+
</Directory>
|
317
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
318
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
319
|
+
</Directory>
|
320
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
321
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
322
|
+
</Directory>
|
323
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
324
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
325
|
+
</Directory>
|
326
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
327
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
328
|
+
</Directory>
|
329
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
330
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
331
|
+
</Directory>
|
332
|
+
</MediaContainer>
|
333
|
+
http_version:
|
334
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
335
|
+
- request:
|
336
|
+
method: get
|
337
|
+
uri: http://localhost:32400/library/sections
|
338
|
+
body:
|
339
|
+
encoding: US-ASCII
|
340
|
+
string: ''
|
341
|
+
headers:
|
342
|
+
Accept-Encoding:
|
343
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
344
|
+
Accept:
|
345
|
+
- "*/*"
|
346
|
+
User-Agent:
|
347
|
+
- Ruby
|
348
|
+
response:
|
349
|
+
status:
|
350
|
+
code: 200
|
351
|
+
message: OK
|
352
|
+
headers:
|
353
|
+
Content-Type:
|
354
|
+
- text/xml;charset=utf-8
|
355
|
+
Connection:
|
356
|
+
- close
|
357
|
+
X-Plex-Protocol:
|
358
|
+
- '1.0'
|
359
|
+
X-Plex-Content-Original-Length:
|
360
|
+
- '2991'
|
361
|
+
X-Plex-Content-Compressed-Length:
|
362
|
+
- '805'
|
363
|
+
Content-Length:
|
364
|
+
- '805'
|
365
|
+
Cache-Control:
|
366
|
+
- no-cache
|
367
|
+
body:
|
368
|
+
encoding: UTF-8
|
369
|
+
string: |
|
370
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
371
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
372
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
373
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
374
|
+
</Directory>
|
375
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
376
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
377
|
+
</Directory>
|
378
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
379
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
380
|
+
</Directory>
|
381
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
382
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
383
|
+
</Directory>
|
384
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
385
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
386
|
+
</Directory>
|
387
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
388
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
389
|
+
</Directory>
|
390
|
+
</MediaContainer>
|
391
|
+
http_version:
|
392
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
393
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,219 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://localhost:32400/library/sections
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept-Encoding:
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- text/xml;charset=utf-8
|
23
|
+
Connection:
|
24
|
+
- close
|
25
|
+
X-Plex-Protocol:
|
26
|
+
- '1.0'
|
27
|
+
X-Plex-Content-Original-Length:
|
28
|
+
- '2991'
|
29
|
+
X-Plex-Content-Compressed-Length:
|
30
|
+
- '805'
|
31
|
+
Content-Length:
|
32
|
+
- '805'
|
33
|
+
Cache-Control:
|
34
|
+
- no-cache
|
35
|
+
body:
|
36
|
+
encoding: UTF-8
|
37
|
+
string: |
|
38
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
39
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
40
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
41
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
42
|
+
</Directory>
|
43
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
44
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
45
|
+
</Directory>
|
46
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
47
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
48
|
+
</Directory>
|
49
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
50
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
51
|
+
</Directory>
|
52
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
53
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
54
|
+
</Directory>
|
55
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
56
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
57
|
+
</Directory>
|
58
|
+
</MediaContainer>
|
59
|
+
http_version:
|
60
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
61
|
+
- request:
|
62
|
+
method: get
|
63
|
+
uri: http://localhost:32400/library/sections
|
64
|
+
body:
|
65
|
+
encoding: US-ASCII
|
66
|
+
string: ''
|
67
|
+
headers:
|
68
|
+
Accept-Encoding:
|
69
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
70
|
+
Accept:
|
71
|
+
- "*/*"
|
72
|
+
User-Agent:
|
73
|
+
- Ruby
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 200
|
77
|
+
message: OK
|
78
|
+
headers:
|
79
|
+
Content-Type:
|
80
|
+
- text/xml;charset=utf-8
|
81
|
+
Connection:
|
82
|
+
- close
|
83
|
+
X-Plex-Protocol:
|
84
|
+
- '1.0'
|
85
|
+
X-Plex-Content-Original-Length:
|
86
|
+
- '2991'
|
87
|
+
X-Plex-Content-Compressed-Length:
|
88
|
+
- '805'
|
89
|
+
Content-Length:
|
90
|
+
- '805'
|
91
|
+
Cache-Control:
|
92
|
+
- no-cache
|
93
|
+
body:
|
94
|
+
encoding: UTF-8
|
95
|
+
string: |
|
96
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
97
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
98
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
99
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
100
|
+
</Directory>
|
101
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
102
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
103
|
+
</Directory>
|
104
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
105
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
106
|
+
</Directory>
|
107
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
108
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
109
|
+
</Directory>
|
110
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
111
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
112
|
+
</Directory>
|
113
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
114
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
115
|
+
</Directory>
|
116
|
+
</MediaContainer>
|
117
|
+
http_version:
|
118
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
119
|
+
- request:
|
120
|
+
method: get
|
121
|
+
uri: http://localhost:32400/library/sections/6/year
|
122
|
+
body:
|
123
|
+
encoding: US-ASCII
|
124
|
+
string: ''
|
125
|
+
headers:
|
126
|
+
Accept-Encoding:
|
127
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
128
|
+
Accept:
|
129
|
+
- "*/*"
|
130
|
+
User-Agent:
|
131
|
+
- Ruby
|
132
|
+
response:
|
133
|
+
status:
|
134
|
+
code: 200
|
135
|
+
message: OK
|
136
|
+
headers:
|
137
|
+
Content-Type:
|
138
|
+
- text/xml;charset=utf-8
|
139
|
+
Connection:
|
140
|
+
- close
|
141
|
+
X-Plex-Protocol:
|
142
|
+
- '1.0'
|
143
|
+
X-Plex-Content-Original-Length:
|
144
|
+
- '452'
|
145
|
+
X-Plex-Content-Compressed-Length:
|
146
|
+
- '303'
|
147
|
+
Content-Length:
|
148
|
+
- '303'
|
149
|
+
Cache-Control:
|
150
|
+
- no-cache
|
151
|
+
body:
|
152
|
+
encoding: UTF-8
|
153
|
+
string: |
|
154
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
155
|
+
<MediaContainer size="2" allowSync="0" art="/:/resources/movie-fanart.jpg" content="secondary" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" thumb="/:/resources/movie.png" title1="Test Movies" title2="By Year" viewGroup="secondary" viewMode="65592">
|
156
|
+
<Directory key="2015" title="2015" />
|
157
|
+
<Directory key="2009" title="2009" />
|
158
|
+
</MediaContainer>
|
159
|
+
http_version:
|
160
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
161
|
+
- request:
|
162
|
+
method: get
|
163
|
+
uri: http://localhost:32400/library/sections
|
164
|
+
body:
|
165
|
+
encoding: US-ASCII
|
166
|
+
string: ''
|
167
|
+
headers:
|
168
|
+
Accept-Encoding:
|
169
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
170
|
+
Accept:
|
171
|
+
- "*/*"
|
172
|
+
User-Agent:
|
173
|
+
- Ruby
|
174
|
+
response:
|
175
|
+
status:
|
176
|
+
code: 200
|
177
|
+
message: OK
|
178
|
+
headers:
|
179
|
+
Content-Type:
|
180
|
+
- text/xml;charset=utf-8
|
181
|
+
Connection:
|
182
|
+
- close
|
183
|
+
X-Plex-Protocol:
|
184
|
+
- '1.0'
|
185
|
+
X-Plex-Content-Original-Length:
|
186
|
+
- '2991'
|
187
|
+
X-Plex-Content-Compressed-Length:
|
188
|
+
- '805'
|
189
|
+
Content-Length:
|
190
|
+
- '805'
|
191
|
+
Cache-Control:
|
192
|
+
- no-cache
|
193
|
+
body:
|
194
|
+
encoding: UTF-8
|
195
|
+
string: |
|
196
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
197
|
+
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1420767545" title1="Plex Library">
|
198
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Adult Movies" composite="/library/sections/1/composite/1423777283" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="9113e43dc6c547eede809f9439c8e80498b4a610" updatedAt="1423777283" createdAt="1332713366">
|
199
|
+
<Location id="4" path="/Users/mconway/Movies/Adult Movies" />
|
200
|
+
</Directory>
|
201
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="Adult TV Shows" composite="/library/sections/2/composite/1423932892" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="af8295a272d545681d462eed8025113d09195007" updatedAt="1423932892" createdAt="1332713366">
|
202
|
+
<Location id="6" path="/Users/mconway/Movies/Adult TV Shows" />
|
203
|
+
</Directory>
|
204
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Kid Movies" composite="/library/sections/5/composite/1423777310" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="340479de-6015-4e6c-9ec0-c74f936f4013" updatedAt="1423777310" createdAt="1411071543">
|
205
|
+
<Location id="9" path="/Users/mconway/Movies/Kid Movies" />
|
206
|
+
</Directory>
|
207
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="4" type="show" title="Kid TV Shows" composite="/library/sections/4/composite/1423777311" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="fa1dde48-f6dd-44f7-91f3-9283160dc953" updatedAt="1423777311" createdAt="1411071497">
|
208
|
+
<Location id="8" path="/Users/mconway/Movies/Kid TV Shows" />
|
209
|
+
</Directory>
|
210
|
+
<Directory allowSync="0" art="/:/resources/movie-fanart.jpg" filters="1" refreshing="1" thumb="/:/resources/movie.png" key="6" type="movie" title="Test Movies" composite="/library/sections/6/composite/1423936036" agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en" uuid="fbc810b7-6b51-40ba-a3c5-9a2c391e5a3d" updatedAt="1423936036" createdAt="1423935251">
|
211
|
+
<Location id="10" path="/Users/mconway/Movies/TivoHMOTest/Movies" />
|
212
|
+
</Directory>
|
213
|
+
<Directory allowSync="0" art="/:/resources/show-fanart.jpg" filters="1" refreshing="0" thumb="/:/resources/show.png" key="7" type="show" title="Test TV Shows" composite="/library/sections/7/composite/1423935290" agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en" uuid="4c37cd05-86d7-4a34-8d5b-aa2fb261a136" updatedAt="1423935290" createdAt="1423935290">
|
214
|
+
<Location id="11" path="/Users/mconway/Movies/TivoHMOTest/TV Shows" />
|
215
|
+
</Directory>
|
216
|
+
</MediaContainer>
|
217
|
+
http_version:
|
218
|
+
recorded_at: Sat, 14 Feb 2015 17:47:36 GMT
|
219
|
+
recorded_with: VCR 2.9.3
|