]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tools/import-videos.ts
Add tests for publishedAt
[github/Chocobozzz/PeerTube.git] / server / tools / import-videos.ts
CommitLineData
27d56b54
C
1// FIXME: https://github.com/nodejs/node/pull/16853
2require('tls').DEFAULT_ECDH_CURVE = 'auto'
3
a7fea183 4import * as program from 'commander'
a7fea183 5import { join } from 'path'
a7fea183
C
6import * as youtubeDL from 'youtube-dl'
7import { VideoPrivacy } from '../../shared/models/videos'
8import { unlinkPromise } from '../helpers/core-utils'
1d791a26 9import { doRequestAndSaveToFile } from '../helpers/requests'
34cbef8c 10import { CONSTRAINTS_FIELDS } from '../initializers'
a7fea183 11import { getClient, getVideoCategories, login, searchVideo, uploadVideo } from '../tests/utils'
45b8a42c 12import { truncate } from 'lodash'
a7fea183
C
13
14program
15 .option('-u, --url <url>', 'Server url')
16 .option('-U, --username <username>', 'Username')
17 .option('-p, --password <token>', 'Password')
61b3e146 18 .option('-t, --target-url <targetUrl>', 'Video target URL')
34cbef8c 19 .option('-l, --language <languageCode>', 'Language code')
61b3e146 20 .option('-v, --verbose', 'Verbose mode')
a7fea183
C
21 .parse(process.argv)
22
23if (
24 !program['url'] ||
25 !program['username'] ||
26 !program['password'] ||
61b3e146 27 !program['targetUrl']
a7fea183 28) {
a87d467a
C
29 console.error('All arguments are required.')
30 process.exit(-1)
a7fea183
C
31}
32
33run().catch(err => console.error(err))
34
35let accessToken: string
61b3e146
C
36let client: { id: string, secret: string }
37
38const user = {
39 username: program['username'],
40 password: program['password']
41}
42
34cbef8c
C
43const processOptions = {
44 cwd: __dirname,
45 maxBuffer: Infinity
46}
a7fea183
C
47
48async function run () {
49 const res = await getClient(program['url'])
61b3e146 50 client = {
a7fea183
C
51 id: res.body.client_id,
52 secret: res.body.client_secret
53 }
54
a7fea183
C
55 const res2 = await login(program['url'], client, user)
56 accessToken = res2.body.access_token
57
5f26c735 58 const options = [ '-j', '--flat-playlist', '--playlist-reverse' ]
61b3e146 59 youtubeDL.getInfo(program['targetUrl'], options, processOptions, async (err, info) => {
f5b611f9 60 if (err) {
5c5638a0
O
61 console.log(err.message)
62 process.exit(1)
f5b611f9 63 }
a7fea183 64
61b3e146 65 let infoArray: any[]
a7fea183 66
61b3e146
C
67 // Normalize utf8 fields
68 if (Array.isArray(info) === true) {
69 infoArray = info.map(i => normalizeObject(i))
70 } else {
71 infoArray = [ normalizeObject(info) ]
72 }
73 console.log('Will download and upload %d videos.\n', infoArray.length)
a7fea183 74
61b3e146
C
75 for (const info of infoArray) {
76 await processVideo(info, program['language'])
a7fea183
C
77 }
78
61b3e146 79 console.log('I\'m finished!')
a7fea183
C
80 process.exit(0)
81 })
82}
83
61b3e146 84function processVideo (info: any, languageCode: number) {
a7fea183 85 return new Promise(async res => {
61b3e146
C
86 if (program['verbose']) console.log('Fetching object.', info)
87
88 const videoInfo = await fetchObject(info)
89 if (program['verbose']) console.log('Fetched object.', videoInfo)
90
91 const result = await searchVideo(program['url'], videoInfo.title)
e7872038
C
92
93 console.log('############################################################\n')
94
61b3e146
C
95 if (result.body.data.find(v => v.name === videoInfo.title)) {
96 console.log('Video "%s" already exists, don\'t reupload it.\n', videoInfo.title)
a7fea183
C
97 return res()
98 }
99
e7872038 100 const path = join(__dirname, new Date().getTime() + '.mp4')
a7fea183 101
61b3e146 102 console.log('Downloading video "%s"...', videoInfo.title)
a7fea183 103
61b3e146 104 const options = [ '-f', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best', '-o', path ]
f97d2992 105 try {
106 youtubeDL.exec(videoInfo.url, options, processOptions, async (err, output) => {
107 if (err) {
108 console.error(err)
109 return res()
110 }
111
112 console.log(output.join('\n'))
113 await uploadVideoOnPeerTube(normalizeObject(videoInfo), path, languageCode)
114 return res()
115 })
116 } catch (err) {
117 console.log(err.message)
61b3e146 118 return res()
f97d2992 119 }
a7fea183
C
120 })
121}
122
61b3e146 123async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, language?: number) {
a7fea183
C
124 const category = await getCategory(videoInfo.categories)
125 const licence = getLicence(videoInfo.license)
34cbef8c
C
126 let tags = []
127 if (Array.isArray(videoInfo.tags)) {
02988fdc 128 tags = videoInfo.tags
a41e183c 129 .filter(t => t.length < CONSTRAINTS_FIELDS.VIDEOS.TAG.max && t.length > CONSTRAINTS_FIELDS.VIDEOS.TAG.min)
02988fdc
C
130 .map(t => t.normalize())
131 .slice(0, 5)
34cbef8c 132 }
a7fea183 133
1d791a26
C
134 let thumbnailfile
135 if (videoInfo.thumbnail) {
136 thumbnailfile = join(__dirname, 'thumbnail.jpg')
137
138 await doRequestAndSaveToFile({
139 method: 'GET',
140 uri: videoInfo.thumbnail
141 }, thumbnailfile)
142 }
143
a7fea183 144 const videoAttributes = {
45b8a42c
RK
145 name: truncate(videoInfo.title, {
146 'length': CONSTRAINTS_FIELDS.VIDEOS.NAME.max,
147 'separator': /,? +/,
148 'omission': ' […]'
149 }),
a7fea183
C
150 category,
151 licence,
152 language,
a41e183c 153 nsfw: isNSFW(videoInfo),
a7fea183 154 commentsEnabled: true,
27d56b54 155 description: videoInfo.description || undefined,
f40411a6 156 support: undefined,
34cbef8c 157 tags,
a7fea183 158 privacy: VideoPrivacy.PUBLIC,
1d791a26 159 fixture: videoPath,
8cac1b64
C
160 thumbnailfile,
161 previewfile: thumbnailfile
a7fea183
C
162 }
163
164 console.log('\nUploading on PeerTube video "%s".', videoAttributes.name)
71578f31
L
165 try {
166 await uploadVideo(program['url'], accessToken, videoAttributes)
61b3e146 167 } catch (err) {
b6fe1f98 168 if (err.message.indexOf('401') !== -1) {
61b3e146
C
169 console.log('Got 401 Unauthorized, token may have expired, renewing token and retry.')
170
171 const res = await login(program['url'], client, user)
172 accessToken = res.body.access_token
173
71578f31 174 await uploadVideo(program['url'], accessToken, videoAttributes)
61b3e146 175 } else {
5c5638a0
O
176 console.log(err.message)
177 process.exit(1)
71578f31
L
178 }
179 }
1d791a26 180
a7fea183 181 await unlinkPromise(videoPath)
1d791a26
C
182 if (thumbnailfile) {
183 await unlinkPromise(thumbnailfile)
184 }
185
a7fea183
C
186 console.log('Uploaded video "%s"!\n', videoAttributes.name)
187}
188
189async function getCategory (categories: string[]) {
61b3e146
C
190 if (!categories) return undefined
191
a7fea183
C
192 const categoryString = categories[0]
193
194 if (categoryString === 'News & Politics') return 11
195
196 const res = await getVideoCategories(program['url'])
197 const categoriesServer = res.body
198
199 for (const key of Object.keys(categoriesServer)) {
200 const categoryServer = categoriesServer[key]
201 if (categoryString.toLowerCase() === categoryServer.toLowerCase()) return parseInt(key, 10)
202 }
203
204 return undefined
205}
206
207function getLicence (licence: string) {
61b3e146
C
208 if (!licence) return undefined
209
a7fea183
C
210 if (licence.indexOf('Creative Commons Attribution licence') !== -1) return 1
211
212 return undefined
213}
e7872038
C
214
215function normalizeObject (obj: any) {
216 const newObj: any = {}
217
218 for (const key of Object.keys(obj)) {
219 // Deprecated key
220 if (key === 'resolution') continue
221
222 const value = obj[key]
223
224 if (typeof value === 'string') {
225 newObj[key] = value.normalize()
226 } else {
227 newObj[key] = value
228 }
229 }
230
231 return newObj
232}
61b3e146
C
233
234function fetchObject (info: any) {
235 const url = buildUrl(info)
236
237 return new Promise<any>(async (res, rej) => {
238 youtubeDL.getInfo(url, undefined, processOptions, async (err, videoInfo) => {
239 if (err) return rej(err)
240
241 const videoInfoWithUrl = Object.assign(videoInfo, { url })
242 return res(normalizeObject(videoInfoWithUrl))
243 })
244 })
245}
246
247function buildUrl (info: any) {
a41e183c
C
248 const webpageUrl = info.webpage_url as string
249 if (webpageUrl && webpageUrl.match(/^https?:\/\//)) return webpageUrl
250
61b3e146 251 const url = info.url as string
a41e183c 252 if (url && url.match(/^https?:\/\//)) return url
61b3e146
C
253
254 // It seems youtube-dl does not return the video url
255 return 'https://www.youtube.com/watch?v=' + info.id
256}
a41e183c
C
257
258function isNSFW (info: any) {
259 if (info.age_limit && info.age_limit >= 16) return true
260
261 return false
262}