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