]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/initializers/constants.js
Update node for travis
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
index 16e50443b5c9bfa3e737c9d764a6b7fb067706bc..4350bb892653ce778ddc2de7dec59ccdd36f51eb 100644 (file)
@@ -1,27 +1,47 @@
 'use strict'
 
 // API version of our pod
-var API_VERSION = 'v1'
+const API_VERSION = 'v1'
 
 // Score a pod has when we create it as a friend
-var FRIEND_BASE_SCORE = 100
+let FRIEND_BASE_SCORE = 100
 
 // Time to wait between requests to the friends
-var INTERVAL = 60000
+let INTERVAL = 60000
+
+// Max length of the author username
+const MAXIMUM_AUTHOR_LENGTH = 20
+// 2 hours maximum for the duration of a video (in seconds)
+let MAXIMUM_VIDEO_DURATION = 7200
+
+// 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
-var PODS_SCORE = {
+const PODS_SCORE = {
   MALUS: -10,
   BONUS: 10
 }
 
 // Number of retries we make for the make retry requests (to friends...)
-var REQUEST_RETRIES = 10
+let REQUEST_RETRIES = 10
+
+// 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'
 
 // Special constants for a test instance
 if (isTestInstance() === true) {
   FRIEND_BASE_SCORE = 20
   INTERVAL = 10000
+  MAXIMUM_VIDEO_DURATION = 14
   REQUEST_RETRIES = 2
 }
 
@@ -31,8 +51,14 @@ module.exports = {
   API_VERSION: API_VERSION,
   FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
   INTERVAL: INTERVAL,
+  MAXIMUM_AUTHOR_LENGTH: MAXIMUM_AUTHOR_LENGTH,
+  MAXIMUM_VIDEO_DURATION: MAXIMUM_VIDEO_DURATION,
+  PAGINATION_COUNT_DEFAULT: PAGINATION_COUNT_DEFAULT,
   PODS_SCORE: PODS_SCORE,
-  REQUEST_RETRIES: REQUEST_RETRIES
+  REQUEST_RETRIES: REQUEST_RETRIES,
+  SORTABLE_COLUMNS: SORTABLE_COLUMNS,
+  THUMBNAILS_SIZE: THUMBNAILS_SIZE,
+  THUMBNAILS_STATIC_PATH: THUMBNAILS_STATIC_PATH
 }
 
 // ---------------------------------------------------------------------------