aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools/upload.ts
blob: db59bbdffa9e424bd2bef9c631cd261136135818 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import * as program from 'commander'
import { access, constants } from 'fs'
import { isAbsolute } from 'path'
import { promisify } from 'util'

const accessPromise = promisify(access)

import { uploadVideo } from '../tests/utils/index'

program
  .option('-u, --url <url>', 'Server url')
  .option('-a, --access-token <token>', 'Access token')
  .option('-n, --name <name>', 'Video name')
  .option('-N, --nsfw', 'Video is Not Safe For Work')
  .option('-c, --category <category number>', 'Category number')
  .option('-l, --licence <licence number>', 'Licence number')
  .option('-L, --language <language number>', 'Language number')
  .option('-d, --description <description>', 'Video description')
  .option('-t, --tags <tags>', 'Video tags', list)
  .option('-f, --file <file>', 'Video absolute file path')
  .parse(process.argv)

if (!program['tags']) program['tags'] = []
if (!program['nsfw']) program['nsfw'] = false

if (
  !program['url'] ||
  !program['accessToken'] ||
  !program['name'] ||
  !program['category'] ||
  !program['licence'] ||
  !program['description'] ||
  !program['file']
) {
  throw new Error('All arguments but tags, language and nsfw are required.')
}

if (isAbsolute(program['file']) === false) {
  throw new Error('File path should be absolute.')
}

accessPromise(program['file'], constants.F_OK)
  .then(() => {
    return upload(
      program['url'],
      program['accessToken'],
      program['name'],
      program['category'],
      program['licence'],
      program['language'],
      program['nsfw'],
      program['description'],
      program['tags'],
      program['file']
    )
  })
  .then(() => process.exit(0))
  .catch(err => {
    console.error(err)
    process.exit(-1)
  })

// ----------------------------------------------------------------------------

function list (val) {
  return val.split(',')
}

function upload (url, accessToken, name, category, licence, language, nsfw, description, tags, fixture) {
  console.log('Uploading %s video...', program['name'])

  const videoAttributes = {
    name,
    category,
    licence,
    language,
    nsfw,
    description,
    tags,
    fixture
  }
  return uploadVideo(url, accessToken, videoAttributes).then(() => {
    console.log(`Video ${name} uploaded.`)
  })
}