]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add since parameter to peertube-import-videos (#1991)
authorFlorent F <florent.fayolle69@gmail.com>
Thu, 1 Aug 2019 08:21:55 +0000 (10:21 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 1 Aug 2019 08:21:55 +0000 (10:21 +0200)
* Add since parameter to peertube-import-videos

* PR remarks + --until <date>

server/tools/peertube-import-videos.ts

index 1f0350442cf0ca1bb1bcf18a0286b0c5b26ac8e9..0ebfa744263d19b807eb6427432d85c395a66309 100644 (file)
@@ -32,7 +32,9 @@ command
   .option('-u, --url <url>', 'Server url')
   .option('-U, --username <username>', 'Username')
   .option('-p, --password <token>', 'Password')
-  .option('-t, --target-url <targetUrl>', 'Video target URL')
+  .option('--target-url <targetUrl>', 'Video target URL')
+  .option('--since <since>', 'Publication date (inclusive) since which the videos can be imported (YYYY-MM-DD)', parseDate)
+  .option('--until <until>', 'Publication date (inclusive) until which the videos can be imported (YYYY-MM-DD)', parseDate)
   .option('-v, --verbose', 'Verbose mode')
   .parse(process.argv)
 
@@ -108,6 +110,21 @@ function processVideo (parameters: {
     const videoInfo = await fetchObject(youtubeInfo)
     if (program[ 'verbose' ]) console.log('Fetched object.', videoInfo)
 
+    if (program[ 'since' ]) {
+      if (buildOriginallyPublishedAt(videoInfo).getTime() < program[ 'since' ].getTime()) {
+        console.log('Video "%s" has been published before "%s", don\'t upload it.\n',
+          videoInfo.title, formatDate(program[ 'since' ]));
+        return res();
+      }
+    }
+    if (program[ 'until' ]) {
+      if (buildOriginallyPublishedAt(videoInfo).getTime() > program[ 'until' ].getTime()) {
+        console.log('Video "%s" has been published after "%s", don\'t upload it.\n',
+          videoInfo.title, formatDate(program[ 'until' ]));
+        return res();
+      }
+    }
+
     const result = await searchVideoWithSort(url, videoInfo.title, '-match')
 
     console.log('############################################################\n')
@@ -342,3 +359,20 @@ async function getAccessTokenOrDie (url: string, user: UserInfo) {
     process.exit(-1)
   }
 }
+
+function parseDate (dateAsStr: string): Date {
+  if (!/\d{4}-\d{2}-\d{2}/.test(dateAsStr)) {
+    console.error(`Invalid date passed: ${dateAsStr}. Expected format: YYYY-MM-DD. See help for usage.`);
+    process.exit(-1);
+  }
+  const date = new Date(dateAsStr);
+  if (isNaN(date.getTime())) {
+    console.error(`Invalid date passed: ${dateAsStr}. See help for usage.`);
+    process.exit(-1);
+  }
+  return date;
+}
+
+function formatDate (date: Date): string {
+  return date.toISOString().split('T')[0];
+}