]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tools/import-videos.ts
Add privacy setting to upload.js cli (#422)
[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 youtubeDL.exec(videoInfo.url, options, processOptions, async (err, output) => {
107 if (err) return console.error(err)
108
109 console.log(output.join('\n'))
110
111 await uploadVideoOnPeerTube(normalizeObject(videoInfo), path, languageCode)
112
113 return res()
114 })
115 })
116 }
117
118 async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, language?: number) {
119 const category = await getCategory(videoInfo.categories)
120 const licence = getLicence(videoInfo.license)
121 let tags = []
122 if (Array.isArray(videoInfo.tags)) {
123 tags = videoInfo.tags
124 .filter(t => t.length < CONSTRAINTS_FIELDS.VIDEOS.TAG.max && t.length > CONSTRAINTS_FIELDS.VIDEOS.TAG.min)
125 .map(t => t.normalize())
126 .slice(0, 5)
127 }
128
129 let thumbnailfile
130 if (videoInfo.thumbnail) {
131 thumbnailfile = join(__dirname, 'thumbnail.jpg')
132
133 await doRequestAndSaveToFile({
134 method: 'GET',
135 uri: videoInfo.thumbnail
136 }, thumbnailfile)
137 }
138
139 const videoAttributes = {
140 name: truncate(videoInfo.title, {
141 'length': CONSTRAINTS_FIELDS.VIDEOS.NAME.max,
142 'separator': /,? +/,
143 'omission': ' […]'
144 }),
145 category,
146 licence,
147 language,
148 nsfw: isNSFW(videoInfo),
149 commentsEnabled: true,
150 description: videoInfo.description || undefined,
151 support: undefined,
152 tags,
153 privacy: VideoPrivacy.PUBLIC,
154 fixture: videoPath,
155 thumbnailfile,
156 previewfile: thumbnailfile
157 }
158
159 console.log('\nUploading on PeerTube video "%s".', videoAttributes.name)
160 try {
161 await uploadVideo(program['url'], accessToken, videoAttributes)
162 } catch (err) {
163 if (err.message.indexOf('401') !== -1) {
164 console.log('Got 401 Unauthorized, token may have expired, renewing token and retry.')
165
166 const res = await login(program['url'], client, user)
167 accessToken = res.body.access_token
168
169 await uploadVideo(program['url'], accessToken, videoAttributes)
170 } else {
171 console.log(err.message)
172 process.exit(1)
173 }
174 }
175
176 await unlinkPromise(videoPath)
177 if (thumbnailfile) {
178 await unlinkPromise(thumbnailfile)
179 }
180
181 console.log('Uploaded video "%s"!\n', videoAttributes.name)
182 }
183
184 async function getCategory (categories: string[]) {
185 if (!categories) return undefined
186
187 const categoryString = categories[0]
188
189 if (categoryString === 'News & Politics') return 11
190
191 const res = await getVideoCategories(program['url'])
192 const categoriesServer = res.body
193
194 for (const key of Object.keys(categoriesServer)) {
195 const categoryServer = categoriesServer[key]
196 if (categoryString.toLowerCase() === categoryServer.toLowerCase()) return parseInt(key, 10)
197 }
198
199 return undefined
200 }
201
202 function getLicence (licence: string) {
203 if (!licence) return undefined
204
205 if (licence.indexOf('Creative Commons Attribution licence') !== -1) return 1
206
207 return undefined
208 }
209
210 function normalizeObject (obj: any) {
211 const newObj: any = {}
212
213 for (const key of Object.keys(obj)) {
214 // Deprecated key
215 if (key === 'resolution') continue
216
217 const value = obj[key]
218
219 if (typeof value === 'string') {
220 newObj[key] = value.normalize()
221 } else {
222 newObj[key] = value
223 }
224 }
225
226 return newObj
227 }
228
229 function fetchObject (info: any) {
230 const url = buildUrl(info)
231
232 return new Promise<any>(async (res, rej) => {
233 youtubeDL.getInfo(url, undefined, processOptions, async (err, videoInfo) => {
234 if (err) return rej(err)
235
236 const videoInfoWithUrl = Object.assign(videoInfo, { url })
237 return res(normalizeObject(videoInfoWithUrl))
238 })
239 })
240 }
241
242 function buildUrl (info: any) {
243 const webpageUrl = info.webpage_url as string
244 if (webpageUrl && webpageUrl.match(/^https?:\/\//)) return webpageUrl
245
246 const url = info.url as string
247 if (url && url.match(/^https?:\/\//)) return url
248
249 // It seems youtube-dl does not return the video url
250 return 'https://www.youtube.com/watch?v=' + info.id
251 }
252
253 function isNSFW (info: any) {
254 if (info.age_limit && info.age_limit >= 16) return true
255
256 return false
257 }