-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
sheetScript.gs
781 lines (714 loc) · 30.5 KB
/
sheetScript.gs
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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
// Auto Youtube Subscription Playlist (2)
// This is a Google Apps Script that automatically adds new Youtube videos to playlists (a replacement for Youtube Collections feature).
// Code: https://github.com/Elijas/auto-youtube-subscription-playlist-2/
// Copy Spreadsheet:
// https://docs.google.com/spreadsheets/d/1sZ9U52iuws6ijWPQTmQkXvaZSV3dZ3W9JzhnhNTX9GU/copy
// Adjustable to quota of Youtube API
var maxVideos = 200;
// Errorflags
var errorflag = false;
var plErrorCount = 0;
var totalErrorCount = 0;
var debugFlag_dontUpdateTimestamp = false;
var debugFlag_dontUpdatePlaylists = false;
var debugFlag_logWhenNoNewVideosFound = false;
// Reserved Row and Column indices (zero-based)
// If you use getRange remember those indices are one-based, so add + 1 in that call i.e.
// sheet.getRange(iRow + 1, reservedColumnTimestamp + 1).setValue(isodate);
var reservedTableRows = 3; // Start of the range of the PlaylistID+ChannelID data
var reservedTableColumns = 6; // Start of the range of the ChannelID data (0: A, 1: B, 2: C, 3: D, 4: E, 5: F, ...)
var reservedColumnPlaylist = 0; // Column containing playlist to add to
var reservedColumnTimestamp = 1; // Column containing last timestamp
var reservedColumnFrequency = 2; // Column containing number of hours until new check
var reservedColumnDeleteDays = 3; // Column containing number of days before today until videos get deleted
var reservedColumnShortsFilter = 4; // Column containing switch for using shorts filter
// Reserved lengths
var reservedDebugNumRows = 900; // Number of rows to use in a column before moving on to the next column in debug sheet
var reservedDebugNumColumns = 26; // Number of columns to use in debug sheet, must be at least 4 to allow infinite cycle
// Extend Date with Iso String with timzone support (Youtube needs IsoDates)
// https://stackoverflow.com/questions/17415579/how-to-iso-8601-format-a-date-with-timezone-offset-in-javascript
Date.prototype.toIsoString = function() {
var tzo = -this.getTimezoneOffset(),
dif = tzo >= 0 ? '+' : '-',
pad = function(num) {
var norm = Math.floor(Math.abs(num));
return (norm < 10 ? '0' : '') + norm;
};
return this.getFullYear() +
'-' + pad(this.getMonth() + 1) +
'-' + pad(this.getDate()) +
'T' + pad(this.getHours()) +
':' + pad(this.getMinutes()) +
':' + pad(this.getSeconds()) +
dif + pad(tzo / 60) +
':' + pad(tzo % 60);
}
//
// Main Function to update all Playlists
//
function updatePlaylists(sheet) {
var sheetID = PropertiesService.getScriptProperties().getProperty("sheetID")
if (!sheetID) onOpen()
var spreadsheet = SpreadsheetApp.openById(sheetID)
if (!sheet || !sheet.toString || sheet.toString() != 'Sheet') sheet = spreadsheet.getSheets()[0];
if (!sheet || sheet.getRange("A3").getValue() !== "Playlist ID") {
additional = sheet ? ", instead found sheet with name "+ sheet.getName() : ""
throw new Error("Cannot find playlist sheet, make sure the sheet with playlist IDs and channels is the first sheet (leftmost)"+ additional)
}
var MILLIS_PER_HOUR = 1000 * 60 * 60;
var MILLIS_PER_DAY = MILLIS_PER_HOUR * 24;
var data = sheet.getDataRange().getValues();
var debugSheet = spreadsheet.getSheetByName("DebugData")
if (!debugSheet) debugSheet = spreadsheet.insertSheet("DebugData").hideSheet()
var nextDebugCol = getNextDebugCol(debugSheet);
var nextDebugRow = getNextDebugRow(debugSheet, nextDebugCol);
var debugViewerSheet = spreadsheet.getSheetByName("Debug");
initDebugEntry(debugViewerSheet, nextDebugCol, nextDebugRow);
/// For each playlist...
for (var iRow = reservedTableRows; iRow < sheet.getLastRow(); iRow++) {
Logger.clear();
Logger.log("Row: " + (iRow+1));
var playlistId = data[iRow][reservedColumnPlaylist];
if (!playlistId) continue;
var lastTimestamp = data[iRow][reservedColumnTimestamp];
if (!lastTimestamp) {
var date = new Date();
date.setHours(date.getHours() - 24); // Subscriptions added starting with the last day
var isodate = date.toIsoString();
sheet.getRange(iRow + 1, reservedColumnTimestamp + 1).setValue(isodate);
lastTimestamp = isodate;
}
// Check if it's time to update already
var freqDate = new Date(lastTimestamp);
var dateDiff = Date.now() - freqDate;
var nextTime = data[iRow][reservedColumnFrequency] * MILLIS_PER_HOUR;
if (nextTime && dateDiff <= nextTime) {
Logger.log("Skipped: Not time yet");
} else {
/// ...get channels...
var channelIds = [];
var playlistIds = [];
for (var iColumn = reservedTableColumns; iColumn < sheet.getLastColumn(); iColumn++) {
var channel = data[iRow][iColumn];
if (!channel) continue;
else if (channel == "ALL") {
var newChannelIds = getAllChannelIds();
if (!newChannelIds || newChannelIds.length === 0) addError("Could not find any subscriptions");
else [].push.apply(channelIds, newChannelIds);
} else if (channel.substring(0,2) == "PL" && channel.length > 10) // Add videos from playlist. MaybeTODO: better validation, since might interpret a channel with a name "PL..." as a playlist ID
playlistIds.push(channel);
else if (!(channel.substring(0,2) == "UC" && channel.length > 10)) // Check if it is not a channel ID (therefore a username). MaybeTODO: do a better validation, since might interpret a channel with a name "UC..." as a channel ID
{
try {
var user = YouTube.Channels.list('id', {forUsername: channel, maxResults: 1});
if (!user || !user.items) addError("Cannot query for user " + channel)
else if (user.items.length === 0) addError("No user with name " + channel)
else if (user.items.length !== 1) addError("Multiple users with name " + channel)
else if (!user.items[0].id) addError("Cannot get id from user " + channel)
else channelIds.push(user.items[0].id);
} catch (e) {
addError("Cannot search for channel with name "+channel+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
continue;
}
}
else
channelIds.push(channel);
}
/// ...get videos from the channels...
var newVideoIds = [];
for (var i = 0; i < channelIds.length; i++) {
var videoIds = getVideoIdsWithLessQueries(channelIds[i], lastTimestamp)
if (!videoIds || typeof(videoIds) !== "object") addError("Failed to get videos with channel id "+channelIds[i])
else if (debugFlag_logWhenNoNewVideosFound && videoIds.length === 0) {
Logger.log("Channel with id "+channelIds[i]+" has no new videos")
} else {
[].push.apply(newVideoIds, videoIds);
}
}
for (var i = 0; i < playlistIds.length; i++) {
var videoIds = getPlaylistVideoIds(playlistIds[i], lastTimestamp)
if (!videoIds || typeof(videoIds) !== "object") addError("Failed to get videos with playlist id "+playlistIds[i])
else if (debugFlag_logWhenNoNewVideosFound && videoIds.length === 0) {
Logger.log("Playlist with id "+playlistIds[i]+" has no new videos")
} else {
[].push.apply(newVideoIds, videoIds);
}
}
Logger.log("Acquired "+newVideoIds.length+" videos")
newVideoIds = applyFilters(newVideoIds, sheet, iRow);
Logger.log("Filtering finished, left with "+newVideoIds.length+" videos")
if (!errorflag) {
// ...add videos to playlist...
if (!debugFlag_dontUpdatePlaylists) {
addVideosToPlaylist(playlistId, newVideoIds);
} else {
addError("Don't Update Playlists debug flag is set");
}
/// ...delete old vidoes in playlist
var daysBack = data[iRow][reservedColumnDeleteDays];
if (daysBack && (daysBack > 0)) {
var deleteBeforeTimestamp = new Date((new Date()).getTime() - daysBack*MILLIS_PER_DAY).toIsoString();
Logger.log("Delete before: "+deleteBeforeTimestamp);
deletePlaylistItems(playlistId, deleteBeforeTimestamp);
}
}
// Update timestamp
if (!errorflag && !debugFlag_dontUpdateTimestamp) sheet.getRange(iRow + 1, reservedColumnTimestamp + 1).setValue(new Date().toIsoString());
}
// Prints logs to Debug sheet
var newLogs = Logger.getLog().split("\n").slice(0, -1).map(function(log) {if(log.search("limit") != -1 && log.search("quota") != -1)errorflag=true;return log.split(" INFO: ")})
if (newLogs.length > 0) debugSheet.getRange(nextDebugRow + 1, nextDebugCol + 1, newLogs.length, 2).setValues(newLogs)
nextDebugRow += newLogs.length;
errorflag = false;
totalErrorCount += plErrorCount;
plErrorCount = 0;
}
// Log finished script, only populate second column to signify end of execution when retrieving logs
if (totalErrorCount == 0) {
debugSheet.getRange(nextDebugRow + 1, nextDebugCol + 2).setValue("Updated all rows, script successfully finished")
} else {
debugSheet.getRange(nextDebugRow + 1, nextDebugCol + 2).setValue("Script did not successfully finish")
}
nextDebugRow += 1;
// Clear next debug column if filled reservedDebugNumRows rows
if (nextDebugRow > reservedDebugNumRows - 1) {
var colIndex = 0;
if (nextDebugCol < reservedDebugNumColumns - 2) {
colIndex = nextDebugCol + 2;
}
clearDebugCol(debugSheet, colIndex)
}
loadLastDebugLog(debugViewerSheet);
if (totalErrorCount > 0) {
throw new Error(totalErrorCount+" video(s) were not added to playlists correctly, please check Debug sheet. Timestamps for respective rows has not been updated.")
}
}
//
// Functions to obtain channel IDs to check
//
// Display dialog to get channel ID from channel name
function getChannelId() {
var ui = SpreadsheetApp.getUi();
var result = ui.prompt(
'Get Channel ID',
'Please input a channel name:',
ui.ButtonSet.OK_CANCEL);
var button = result.getSelectedButton();
var text = result.getResponseText();
if (button == ui.Button.OK) {
var results = YouTube.Search.list('id', {
q: text,
type: "channel",
maxResults: 50,
});
for (var i = 0; i < results.items.length; i++) {
var result = ui.alert(
'Please confirm',
'Is this the link to the channel you want?\n\nhttps://youtube.com/channel/' + results.items[i].id.channelId + '',
ui.ButtonSet.YES_NO);
if (result == ui.Button.YES) {
ui.alert('The channel ID is ' + results.items[i].id.channelId);
return;
} else if (result == ui.Button.NO) {
continue;
} else {
return;
}
}
ui.alert('No results found for ' + text + '.');
} else if (button == ui.Button.CANCEL) {
return;
} else if (button == ui.Button.CLOSE) {
return;
}
}
// Get Channel IDs from Subscriptions (ALL keyword)
function getAllChannelIds() { // get YT Subscriptions-List, src: https://www.reddit.com/r/youtube/comments/3br98c/a_way_to_automatically_add_subscriptions_to/
var AboResponse, AboList = [[],[]], nextPageToken = [], nptPage = 0, i, ix;
// Workaround: nextPageToken API-Bug (this Tokens are limited to 1000 Subscriptions... but you can add more Tokens.)
nextPageToken = ['','CDIQAA','CGQQAA','CJYBEAA','CMgBEAA','CPoBEAA','CKwCEAA','CN4CEAA','CJADEAA','CMIDEAA','CPQDEAA','CKYEEAA','CNgEEAA','CIoFEAA','CLwFEAA','CO4FEAA','CKAGEAA','CNIGEAA','CIQHEAA','CLYHEAA'];
try {
do {
AboResponse = YouTube.Subscriptions.list('snippet', {
mine: true,
maxResults: 50,
order: 'alphabetical',
pageToken: nextPageToken[nptPage],
fields: 'items(snippet(title,resourceId(channelId)))'
});
for (i = 0, ix = AboResponse.items.length; i < ix; i++) {
AboList[0].push(AboResponse.items[i].snippet.title)
AboList[1].push(AboResponse.items[i].snippet.resourceId.channelId)
}
nptPage += 1;
} while (AboResponse.items.length > 0 && nptPage < 20);
if (AboList[0].length !== AboList[1].length) {
addError("While getting subscriptions, the number of titles ("+AboList[0].length+") did not match the number of channels ("+AboList[1].length+")."); // returns a string === error
return []
}
} catch (e) {
addError("Could not get subscribed channels, ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
return [];
}
Logger.log('Acquired subscriptions %s', AboList[1].length);
return AboList[1];
}
//
// Functions to get Videos
//
// Get new videos from Channels
function getVideoIds(channelId, lastTimestamp) {
var videoIds = [];
var nextPageToken = '';
do {
try {
var results = YouTube.Search.list('id', {
channelId: channelId,
maxResults: 50,
order: "date",
publishedAfter: lastTimestamp,
pageToken: nextPageToken,
type: "video"
});
if (!results || !results.items) {
addError("YouTube video search returned invalid response for channel with id "+channelId)
return []
}
} catch (e) {
Logger.log("Cannot search YouTube with channel id "+channelId+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
break;
}
for (var j = 0; j < results.items.length; j++) {
var item = results.items[j];
if (!item.id) {
Logger.log("YouTube search result ("+item+") doesn't have id")
continue
} else if (!item.id.videoId) {
Logger.log("YouTube search result ("+item+") doesn't have videoId")
continue
}
videoIds.push(item.id.videoId);
}
nextPageToken = results.nextPageToken;
} while (nextPageToken != null);
if (videoIds.length === 0) {
try {
// Check Channel validity
var results = YouTube.Channels.list('id', {
id: channelId
});
if (!results) {
addError("YouTube channel search returned invalid response for channel with id "+channelId)
return []
} else if (!results.items || results.items.length === 0) {
addError("Cannot find channel with id "+channelId)
return []
}
} catch (e) {
addError("Cannot search YouTube for channel with id "+channelId+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
return [];
}
}
return videoIds;
}
// Get videos from Channels but with less Quota use
// slower and date ordering is a bit messy but less quota costs
function getVideoIdsWithLessQueries(channelId, lastTimestamp) {
var videoIds = [];
var uploadsPlaylistId;
try {
// Check Channel validity
var results = YouTube.Channels.list('contentDetails', {
id: channelId
});
if (!results) {
addError("YouTube channel search returned invalid response for channel with id "+channelId)
return []
} else if (!results.items || results.items.length === 0) {
addError("Cannot find channel with id "+channelId)
return []
} else {
uploadsPlaylistId = results.items[0].contentDetails.relatedPlaylists.uploads;
}
} catch (e) {
addError("Cannot search YouTube for channel with id "+channelId+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
return [];
}
nextPageToken = ''
do {
try {
var results = YouTube.PlaylistItems.list('contentDetails', {
playlistId: uploadsPlaylistId,
maxResults: 50,
pageToken: nextPageToken
})
var videosToBeAdded = results.items.filter(function (vid) {return ((new Date(lastTimestamp)) <= (new Date(vid.contentDetails.videoPublishedAt)))})
if (videosToBeAdded.length == 0) {
break;
} else {
[].push.apply(videoIds, videosToBeAdded.map(function (vid) {return vid.contentDetails.videoId}));
}
nextPageToken = results.nextPageToken;
} catch (e) {
if (e.details.code !== 404) { // Skip error count if Playlist isn't found, then channel is empty
addError("Cannot search YouTube with playlist id "+uploadsPlaylistId+", ERROR: Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
} else {
Logger.log("Warning: Channel "+channelId+" does not have any uploads in "+uploadsPlaylistId+", ignore if this is intentional as this will not fail the script. API error details for troubleshooting: " + JSON.stringify(e.details));
}
return [];
}
} while (nextPageToken != null);
return videoIds.reverse(); // Reverse to get videos in ascending order by date
}
// Get Video IDs from Playlist
function getPlaylistVideoIds(playlistId, lastTimestamp) {
var videoIds = [];
var nextPageToken = '';
while (nextPageToken != null){
try {
var results = YouTube.PlaylistItems.list('snippet', {
playlistId: playlistId,
maxResults: 50,
order: "date",
publishedAfter: lastTimestamp,
pageToken: nextPageToken
});
if (!results || !results.items) {
addError("YouTube playlist search returned invalid response for playlist with id "+playlistId)
return [];
}
} catch (e) {
Logger.log("Cannot search YouTube with playlist id "+playlistId+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
break
}
for (var j = 0; j < results.items.length; j++) {
var item = results.items[j];
if ((new Date(item.snippet.publishedAt)) > (new Date(lastTimestamp)))
videoIds.push(item.snippet.resourceId.videoId);
}
nextPageToken = results.nextPageToken;
}
if (videoIds.length === 0) {
try {
// Check Playlist validity
var results = YouTube.Playlists.list('id', {
id: playlistId
});
if (!results || !results.items) {
addError("YouTube channel search returned invalid response for playlist with id "+playlistId)
return []
} else if (results.items.length === 0) {
addError("Cannot find playlist with id "+playlistId)
return []
}
} catch (e) {
addError("Cannot lookup playlist with id "+playlistId+" on YouTube, ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
return [];
}
}
return videoIds;
}
//
// Functions to Add and Delete videos to playlist
//
// Add Videos to Playlist using Video IDs obtained before
function addVideosToPlaylist(playlistId, videoIds, idx = 0, successCount = 0, errorCount = 0) {
var totalVids = videoIds.length;
if (0 < totalVids && totalVids < maxVideos) {
try {
YouTube.PlaylistItems.insert({
snippet: {
playlistId: playlistId,
resourceId: {
videoId: videoIds[idx],
kind: 'youtube#video'
}
}
}, 'snippet');
var success = 1;
} catch (e) {
if (e.details.code === 409) { // Skip error count if Video exists in playlist already
Logger.log("Couldn't update playlist with video ("+videoIds[idx]+"), ERROR: Video already exists")
} else if (e.details.code === 400 && e.details.errors[0].reason === "playlistOperationUnsupported") {
addError("Couldn't update watch later or watch history playlist with video, functionality deprecated; try adding videos to a different playlist")
errorCount += 1;
} else {
try {
var results = YouTube.Videos.list('snippet', {
id: videoIds[idx]
});
if (results.items.length === 0) { // Skip error count if video is private (found when using getPlaylistVideoIds)
Logger.log("Couldn't update playlist with video ("+videoIds[idx]+"), ERROR: Cannot find video, most likely private")
} else {
addError("Couldn't update playlist with video ("+videoIds[idx]+"), ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
errorCount += 1;
}
} catch (e) {
addError("Couldn't update playlist with video ("+videoIds[idx]+"), 404 on update, tried to search for video with id, got ERROR: Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
errorCount += 1;
}
}
success = 0;
} finally {
idx += 1;
successCount += success;
if (totalVids == idx) {
Logger.log("Added "+successCount+" video(s) to playlist. Error for "+errorCount+" video(s).")
errorflag = (errorCount > 0);
} else {
addVideosToPlaylist(playlistId, videoIds, idx, successCount, errorCount);
}
}
} else if (totalVids == 0) {
Logger.log("No new videos yet.")
} else {
addError("The query contains "+totalVids+" videos. Script cannot add more than "+maxVideos+" videos. Try moving the timestamp closer to today.")
}
}
// Delete Videos from Playlist if they're older than the defined time
function deletePlaylistItems(playlistId, deleteBeforeTimestamp) {
var nextPageToken = '';
var allVideos = [];
while (nextPageToken != null){
try {
var results = YouTube.PlaylistItems.list('contentDetails', {
playlistId: playlistId,
maxResults: 50,
order: "date",
publishedBefore: deleteBeforeTimestamp, // this compares the timestamp when the video was added to playlist
pageToken: nextPageToken});
for (var j = 0; j < results.items.length; j++) {
var item = results.items[j];
if ((new Date(item.contentDetails.videoPublishedAt)) < (new Date(deleteBeforeTimestamp))) // this compares the timestamp when the video was published
{
Logger.log("Del: | "+item.contentDetails.videoPublishedAt)
YouTube.PlaylistItems.remove(item.id)
} else {
allVideos.push(item);
}
}
nextPageToken = results.nextPageToken;
} catch (e) {
addError("Problem deleting existing videos from playlist with id "+playlistId+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
nextPageToken = null;
}
}
// Delete Duplicates Videos by videoId
try {
let tempVideos = [];
let duplicateVideos = [];
allVideos.forEach(x => {
if (tempVideos.find(y => y.contentDetails.videoId === x.contentDetails.videoId)) {
duplicateVideos.push(x);
} else {
tempVideos.push(x);
}
});
duplicateVideos.forEach(x => {
YouTube.PlaylistItems.remove(x.id);
});
} catch (e) {
addError("Problem deleting duplicate videos from playlist with id "+playlistId+", ERROR: " + "Message: [" + e.message + "] Details: " + JSON.stringify(e.details));
}
}
//
// Functions for filtering videos
//
// Returns a new filtered array of videos based on the filters selected in the sheet
function applyFilters(videoIds, sheet, iRow) {
let filters = []
// Removes all shorts if enabled
if (sheet.getRange(iRow + 1, reservedColumnShortsFilter + 1).getValue() == "No") {
Logger.log("Removing shorts");
filters.push(removeShortsFilter);
}
return videoIds.filter(videoId => filters.reduce((acc, cur) => acc && cur(videoId), true));
}
// Returns false if video is a short by checking if its length is less than a minute
// There might be better/more accurate ways
function removeShortsFilter(videoId) {
let response = YouTube.Videos.list('contentDetails', {
id: videoId,
});
if (response.items && response.items.length && response.items[0].contentDetails.duration) {
return !isLessThanAMinute(response.items[0].contentDetails.duration)
}
return false;
}
// Checks if an ISO 8601 duration is less or equal than a minute.
// Verifying the duration is of the form PT1M or PTXXX.XXXS where X represents digits.
function isLessThanAMinute(duration) {
// Check if duration is 1 minute
// Since there can be a 1 second variation, we check for 1 minute + 1 second too, due to following bug
// https://stackoverflow.com/questions/72459082/yt-api-pulling-different-video-lengths-for-youtube-videos
if (duration == "PT1M" || duration == "PT1M1S") return true;
if (duration.slice(0,2) != "PT") return false;
for (let i = 2; i < duration.length - 1; i++) {
// Check if is digit
if (duration[i] > '9') return false;
}
return duration[duration.length - 1] == 'S';
}
//
// Functions for maintaining debug logs
//
// Parse debug sheet to find column of cell to write debug logs to
function getNextDebugCol(debugSheet) {
var data = debugSheet.getDataRange().getValues();
// Only one column, not filled yet, return this column
if (data.length < reservedDebugNumRows) return 0;
// Need to iterate since next col might be in middle of data
for (var col = 0; col < reservedDebugNumColumns; col += 2) {
// New column
// Necessary check since data is list of lists and col might be out of bounds
if (data[0].length < col + 1) return col
// Unfilled column
if (data[reservedDebugNumRows - 1][col + 1] == "") return col;
}
clearDebugCol(debugSheet, 0)
return 0;
}
// Parse debug sheet to find row of cell to write debug logs to
function getNextDebugRow(debugSheet, nextDebugCol) {
var data = debugSheet.getDataRange().getValues();
// Empty sheet, return first row
if (data.length == 1 && data[0].length == 1 && data[0][0] == "") return 0;
// Only one column, not filled yet, return last row + 1
// Second check needed in case reservedDebugNumRows has expanded while other columns are filled
if (data.length < reservedDebugNumRows && data[0][0] != "") return data.length;
for (var row = 0; row < reservedDebugNumRows; row++) {
// Found empty row
if (data[row][nextDebugCol + 1] == "") return row;
}
return 0;
}
// Clear column in debug sheet for next execution's logs
function clearDebugCol(debugSheet, colIndex) {
// Clear first reservedDebugNumRows rows
debugSheet.getRange(1, colIndex + 1, reservedDebugNumRows, 2).clear();
// Clear as many additional rows as necessary
var rowIndex = reservedDebugNumRows;
while (debugSheet.getRange(rowIndex + 1, colIndex + 1, 1, 2).getValues()[0][1] != "") {
debugSheet.getRange(rowIndex + 1, colIndex + 1, 1, 2).clear();
rowIndex += 1;
}
}
// Add execution entry to debug viewer, shift previous executions and remove earliest if too many
function initDebugEntry(debugViewer, nextDebugCol, nextDebugRow) {
// Clear currently viewing logs to get proper last row
debugViewer.getRange("B3").clear();
// Calculate number of existing executions
var numExecutionsRecorded = debugViewer.getDataRange().getLastRow() - 2;
var maxToCopy = debugViewer.getRange("B1").getValue() - 1
var numToCopy = numExecutionsRecorded
if (numToCopy > maxToCopy) {
numToCopy = maxToCopy
}
// Shift existing executions
debugViewer.getRange(4, 1, numToCopy, 1).setValues(debugViewer.getRange(3, 1, numToCopy, 1).getValues())
if (numExecutionsRecorded - numToCopy > 0) {
debugViewer.getRange(4+numToCopy, 1, numExecutionsRecorded - numToCopy, 1).clear()
}
// Copy new execution
debugViewer.getRange(3, 1).setValue("=DebugData!"+debugViewer.getRange(nextDebugRow + 1, nextDebugCol + 1).getA1Notation())
}
// Set currently viewed execution logs to most recent execution
function loadLastDebugLog(debugViewer) {
debugViewer.getRange("B3").setValue(debugViewer.getRange("A3").getValue());
}
// Given an execution's (first log's) timestamp, return an array with the execution's logs
// Returns "" or Error if can't find logs
function getLogs(timestamp) {
if (timestamp == "") return "";
var debugSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("DebugData");
if (!debugSheet) throw Error("No debug logs");
var data = debugSheet.getDataRange().getValues();
var results = []
for (var col = 0; col < data[0].length; col += 2) {
for (var row = 0; row < data.length; row++) {
if (data[row][col] == timestamp) {
for (; row < data.length; row++) {
if (data[row][col] == "") break;
results.push([data[row][col + 1]]);
}
return results;
}
}
}
return ""
}
//
// Functions for Housekeeping
// Makes Web App, function call from Google Sheets, add errors, etc
//
// Log errors in debug sheet and throw an error
function addError(s) {
Logger.log(s);
errorflag = true;
plErrorCount += 1;
}
// Function to Set Up Google Spreadsheet
function onOpen() {
SpreadsheetApp.getActiveSpreadsheet().addMenu("Youtube Controls", [
{name: "Update Playlists", functionName: "updatePlaylists"},
{name: "Get Channel ID", functionName: "getChannelId"}
]);
var ss = SpreadsheetApp.getActiveSpreadsheet()
var sheet = ss.getSheets()[0]
if (!sheet || sheet.getRange("A3").getValue() !== "Playlist ID") {
additional = sheet ? ", instead found sheet with name "+ sheet.getName() : ""
throw new Error("Cannot find playlist sheet, make sure the sheet with playlist IDs and channels is the first sheet (leftmost)"+ additional)
}
PropertiesService.getScriptProperties().setProperty("sheetID", ss.getId())
}
// Function to publish Script as Web App
function doGet(e) {
var sheetID = PropertiesService.getScriptProperties().getProperty("sheetID");
if (e.parameter.update == "True") {
var sheet = SpreadsheetApp.openById(sheetID).getSheets()[0];
if (!sheet || sheet.getRange("A3").getValue() !== "Playlist ID") {
additional = sheet ? ", instead found sheet with name "+ sheet.getName() : ""
throw new Error("Cannot find playlist sheet, make sure the sheet with playlist IDs and channels is the first sheet (leftmost)"+ additional)
}
updatePlaylists(sheet);
};
var t = HtmlService.createTemplateFromFile('index.html');
t.data = e.parameter.pl
t.sheetID = sheetID
return t.evaluate();
}
// Function to select playlist for Web App
function playlist(pl, sheetID){
var sheet = SpreadsheetApp.openById(sheetID).getSheets()[0];
var data = sheet.getDataRange().getValues();
if (pl == undefined){
pl = reservedTableRows;
} else {
pl = Number(pl) + reservedTableRows - 1; // I like to think of the first playlist as being number 1.
}
if (pl > sheet.getLastRow()){
pl = sheet.getLastRow();
}
var playlistId = data[pl][reservedColumnPlaylist];
return playlistId
}
function test1() {
Logger.log("hi")
// let duration = "";
// Logger.log(duration[duration.length - 1]);
// let videoId = "FAyKDaXEAgc";
// let response = YouTube.Videos.list('contentDetails', {
// id: videoId,
// });
// if (response.items && response.items.length) {
// let duration = response.items[0].contentDetails.duration;
// if (isLessThanAMinute(duration)) {
// Logger.log("Is a short");
// } else {
// Logger.log("Is not a short");
// }
// }
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheets()[0];
let videoIds = ["FAyKDaXEAgc", "_y_QLeVOpqs", "7KEA5_8rd0A", "LTiI6tvU48c"];
Logger.log(applyFilters(videoIds, sheet));
}