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