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

177 lines
4.6 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
// ---------------------------------------------------------------------------
// 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 = {
VIDEOS: [ 'name', 'magnetUri', 'podUrl', 'author', 'tags' ]
}
2016-10-02 09:14:08 +00:00
// Sortable columns per schema
const SORTABLE_COLUMNS = {
USERS: [ 'username', '-username', 'createdDate', '-createdDate' ],
VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
}
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 = {
DATABASE: {
DBNAME: 'peertube' + config.get('database.suffix'),
HOST: config.get('database.host'),
PORT: config.get('database.port')
},
STORAGE: {
CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
UPLOAD_DIR: path.join(__dirname, '..', '..', config.get('storage.uploads')),
THUMBNAILS_DIR: path.join(__dirname, '..', '..', config.get('storage.thumbnails')),
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',
2016-08-19 19:34:51 +00:00
HOST: config.get('webserver.host'),
PORT: config.get('webserver.port')
}
}
CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOST + ':' + CONFIG.WEBSERVER.PORT
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
},
VIDEOS: {
NAME: { min: 3, max: 50 }, // Length
DESCRIPTION: { min: 3, max: 250 }, // Length
MAGNET_URI: { min: 10 }, // Length
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 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
// ---------------------------------------------------------------------------
const MONGO_MIGRATION_SCRIPTS = [
{
script: '0005-create-application',
version: 5
},
{
script: '0010-users-password',
version: 10
},
{
script: '0015-admin-role',
version: 15
}
]
const LAST_MONGO_SCHEMA_VERSION = 15
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
2016-10-02 09:14:08 +00:00
// How many requests we put in request
const REQUESTS_LIMIT = 10
// Number of requests to retry for replay requests module
const RETRY_REQUESTS = 5
2016-10-02 09:14:08 +00:00
// ---------------------------------------------------------------------------
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 = {
THUMBNAILS: '/static/thumbnails',
TORRENTS: '/static/torrents/',
WEBSEED: '/static/webseed/'
}
// Videos thumbnail size
const THUMBNAILS_SIZE = '200x110'
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
}
// ---------------------------------------------------------------------------
module.exports = {
2016-10-02 09:14:08 +00: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,
REQUESTS_IN_PARALLEL,
REQUESTS_INTERVAL,
REQUESTS_LIMIT,
RETRY_REQUESTS,
SEARCHABLE_COLUMNS,
SORTABLE_COLUMNS,
STATIC_PATHS,
2016-10-02 09:14:08 +00:00
THUMBNAILS_SIZE,
USER_ROLES
}
// ---------------------------------------------------------------------------
function isTestInstance () {
return (process.env.NODE_ENV === 'test')
}