aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.js
blob: caeb340cffffaa7d002979b8a1feb715c032ab23 (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
'use strict'

// API version of our pod
const API_VERSION = 'v1'

// Score a pod has when we create it as a friend
let FRIEND_BASE_SCORE = 100

// Time to wait between requests to the friends (10 min)
let INTERVAL = 600000

// Number of results by default for the pagination
const PAGINATION_COUNT_DEFAULT = 15

// Number of points we add/remove from a friend after a successful/bad request
const PODS_SCORE = {
  MALUS: -10,
  BONUS: 10
}

// Number of requests in parallel we can make
const REQUESTS_IN_PARALLEL = 10

// Number of requests to retry for replay requests module
const RETRY_REQUESTS = 5

// Sortable columns per schema
const SEARCHABLE_COLUMNS = {
  VIDEOS: [ 'name', 'magnetUri', 'podUrl', 'author', 'tags' ]
}

// Sortable columns per schema
const SORTABLE_COLUMNS = {
  VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
}

// Videos thumbnail size
const THUMBNAILS_SIZE = '200x110'

// Path for access to thumbnails with express router
const THUMBNAILS_STATIC_PATH = '/static/thumbnails'

const VIDEOS_CONSTRAINTS_FIELDS = {
  NAME: { min: 3, max: 50 }, // Length
  DESCRIPTION: { min: 3, max: 250 }, // Length
  MAGNET_URI: { min: 10 }, // Length
  DURATION: { min: 1, max: 7200 }, // Number
  AUTHOR: { min: 3, max: 20 }, // Length
  TAGS: { min: 1, max: 3 }, // Number of total tags
  TAG: { min: 2, max: 10 }, // Length
  THUMBNAIL: { min: 0, max: 20000 } // Bytes
}

// Special constants for a test instance
if (isTestInstance() === true) {
  FRIEND_BASE_SCORE = 20
  INTERVAL = 10000
  VIDEOS_CONSTRAINTS_FIELDS.DURATION.max = 14
}

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

module.exports = {
  API_VERSION: API_VERSION,
  FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
  INTERVAL: INTERVAL,
  PAGINATION_COUNT_DEFAULT: PAGINATION_COUNT_DEFAULT,
  PODS_SCORE: PODS_SCORE,
  REQUESTS_IN_PARALLEL: REQUESTS_IN_PARALLEL,
  RETRY_REQUESTS: RETRY_REQUESTS,
  SEARCHABLE_COLUMNS: SEARCHABLE_COLUMNS,
  SORTABLE_COLUMNS: SORTABLE_COLUMNS,
  THUMBNAILS_SIZE: THUMBNAILS_SIZE,
  THUMBNAILS_STATIC_PATH: THUMBNAILS_STATIC_PATH,
  VIDEOS_CONSTRAINTS_FIELDS: VIDEOS_CONSTRAINTS_FIELDS
}

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

function isTestInstance () {
  return (process.env.NODE_ENV === 'test')
}