1
0
Fork 0
peertube/server/initializers/constants.js

270 lines
7.1 KiB
JavaScript
Raw Normal View History

'use strict'
2016-08-19 19:34:51 +00:00
const config = require('config')
const path = require('path')
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
2017-03-08 20:35:43 +00:00
const LAST_MIGRATION_VERSION = 25
2017-02-18 10:56:28 +00:00
// ---------------------------------------------------------------------------
2016-10-02 09:14:08 +00:00
// API version
2016-03-16 21:29:27 +00:00
const API_VERSION = 'v1'
2016-10-02 09:14:08 +00:00
// Number of results by default for the pagination
const PAGINATION_COUNT_DEFAULT = 15
// Sortable columns per schema
const SEARCHABLE_COLUMNS = {
2016-12-11 20:50:51 +00:00
VIDEOS: [ 'name', 'magnetUri', 'host', 'author', 'tags' ]
}
2016-10-02 09:14:08 +00:00
// Sortable columns per schema
const SORTABLE_COLUMNS = {
2017-02-26 18:26:57 +00:00
USERS: [ 'id', 'username', 'createdAt' ],
VIDEO_ABUSES: [ 'id', 'createdAt' ],
2017-03-08 20:52:25 +00:00
VIDEOS: [ 'name', 'duration', 'createdAt', 'views', 'likes' ]
2016-10-02 09:14:08 +00:00
}
2016-07-20 14:23:58 +00:00
const OAUTH_LIFETIME = {
ACCESS_TOKEN: 3600 * 4, // 4 hours
REFRESH_TOKEN: 1209600 // 2 weeks
}
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
2016-08-25 15:57:37 +00:00
2016-08-19 19:34:51 +00:00
const CONFIG = {
LISTEN: {
PORT: config.get('listen.port')
},
2016-08-19 19:34:51 +00:00
DATABASE: {
DBNAME: 'peertube' + config.get('database.suffix'),
HOSTNAME: config.get('database.hostname'),
2016-12-25 08:44:57 +00:00
PORT: config.get('database.port'),
USERNAME: config.get('database.username'),
PASSWORD: config.get('database.password')
2016-08-19 19:34:51 +00:00
},
STORAGE: {
CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
2016-10-21 09:33:31 +00:00
VIDEOS_DIR: path.join(__dirname, '..', '..', config.get('storage.videos')),
THUMBNAILS_DIR: path.join(__dirname, '..', '..', config.get('storage.thumbnails')),
2016-11-11 10:52:24 +00:00
PREVIEWS_DIR: path.join(__dirname, '..', '..', config.get('storage.previews')),
TORRENTS_DIR: path.join(__dirname, '..', '..', config.get('storage.torrents'))
2016-08-19 19:34:51 +00:00
},
WEBSERVER: {
SCHEME: config.get('webserver.https') === true ? 'https' : 'http',
2016-10-17 19:10:29 +00:00
WS: config.get('webserver.https') === true ? 'wss' : 'ws',
HOSTNAME: config.get('webserver.hostname'),
2016-08-19 19:34:51 +00:00
PORT: config.get('webserver.port')
2017-02-16 18:19:56 +00:00
},
ADMIN: {
EMAIL: config.get('admin.email')
2017-03-10 10:32:39 +00:00
},
SIGNUP: {
ENABLED: config.get('signup.enabled')
2016-08-19 19:34:51 +00:00
}
}
CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
CONFIG.WEBSERVER.HOST = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
2016-08-19 19:34:51 +00:00
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
2016-07-31 18:58:43 +00:00
const CONSTRAINTS_FIELDS = {
USERS: {
USERNAME: { min: 3, max: 20 }, // Length
PASSWORD: { min: 6, max: 255 } // Length
},
2017-01-04 19:59:23 +00:00
VIDEO_ABUSES: {
REASON: { min: 2, max: 300 } // Length
},
2016-07-31 18:58:43 +00:00
VIDEOS: {
NAME: { min: 3, max: 50 }, // Length
DESCRIPTION: { min: 3, max: 250 }, // Length
2016-12-11 20:50:51 +00:00
EXTNAME: [ '.mp4', '.ogv', '.webm' ],
2016-12-28 14:49:23 +00:00
INFO_HASH: { min: 40, max: 40 }, // Length, infohash is 20 bytes length but we represent it in hexa so 20 * 2
2016-07-31 18:58:43 +00:00
DURATION: { min: 1, max: 7200 }, // Number
TAGS: { min: 1, max: 3 }, // Number of total tags
TAG: { min: 2, max: 10 }, // Length
THUMBNAIL: { min: 2, max: 30 },
2017-02-26 17:57:33 +00:00
THUMBNAIL_DATA: { min: 0, max: 20000 }, // Bytes
VIEWS: { min: 0 },
LIKES: { min: 0 },
DISLIKES: { min: 0 }
},
VIDEO_EVENTS: {
COUNT: { min: 0 }
2016-07-31 18:58:43 +00:00
}
}
2017-03-08 20:35:43 +00:00
const VIDEO_RATE_TYPES = {
LIKE: 'like',
DISLIKE: 'dislike'
}
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
// Score a pod has when we create it as a friend
const FRIEND_SCORE = {
BASE: 100,
MAX: 1000
}
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
// Number of points we add/remove from a friend after a successful/bad request
2016-03-16 21:29:27 +00:00
const PODS_SCORE = {
MALUS: -10,
BONUS: 10
}
2016-10-02 09:14:08 +00:00
// Time to wait between requests to the friends (10 min)
let REQUESTS_INTERVAL = 600000
// Number of requests in parallel we can make
const REQUESTS_IN_PARALLEL = 10
2017-01-10 21:24:42 +00:00
// To how many pods we send requests
const REQUESTS_LIMIT_PODS = 10
// How many requests we send to a pod per interval
const REQUESTS_LIMIT_PER_POD = 5
const REQUESTS_VIDEO_QADU_LIMIT_PODS = 10
// The QADU requests are not big
const REQUESTS_VIDEO_QADU_LIMIT_PER_POD = 50
2017-02-26 17:57:33 +00:00
const REQUESTS_VIDEO_EVENT_LIMIT_PODS = 10
// The EVENTS requests are not big
const REQUESTS_VIDEO_EVENT_LIMIT_PER_POD = 50
// Number of requests to retry for replay requests module
const RETRY_REQUESTS = 5
2016-11-01 17:47:57 +00:00
const REQUEST_ENDPOINTS = {
2017-03-04 08:48:35 +00:00
VIDEOS: 'videos'
2016-11-01 17:47:57 +00:00
}
2017-03-04 08:48:35 +00:00
const REQUEST_ENDPOINT_ACTIONS = {}
REQUEST_ENDPOINT_ACTIONS[REQUEST_ENDPOINTS.VIDEOS] = {
ADD: 'add',
UPDATE: 'update',
REMOVE: 'remove',
REPORT_ABUSE: 'report-abuse'
}
2016-11-01 17:47:57 +00:00
2017-03-04 08:48:35 +00:00
const REQUEST_VIDEO_QADU_ENDPOINT = 'videos/qadu'
const REQUEST_VIDEO_EVENT_ENDPOINT = 'videos/events'
const REQUEST_VIDEO_QADU_TYPES = {
LIKES: 'likes',
DISLIKES: 'dislikes',
VIEWS: 'views'
}
2017-02-26 17:57:33 +00:00
const REQUEST_VIDEO_EVENT_TYPES = {
LIKES: 'likes',
DISLIKES: 'dislikes',
VIEWS: 'views'
}
2016-11-11 14:20:03 +00:00
const REMOTE_SCHEME = {
HTTP: 'https',
WS: 'wss'
2016-11-11 14:20:03 +00:00
}
// ---------------------------------------------------------------------------
2017-01-17 20:42:47 +00:00
const PRIVATE_CERT_NAME = 'peertube.key.pem'
const PUBLIC_CERT_NAME = 'peertube.pub'
const SIGNATURE_ALGORITHM = 'RSA-SHA256'
const SIGNATURE_ENCODING = 'hex'
2016-10-02 09:14:08 +00:00
// Password encryption
const BCRYPT_SALT_SIZE = 10
2016-05-17 19:03:00 +00:00
// ---------------------------------------------------------------------------
// Express static paths (router)
const STATIC_PATHS = {
2016-11-11 14:20:03 +00:00
PREVIEWS: '/static/previews/',
THUMBNAILS: '/static/thumbnails/',
TORRENTS: '/static/torrents/',
WEBSEED: '/static/webseed/'
}
// Cache control
let STATIC_MAX_AGE = '30d'
// Videos thumbnail size
const THUMBNAILS_SIZE = '200x110'
2016-11-11 10:52:24 +00:00
const PREVIEWS_SIZE = '640x480'
// ---------------------------------------------------------------------------
const USER_ROLES = {
ADMIN: 'admin',
USER: 'user'
2016-06-06 12:15:03 +00:00
}
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
// Special constants for a test instance
if (isTestInstance() === true) {
2016-10-02 09:14:08 +00:00
CONSTRAINTS_FIELDS.VIDEOS.DURATION.max = 14
FRIEND_SCORE.BASE = 20
2016-09-19 19:33:46 +00:00
REQUESTS_INTERVAL = 10000
2016-11-11 14:20:03 +00:00
REMOTE_SCHEME.HTTP = 'http'
REMOTE_SCHEME.WS = 'ws'
STATIC_MAX_AGE = 0
}
// ---------------------------------------------------------------------------
module.exports = {
2016-10-02 09:14:08 +00:00
API_VERSION,
BCRYPT_SALT_SIZE,
CONFIG,
CONSTRAINTS_FIELDS,
FRIEND_SCORE,
2016-12-25 08:44:57 +00:00
LAST_MIGRATION_VERSION,
2016-10-02 09:14:08 +00:00
OAUTH_LIFETIME,
PAGINATION_COUNT_DEFAULT,
PODS_SCORE,
2016-11-11 14:20:03 +00:00
PREVIEWS_SIZE,
2017-01-17 20:42:47 +00:00
PRIVATE_CERT_NAME,
PUBLIC_CERT_NAME,
2016-11-11 14:20:03 +00:00
REMOTE_SCHEME,
REQUEST_ENDPOINT_ACTIONS,
2017-01-17 20:42:47 +00:00
REQUEST_ENDPOINTS,
2017-03-04 08:48:35 +00:00
REQUEST_VIDEO_EVENT_ENDPOINT,
2017-02-26 17:57:33 +00:00
REQUEST_VIDEO_EVENT_TYPES,
2017-03-04 08:48:35 +00:00
REQUEST_VIDEO_QADU_ENDPOINT,
REQUEST_VIDEO_QADU_TYPES,
2016-10-02 09:14:08 +00:00
REQUESTS_IN_PARALLEL,
REQUESTS_INTERVAL,
2017-01-10 21:24:42 +00:00
REQUESTS_LIMIT_PER_POD,
2017-01-17 20:42:47 +00:00
REQUESTS_LIMIT_PODS,
2017-02-26 17:57:33 +00:00
REQUESTS_VIDEO_EVENT_LIMIT_PER_POD,
REQUESTS_VIDEO_EVENT_LIMIT_PODS,
2017-03-04 08:48:35 +00:00
REQUESTS_VIDEO_QADU_LIMIT_PER_POD,
REQUESTS_VIDEO_QADU_LIMIT_PODS,
2016-10-02 09:14:08 +00:00
RETRY_REQUESTS,
SEARCHABLE_COLUMNS,
SIGNATURE_ALGORITHM,
SIGNATURE_ENCODING,
2016-10-02 09:14:08 +00:00
SORTABLE_COLUMNS,
STATIC_MAX_AGE,
STATIC_PATHS,
2016-10-02 09:14:08 +00:00
THUMBNAILS_SIZE,
2017-03-08 20:35:43 +00:00
USER_ROLES,
VIDEO_RATE_TYPES
}
// ---------------------------------------------------------------------------
// This method exists in utils module but we want to let the constants module independent
function isTestInstance () {
return (process.env.NODE_ENV === 'test')
}