2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-08-19 21:34:51 +02:00
|
|
|
const config = require('config')
|
2016-11-01 18:47:57 +01:00
|
|
|
const maxBy = require('lodash/maxBy')
|
2016-08-19 21:34:51 +02:00
|
|
|
const path = require('path')
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// API version
|
2016-03-16 22:29:27 +01:00
|
|
|
const API_VERSION = 'v1'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// Number of results by default for the pagination
|
|
|
|
const PAGINATION_COUNT_DEFAULT = 15
|
|
|
|
|
|
|
|
// Sortable columns per schema
|
|
|
|
const SEARCHABLE_COLUMNS = {
|
|
|
|
VIDEOS: [ 'name', 'magnetUri', 'podUrl', 'author', 'tags' ]
|
2016-06-30 22:39:08 +02:00
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// Sortable columns per schema
|
|
|
|
const SORTABLE_COLUMNS = {
|
|
|
|
USERS: [ 'username', '-username', 'createdDate', '-createdDate' ],
|
|
|
|
VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-07-20 16:23:58 +02:00
|
|
|
const OAUTH_LIFETIME = {
|
|
|
|
ACCESS_TOKEN: 3600 * 4, // 4 hours
|
|
|
|
REFRESH_TOKEN: 1209600 // 2 weeks
|
|
|
|
}
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-08-25 17:57:37 +02:00
|
|
|
|
2016-08-19 21:34:51 +02:00
|
|
|
const CONFIG = {
|
2016-11-01 19:17:25 +01:00
|
|
|
LISTEN: {
|
|
|
|
PORT: config.get('listen.port')
|
|
|
|
},
|
2016-08-19 21:34:51 +02:00
|
|
|
DATABASE: {
|
|
|
|
DBNAME: 'peertube' + config.get('database.suffix'),
|
2016-10-23 19:41:17 +02:00
|
|
|
HOSTNAME: config.get('database.hostname'),
|
2016-08-19 21:34:51 +02:00
|
|
|
PORT: config.get('database.port')
|
|
|
|
},
|
|
|
|
STORAGE: {
|
|
|
|
CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
|
|
|
|
LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
|
2016-10-21 11:33:31 +02:00
|
|
|
VIDEOS_DIR: path.join(__dirname, '..', '..', config.get('storage.videos')),
|
2016-10-07 11:08:55 +02:00
|
|
|
THUMBNAILS_DIR: path.join(__dirname, '..', '..', config.get('storage.thumbnails')),
|
2016-11-11 11:52:24 +01:00
|
|
|
PREVIEWS_DIR: path.join(__dirname, '..', '..', config.get('storage.previews')),
|
2016-10-07 11:08:55 +02:00
|
|
|
TORRENTS_DIR: path.join(__dirname, '..', '..', config.get('storage.torrents'))
|
2016-08-19 21:34:51 +02:00
|
|
|
},
|
|
|
|
WEBSERVER: {
|
|
|
|
SCHEME: config.get('webserver.https') === true ? 'https' : 'http',
|
2016-10-17 21:10:29 +02:00
|
|
|
WS: config.get('webserver.https') === true ? 'wss' : 'ws',
|
2016-10-23 19:41:17 +02:00
|
|
|
HOSTNAME: config.get('webserver.hostname'),
|
2016-08-19 21:34:51 +02:00
|
|
|
PORT: config.get('webserver.port')
|
|
|
|
}
|
|
|
|
}
|
2016-10-23 19:41:17 +02:00
|
|
|
CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
|
2016-08-19 21:34:51 +02:00
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-07-31 20:58:43 +02:00
|
|
|
const CONSTRAINTS_FIELDS = {
|
|
|
|
USERS: {
|
|
|
|
USERNAME: { min: 3, max: 20 }, // Length
|
|
|
|
PASSWORD: { min: 6, max: 255 } // Length
|
|
|
|
},
|
|
|
|
VIDEOS: {
|
|
|
|
NAME: { min: 3, max: 50 }, // Length
|
|
|
|
DESCRIPTION: { min: 3, max: 250 }, // Length
|
2016-11-11 15:20:03 +01:00
|
|
|
MAGNET: {
|
|
|
|
XT: { min: 10 } // Length
|
|
|
|
},
|
2016-07-31 20:58:43 +02: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 },
|
|
|
|
THUMBNAIL64: { min: 0, max: 20000 } // Bytes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Score a pod has when we create it as a friend
|
2016-06-30 22:39:08 +02:00
|
|
|
const FRIEND_SCORE = {
|
|
|
|
BASE: 100,
|
|
|
|
MAX: 1000
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-09-26 22:36:36 +02:00
|
|
|
const MONGO_MIGRATION_SCRIPTS = [
|
|
|
|
{
|
|
|
|
script: '0005-create-application',
|
|
|
|
version: 5
|
|
|
|
},
|
|
|
|
{
|
|
|
|
script: '0010-users-password',
|
|
|
|
version: 10
|
2016-09-27 22:41:38 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
script: '0015-admin-role',
|
|
|
|
version: 15
|
2016-11-01 18:47:57 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
script: '0020-requests-endpoint',
|
|
|
|
version: 20
|
2016-09-26 22:36:36 +02:00
|
|
|
}
|
|
|
|
]
|
2016-11-01 18:47:57 +01:00
|
|
|
const LAST_MONGO_SCHEMA_VERSION = (maxBy(MONGO_MIGRATION_SCRIPTS, 'version'))['version']
|
2016-09-26 22:36:36 +02:00
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-05-13 20:10:02 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Number of points we add/remove from a friend after a successful/bad request
|
2016-03-16 22:29:27 +01:00
|
|
|
const PODS_SCORE = {
|
2016-02-07 11:23:23 +01:00
|
|
|
MALUS: -10,
|
|
|
|
BONUS: 10
|
|
|
|
}
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// Time to wait between requests to the friends (10 min)
|
|
|
|
let REQUESTS_INTERVAL = 600000
|
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
// Number of requests in parallel we can make
|
|
|
|
const REQUESTS_IN_PARALLEL = 10
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// How many requests we put in request
|
2016-07-06 19:59:01 +02:00
|
|
|
const REQUESTS_LIMIT = 10
|
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
// Number of requests to retry for replay requests module
|
|
|
|
const RETRY_REQUESTS = 5
|
2016-06-06 15:28:33 +02:00
|
|
|
|
2016-11-01 18:47:57 +01:00
|
|
|
const REQUEST_ENDPOINTS = {
|
|
|
|
VIDEOS: 'videos'
|
|
|
|
}
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-07-21 17:15:29 +02:00
|
|
|
|
2016-11-11 15:20:03 +01:00
|
|
|
const REMOTE_SCHEME = {
|
|
|
|
HTTP: 'https',
|
|
|
|
WS: 'WS'
|
|
|
|
}
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// Password encryption
|
|
|
|
const BCRYPT_SALT_SIZE = 10
|
2016-05-17 21:03:00 +02:00
|
|
|
|
2016-07-26 22:30:46 +02:00
|
|
|
// Express static paths (router)
|
|
|
|
const STATIC_PATHS = {
|
2016-11-11 15:20:03 +01:00
|
|
|
PREVIEWS: '/static/previews/',
|
|
|
|
THUMBNAILS: '/static/thumbnails/',
|
2016-07-26 22:30:46 +02:00
|
|
|
TORRENTS: '/static/torrents/',
|
|
|
|
WEBSEED: '/static/webseed/'
|
|
|
|
}
|
|
|
|
|
2016-10-21 12:28:32 +02:00
|
|
|
// Cache control
|
|
|
|
let STATIC_MAX_AGE = '30d'
|
|
|
|
|
2016-05-10 21:19:24 +02:00
|
|
|
// Videos thumbnail size
|
|
|
|
const THUMBNAILS_SIZE = '200x110'
|
2016-11-11 11:52:24 +01:00
|
|
|
const PREVIEWS_SIZE = '640x480'
|
2016-05-10 21:19:24 +02:00
|
|
|
|
2016-08-04 22:32:36 +02:00
|
|
|
const USER_ROLES = {
|
|
|
|
ADMIN: 'admin',
|
|
|
|
USER: 'user'
|
2016-06-06 14:15:03 +02:00
|
|
|
}
|
|
|
|
|
2016-10-02 11:14:08 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Special constants for a test instance
|
|
|
|
if (isTestInstance() === true) {
|
2016-10-02 11:14:08 +02:00
|
|
|
CONSTRAINTS_FIELDS.VIDEOS.DURATION.max = 14
|
2016-06-30 22:39:08 +02:00
|
|
|
FRIEND_SCORE.BASE = 20
|
2016-09-19 21:33:46 +02:00
|
|
|
REQUESTS_INTERVAL = 10000
|
2016-11-11 15:20:03 +01:00
|
|
|
REMOTE_SCHEME.HTTP = 'http'
|
|
|
|
REMOTE_SCHEME.WS = 'ws'
|
2016-10-21 12:28:32 +02:00
|
|
|
STATIC_MAX_AGE = 0
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = {
|
2016-10-02 11:14:08 +02:00
|
|
|
API_VERSION,
|
|
|
|
BCRYPT_SALT_SIZE,
|
|
|
|
CONFIG,
|
|
|
|
CONSTRAINTS_FIELDS,
|
|
|
|
FRIEND_SCORE,
|
|
|
|
LAST_MONGO_SCHEMA_VERSION,
|
|
|
|
MONGO_MIGRATION_SCRIPTS,
|
|
|
|
OAUTH_LIFETIME,
|
|
|
|
PAGINATION_COUNT_DEFAULT,
|
|
|
|
PODS_SCORE,
|
2016-11-11 15:20:03 +01:00
|
|
|
PREVIEWS_SIZE,
|
|
|
|
REMOTE_SCHEME,
|
2016-11-01 18:47:57 +01:00
|
|
|
REQUEST_ENDPOINTS,
|
2016-10-02 11:14:08 +02:00
|
|
|
REQUESTS_IN_PARALLEL,
|
|
|
|
REQUESTS_INTERVAL,
|
|
|
|
REQUESTS_LIMIT,
|
|
|
|
RETRY_REQUESTS,
|
|
|
|
SEARCHABLE_COLUMNS,
|
|
|
|
SORTABLE_COLUMNS,
|
2016-10-21 12:28:32 +02:00
|
|
|
STATIC_MAX_AGE,
|
2016-10-02 15:39:09 +02:00
|
|
|
STATIC_PATHS,
|
2016-10-02 11:14:08 +02:00
|
|
|
THUMBNAILS_SIZE,
|
|
|
|
USER_ROLES
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function isTestInstance () {
|
|
|
|
return (process.env.NODE_ENV === 'test')
|
|
|
|
}
|