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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
|
var plexUrl;
var plexToken;
var libraryNumber = ""; // The Library ID that was clicked
var showId = ""; // Stores the Id for the most recently clicked series
var seasonsList = []; // Stores the Ids for all seasons of the most recently clicked series
var seasonId = ""; // Store the Id of the most recently clicked season
var episodeId = ""; // Stores the Id of the most recently clicked episode
$(document).ready(() => {
// Validation values to enable the Connect to Plex Button
let validUrl = false;
let validToken = false;
// Validation listeners on the Plex URL Input
$('#plexUrl').on("input", () => {
if ($('#plexUrl').val() != "") {
$('#plexUrl').removeClass("is-invalid").addClass("is-valid");
validUrl = true;
}
else {
$('#plexUrl').removeClass("is-valid").addClass("is-invalid");
validUrl = false;
}
// Check if we can enable the Connect to Plex button
if (validUrl && validToken) {
$("#btnConnectToPlex").prop("disabled", false);
}
else {
$("#btnConnectToPlex").prop("disabled", true);
}
});
// Validation listeners on the Plex Token Input
$('#plexToken').on("input", () => {
if ($('#plexToken').val() != "") {
$('#plexToken').removeClass("is-invalid").addClass("is-valid");
validToken = true;
}
else {
$('#plexToken').removeClass("is-valid").addClass("is-invalid");
validToken = false;
}
// Check if we can enable the Connect to Plex button
if (validUrl && validToken) {
$("#btnConnectToPlex").prop("disabled", false);
}
else {
$("#btnConnectToPlex").prop("disabled", true);
}
});
});
function connectToPlex() {
plexUrl = $("#plexUrl").val();
plexToken = $("#plexToken").val();
$.ajax({
"url": `${plexUrl}/library/sections/`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
$("#authWarningText").empty();
displayLibraries(data)
},
"error": (data) => {
if (data.status == 401) {
console.log("Unauthorized");
$("#authWarningText").html(`<div class="alert alert-warning alert-dismissible fade show mt-3" role="alert">
<strong>Warning:</strong> Unauthorized (401) - Please check that your X-Plex-Token is correct, and you are trying to connect to the correct Plex server.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>`);
}
else {
console.log("Unkown error, most likely bad URL / IP");
$("#authWarningText").html(`<div class="alert alert-warning alert-dismissible fade show mt-3" role="alert">
<strong>Warning:</strong> Unkown Error (0) - Please verify the URL and try again.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>`);
}
$("#libraryTable tbody").empty();
$("#tvShowsTable tbody").empty();
$("#seasonsTable tbody").empty();
$("#episodesTable tbody").empty();
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
}
});
}
function displayLibraries(data) {
const libraries = data.MediaContainer.Directory;
// console.log(libraries);
$("#libraryTable tbody").empty();
$("#tvShowsTable tbody").empty();
$("#seasonsTable tbody").empty();
$("#episodesTable tbody").empty();
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
for (let i = 0; i < libraries.length; i++) {
let rowHTML = `<tr onclick="getAlphabet(${libraries[i].key}, this)">
<th scope="row">${libraries[i].key}</th>
<td>${libraries[i].title}</td>
</tr>`;
$("#libraryTable tbody").append(rowHTML);
}
}
function getAlphabet(uid, row) {
$.ajax({
"url": `${plexUrl}/library/sections/${uid}/firstCharacter`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
libraryNumber = uid;
displayAlphabet(data, row);
$('#series-tab').tab('show');
},
"error": (data) => {
console.log("ERROR L131");
console.log(data);
}
});
}
function displayAlphabet(data, row) {
const availableAlphabet = data.MediaContainer.Directory;
// console.log(availableAlphabet);
$("#tvShowsTable tbody").empty();
$("#seasonsTable tbody").empty();
$("#episodesTable tbody").empty();
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
$(row).siblings().removeClass("table-active");
$(row).addClass("table-active");
$('#alphabetGroup').children().removeClass("btn-dark").addClass("btn-outline-dark").prop("disabled", true);
for (let i = 0; i < availableAlphabet.length; i++) {
if (availableAlphabet[i].title == "#") {
$(`#btnHash`).prop("disabled", false);
}
else {
$(`#btn${availableAlphabet[i].title}`).prop("disabled", false);
}
}
}
function getLibraryByLetter(element) {
let letter = $(element).text();
if (letter == "#") letter = "%23";
// console.log("getLibraryByLetter: " + letter);
$(element).siblings().removeClass("btn-dark").addClass("btn-outline-dark");
$(element).removeClass("btn-outline-dark").addClass("btn-dark");
$.ajax({
"url": `${plexUrl}/library/sections/${libraryNumber}/firstCharacter/${letter}`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => displayTitles(data),
"error": (data) => {
console.log("ERROR L178");
console.log(data);
}
});
}
function displayTitles(titles) {
const tvShows = titles.MediaContainer.Metadata;
// console.log(tvShows);
$("#tvShowsTable tbody").empty();
$("#seasonsTable tbody").empty();
$("#episodesTable tbody").empty();
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
for (let i = 0; i < tvShows.length; i++) {
let rowHTML = `<tr onclick="getTitleInfo(${tvShows[i].ratingKey}, this)">
<th scope="row">${tvShows[i].ratingKey}</th>
<td>${tvShows[i].title}</td>
<td>${tvShows[i].year}</td>
</tr>`;
$("#tvShowsTable tbody").append(rowHTML);
}
}
function getTitleInfo(uid, row) {
showId = uid;
$.ajax({
"url": `${plexUrl}/library/metadata/${uid}/children`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
showTitleInfo(data, row);
$('#episodes-tab').tab('show');
},
"error": (data) => {
console.log("ERROR L143");
console.log(data);
if (data.status == 400) {
// This is a "bad request" - this usually means a Movie was selected
$('#progressModal #progressModalTitle').empty();
$('#progressModal #progressModalTitle').text(`Invalid TV Show`);
$('#progressModal #modalBodyText').empty();
$('#progressModal #modalBodyText').append(`<div class="alert alert-warning" role="alert">
<div class="d-flex align-items-center">
This does not appear to be a valid TV Series, or this TV Series does not have any seasons associated with it.<br>
Please choose a valid TV Series; update the TV Series to have at least 1 Season; or go back and choose the proper library for TV Series.
</div>
</div>`);
$('#progressModal').modal();
}
}
});
}
function showTitleInfo(data, row) {
const seasons = data.MediaContainer.Metadata;
seasonsList.length = 0;
// console.log(seasons);
$(row).siblings().removeClass("table-active");
$(row).addClass("table-active");
$("#seasonsTable tbody").empty();
$("#episodesTable tbody").empty();
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
for (let i = 0; i < seasons.length; i++) {
seasonsList.push(seasons[i].ratingKey);
let rowHTML = `<tr onclick="getSeasonInfo(${seasons[i].ratingKey}, this)">
<th scope="row">${seasons[i].ratingKey}</th>
<td>${seasons[i].title}</td>
</tr>`;
$("#seasonsTable tbody").append(rowHTML);
}
}
function getSeasonInfo(uid, row) {
seasonId = uid;
$.ajax({
"url": `${plexUrl}/library/metadata/${uid}/children`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => showSeasonInfo(data, row),
"error": (data) => {
console.log("ERROR L183");
console.log(data);
}
});
}
function showSeasonInfo(data, row) {
const episodes = data.MediaContainer.Metadata;
// console.log(episodes);
$(row).siblings().removeClass("table-active");
$(row).addClass("table-active");
$("#episodesTable tbody").empty();
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
for (let i = 0; i < episodes.length; i++) {
let rowHTML = `<tr onclick="getEpisodeInfo(${episodes[i].ratingKey}, this)">
<th scope="row">${episodes[i].ratingKey}</th>
<td>${episodes[i].title}</td>
</tr>`;
$("#episodesTable tbody").append(rowHTML);
}
}
function getEpisodeInfo(uid, row) {
episodeId = uid;
$.ajax({
"url": `${plexUrl}/library/metadata/${uid}`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => showEpisodeInfo(data, row),
"error": (data) => {
console.log("ERROR L220");
console.log(data);
}
});
}
function showEpisodeInfo(data, row) {
const streams = data.MediaContainer.Metadata[0].Media[0].Part[0].Stream;
const partId = data.MediaContainer.Metadata[0].Media[0].Part[0].id;
// console.log(partId);
// console.log(streams);
$(row).siblings().removeClass("table-active");
$(row).addClass("table-active");
$("#audioTable tbody").empty();
$("#subtitleTable tbody").empty();
for (let i = 0; i < streams.length; i++) {
if (streams[i].streamType == 2) {
let rowHTML = `<tr ${streams[i].selected ? "class='table-active'" : ""} onclick="setAudioStream(${partId}, ${streams[i].id}, this)">
<th class="uid" scope="row">${streams[i].id}</th>
<td class="name">${streams[i].displayTitle}</td>
<td class="title">${streams[i].title}</td>
<td class="language">${streams[i].language}</td>
<td class="code">${streams[i].languageCode}</td>
</tr>`;
$("#audioTable tbody").append(rowHTML);
}
else if (streams[i].streamType == 3) {
let rowHTML = `<tr ${streams[i].selected ? "class='table-active'" : ""} onclick="setSubtitleStream(${partId}, ${streams[i].id}, this)">
<th class="uid" scope="row">${streams[i].id}</th>
<td class="name">${streams[i].displayTitle}</td>
<td class="title">${streams[i].title}</td>
<td class="language">${streams[i].language}</td>
<td class="code">${streams[i].languageCode}</td>
</tr>`;
$("#subtitleTable tbody").append(rowHTML);
}
}
}
async function setAudioStream(partsId, streamId, row) {
let singleEpisode = $("#singleEpisode").prop("checked");
if (singleEpisode) {
//console.log("Apply Audio Stream to single episode");
$.ajax({
"url": `${plexUrl}/library/parts/${partsId}?audioStreamID=${streamId}&allParts=1`,
"method": "POST",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
//console.log("success");
$(row).siblings().removeClass("table-active").removeClass("table-success");
$(row).addClass("table-active").addClass("success-transition");
setTimeout(function() {
$(row).removeClass('success-transition');
}, 100);
},
"error": (data) => {
console.log("ERROR L283");
console.log(data);
}
});
}
else {
//console.log("Apply Audio Stream to whole series");
// Show the modal to set progress
$('#progressModal #progressModalTitle').empty();
$('#progressModal #progressModalTitle').text(`Processing Audio Changes`);
$('#progressModal #modalBodyText').empty();
$('#progressModal #modalBodyText').append(`<div class="alert alert-warning" role="alert">
<div class="d-flex align-items-center">
<span id="modalTitleText">Please do not close this tab or refresh until the process is complete</span>
<div class="spinner-border text-warning ml-auto" role="status" aria-hidden="true"></div>
</div>
</div>`);
$('#progressModal').modal();
let matchPromises = []; // This will store the promises to change the audio for given files. It means we can run in parallel and await them all
let searchTitle = $(".title", row).text();
let searchName = $(".name", row).text();
let searchLanguage = $(".language", row).text();
let searchCode = $(".code", row).text();
// We have the Seasons Ids stored in seasonsList, so iterate over them to get all the episodes
let episodeList = [];
for (let i = 0; i < seasonsList.length; i++) {
let seasonEpisodes = await $.ajax({
"url": `${plexUrl}/library/metadata/${seasonsList[i]}/children`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
}
});
for (let j = 0; j < seasonEpisodes.MediaContainer.Metadata.length; j++) {
episodeList.push(seasonEpisodes.MediaContainer.Metadata[j].ratingKey);
}
}
//console.log(episodeList);
// We have the episodes in episodeList, now we need to go through each one and see what streams are available
for (let i = 0; i < episodeList.length; i++) {
let episodeData = await $.ajax({
"url": `${plexUrl}/library/metadata/${episodeList[i]}`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
}
});
const episodePartId = episodeData.MediaContainer.Metadata[0].Media[0].Part[0].id;
const episodeStreams = episodeData.MediaContainer.Metadata[0].Media[0].Part[0].Stream;
//console.log(episodePartId);
//console.log(episodeStreams);
// Loop through each audio stream and check for any matches using the searchTitle, searchName, searchLanguage, searchCode
let hasMatch = false;
let newStreamId = "";
let matchType = "";
for (let j = 0; j < episodeStreams.length; j++) {
// Audio streams are streamType 2, so we only care about that, we also don't care if the track is already selected
if ((episodeStreams[j].streamType == "2") && (episodeStreams[j].selected == true)) {
}
else if (episodeStreams[j].streamType == "2") {
// If the displayTitle and title are the same, we have an instant match (also rule out any undefined matches)
if ((episodeStreams[j].title == searchTitle) && (episodeStreams[j].displayTitle == searchName) && (episodeStreams[j].title != "undefined") && (episodeStreams[j].displayTitle != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Name and Title";
break;
}
// If the titles are the same (rule out undefined match)
else if ((episodeStreams[j].title == searchTitle) && (episodeStreams[j].title != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Title";
break;
}
// If the names are the same (rule out undefined match)
else if ((episodeStreams[j].displayTitle == searchName) && (episodeStreams[j].displayTitle != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Name";
break;
}
// If the languages are the same (rule out undefined match)
else if ((episodeStreams[j].language == searchLanguage) && (episodeStreams[j].language != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Language";
break;
}
// If the language codes are the same (rule out undefined match)
else if ((episodeStreams[j].languageCode == searchCode) && (episodeStreams[j].languageCode != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Language Code";
break;
}
}
}
if (hasMatch) {
// There is a match, so update the audio track using the newStreamId and episodePartId
//console.log(`Episode: ${episodeData.MediaContainer.Metadata[0].title} has a match on the type: ${matchType}, and will set the new Audio Track to: ${newStreamId}`);
matchPromises.push(await $.ajax({
"url": `${plexUrl}/library/parts/${episodePartId}?audioStreamID=${newStreamId}&allParts=1`,
"method": "POST",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
//console.log(`Episode: ${episodeData.MediaContainer.Metadata[0].title} updated with Audio Track: ${newStreamId} because of a match on ${matchType}`);
$('#progressModal #modalBodyText').append(`<span><strong>${episodeData.MediaContainer.Metadata[0].title}</strong> updated with Audio Track: <strong>${newStreamId}</strong> because of a match on <strong>${matchType}</strong></span><br />`);
$(row).siblings().removeClass("table-active");
$(row).addClass("table-active");
},
"error": (data) => {
console.log("ERROR L406");
console.log(data);
}
}));
}
else {
//console.log(`Episode: ${episodeData.MediaContainer.Metadata[0].title} has no match, or there is only 1 audio track`);
}
}
try {
await Promise.all(matchPromises.map(p => p.catch(e => e)));
}
catch (e) {
console.log("ERROR L419");
console.log(e);
}
//console.log("Completed all Updates");
$('#modalBodyText .alert').removeClass("alert-warning").addClass("alert-success");
$("#modalBodyText #modalTitleText").text("Processing Complete!");
$('#modalBodyText .spinner-border').css('visibility','hidden');
}
}
async function setSubtitleStream(partsId, streamId, row) {
let singleEpisode = $("#singleEpisode").prop("checked");
if (singleEpisode) {
$.ajax({
"url": `${plexUrl}/library/parts/${partsId}?subtitleStreamID=${streamId}&allParts=1`,
"method": "POST",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
//console.log("success");
$(row).siblings().removeClass("table-active").removeClass("table-success");
$(row).addClass("table-active").addClass("success-transition");
setTimeout(function() {
$(row).removeClass('success-transition');
}, 100);
},
"error": (data) => {
console.log("ERROR L449");
console.log(data);
}
});
}
else {
//console.log("Apply Subtitle Stream to whole series");
// Show the modal to set progress
$('#progressModal #progressModalTitle').empty();
$('#progressModal #progressModalTitle').text(`Processing Subtitle Changes`);
$('#progressModal #modalBodyText').empty();
$('#progressModal #modalBodyText').append(`<div class="alert alert-warning" role="alert">
<div class="d-flex align-items-center">
<span id="modalTitleText">Please do not close this tab or refresh until the process is complete</span>
<div class="spinner-border text-warning ml-auto" role="status" aria-hidden="true"></div>
</div>
</div>`);
$('#progressModal').modal();
let matchPromises = []; // This will store the promises to change the audio for given files. It means we can run in parallel and await them all
let searchTitle = $(".title", row).text();
let searchName = $(".name", row).text();
let searchLanguage = $(".language", row).text();
let searchCode = $(".code", row).text();
// We have the Seasons Ids stored in seasonsList, so iterate over them to get all the episodes
let episodeList = [];
for (let i = 0; i < seasonsList.length; i++) {
let seasonEpisodes = await $.ajax({
"url": `${plexUrl}/library/metadata/${seasonsList[i]}/children`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
}
});
for (let j = 0; j < seasonEpisodes.MediaContainer.Metadata.length; j++) {
episodeList.push(seasonEpisodes.MediaContainer.Metadata[j].ratingKey);
}
}
//console.log(episodeList);
// We have the episodes in episodeList, now we need to go through each one and see what streams are available
for (let i = 0; i < episodeList.length; i++) {
let episodeData = await $.ajax({
"url": `${plexUrl}/library/metadata/${episodeList[i]}`,
"method": "GET",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
}
});
const episodePartId = episodeData.MediaContainer.Metadata[0].Media[0].Part[0].id;
const episodeStreams = episodeData.MediaContainer.Metadata[0].Media[0].Part[0].Stream;
//console.log(episodePartId);
//console.log(episodeStreams);
// Loop through each subtitle stream and check for any matches using the searchTitle, searchName, searchLanguage, searchCode
let hasMatch = false;
let newStreamId = "";
let matchType = "";
for (let j = 0; j < episodeStreams.length; j++) {
// Sudio streams are streamType 3, so we only care about that, we also don't care if the track is already selected
if ((episodeStreams[j].streamType == "3") && (episodeStreams[j].selected == true)) {
}
else if (episodeStreams[j].streamType == "3") {
// If the displayTitle and title are the same, we have an instant match (also rule out any undefined matches)
if ((episodeStreams[j].title == searchTitle) && (episodeStreams[j].displayTitle == searchName) && (episodeStreams[j].title != "undefined") && (episodeStreams[j].displayTitle != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Name and Title";
break;
}
// If the titles are the same (rule out undefined match)
else if ((episodeStreams[j].title == searchTitle) && (episodeStreams[j].title != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Title";
break;
}
// If the names are the same (rule out undefined match)
else if ((episodeStreams[j].displayTitle == searchName) && (episodeStreams[j].displayTitle != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Name";
break;
}
// If the languages are the same (rule out undefined match)
else if ((episodeStreams[j].language == searchLanguage) && (episodeStreams[j].language != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Language";
break;
}
// If the language codes are the same (rule out undefined match)
else if ((episodeStreams[j].languageCode == searchCode) && (episodeStreams[j].languageCode != "undefined")) {
hasMatch = true;
newStreamId = episodeStreams[j].id;
matchType = "Language Code";
break;
}
}
}
if (hasMatch) {
// There is a match, so update the subtitle track using the newStreamId and episodePartId
//console.log(`Episode: ${episodeData.MediaContainer.Metadata[0].title} has a match on the type: ${matchType}, and will set the new Subtitle Track to: ${newStreamId}`);
matchPromises.push(await $.ajax({
"url": `${plexUrl}/library/parts/${episodePartId}?subtitleStreamID=${newStreamId}&allParts=1`,
"method": "POST",
"headers": {
"X-Plex-Token": plexToken,
"Accept": "application/json"
},
"success": (data) => {
//console.log(`Episode: ${episodeData.MediaContainer.Metadata[0].title} updated with Subtitle Track: ${newStreamId} because of a match on ${matchType}`);
$('#progressModal #modalBodyText').append(`<span><strong>${episodeData.MediaContainer.Metadata[0].title}</strong> updated with Subtitle Track: <strong>${newStreamId}</strong> because of a match on <strong>${matchType}</strong></span><br />`);
$(row).siblings().removeClass("table-active");
$(row).addClass("table-active");
},
"error": (data) => {
console.log("ERROR L572");
console.log(data);
}
}));
}
else {
//console.log(`Episode: ${episodeData.MediaContainer.Metadata[0].title} has no match, or there is only 1 subtitle track`);
}
}
try {
await Promise.all(matchPromises.map(p => p.catch(e => e)));
}
catch (e) {
console.log("ERROR 585");
console.log(e);
}
//console.log("Completed all Updates");
$('#modalBodyText .alert').removeClass("alert-warning").addClass("alert-success");
$("#modalBodyText #modalTitleText").text("Processing Complete!");
$('#modalBodyText .spinner-border').css('visibility','hidden');
}
}
|