diff options
Diffstat (limited to 'server/tools')
-rw-r--r-- | server/tools/import-videos.ts | 8 | ||||
-rw-r--r-- | server/tools/upload.ts | 5 |
2 files changed, 4 insertions, 9 deletions
diff --git a/server/tools/import-videos.ts b/server/tools/import-videos.ts index e49fbb2f5..812600f8b 100644 --- a/server/tools/import-videos.ts +++ b/server/tools/import-videos.ts | |||
@@ -5,12 +5,12 @@ import * as program from 'commander' | |||
5 | import { join } from 'path' | 5 | import { join } from 'path' |
6 | import * as youtubeDL from 'youtube-dl' | 6 | import * as youtubeDL from 'youtube-dl' |
7 | import { VideoPrivacy } from '../../shared/models/videos' | 7 | import { VideoPrivacy } from '../../shared/models/videos' |
8 | import { unlinkPromise } from '../helpers/core-utils' | ||
9 | import { doRequestAndSaveToFile } from '../helpers/requests' | 8 | import { doRequestAndSaveToFile } from '../helpers/requests' |
10 | import { CONSTRAINTS_FIELDS } from '../initializers' | 9 | import { CONSTRAINTS_FIELDS } from '../initializers' |
11 | import { getClient, getVideoCategories, login, searchVideo, uploadVideo } from '../tests/utils' | 10 | import { getClient, getVideoCategories, login, searchVideo, uploadVideo } from '../tests/utils' |
12 | import { truncate } from 'lodash' | 11 | import { truncate } from 'lodash' |
13 | import * as prompt from 'prompt' | 12 | import * as prompt from 'prompt' |
13 | import { remove } from 'fs-extra' | ||
14 | 14 | ||
15 | program | 15 | program |
16 | .option('-u, --url <url>', 'Server url') | 16 | .option('-u, --url <url>', 'Server url') |
@@ -204,10 +204,8 @@ async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, languag | |||
204 | } | 204 | } |
205 | } | 205 | } |
206 | 206 | ||
207 | await unlinkPromise(videoPath) | 207 | await remove(videoPath) |
208 | if (thumbnailfile) { | 208 | if (thumbnailfile) await remove(thumbnailfile) |
209 | await unlinkPromise(thumbnailfile) | ||
210 | } | ||
211 | 209 | ||
212 | console.log('Uploaded video "%s"!\n', videoAttributes.name) | 210 | console.log('Uploaded video "%s"!\n', videoAttributes.name) |
213 | } | 211 | } |
diff --git a/server/tools/upload.ts b/server/tools/upload.ts index b5630bb9c..796a0f723 100644 --- a/server/tools/upload.ts +++ b/server/tools/upload.ts | |||
@@ -1,13 +1,10 @@ | |||
1 | import * as program from 'commander' | 1 | import * as program from 'commander' |
2 | import { access, constants } from 'fs-extra' | 2 | import { access, constants } from 'fs-extra' |
3 | import { isAbsolute } from 'path' | 3 | import { isAbsolute } from 'path' |
4 | import { promisify } from 'util' | ||
5 | import { getClient, login } from '../tests/utils' | 4 | import { getClient, login } from '../tests/utils' |
6 | import { uploadVideo } from '../tests/utils/index' | 5 | import { uploadVideo } from '../tests/utils/index' |
7 | import { VideoPrivacy } from '../../shared/models/videos' | 6 | import { VideoPrivacy } from '../../shared/models/videos' |
8 | 7 | ||
9 | const accessPromise = promisify(access) | ||
10 | |||
11 | program | 8 | program |
12 | .option('-u, --url <url>', 'Server url') | 9 | .option('-u, --url <url>', 'Server url') |
13 | .option('-U, --username <username>', 'Username') | 10 | .option('-U, --username <username>', 'Username') |
@@ -68,7 +65,7 @@ async function run () { | |||
68 | const res2 = await login(program[ 'url' ], client, user) | 65 | const res2 = await login(program[ 'url' ], client, user) |
69 | const accessToken = res2.body.access_token | 66 | const accessToken = res2.body.access_token |
70 | 67 | ||
71 | await accessPromise(program[ 'file' ], constants.F_OK) | 68 | await access(program[ 'file' ], constants.F_OK) |
72 | 69 | ||
73 | console.log('Uploading %s video...', program[ 'videoName' ]) | 70 | console.log('Uploading %s video...', program[ 'videoName' ]) |
74 | 71 | ||