]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/initializers/constants.js
Increase the interval for the friends requests
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
index d87a376d321691ee4703fcfa678c47f94b6bba6e..63ac863c148ba887099aeeb36c77854f3062a708 100644 (file)
@@ -6,9 +6,11 @@ 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
-let INTERVAL = 60000
+// Time to wait between requests to the friends (10 min)
+let INTERVAL = 600000
 
+// 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
 
@@ -24,6 +26,16 @@ const PODS_SCORE = {
 // Number of retries we make for the make retry requests (to friends...)
 let REQUEST_RETRIES = 10
 
+// Sortable columns per schema
+const SEARCHABLE_COLUMNS = {
+  VIDEOS: [ 'name', 'magnetUri', 'podUrl', 'author' ]
+}
+
+// Sortable columns per schema
+const SORTABLE_COLUMNS = {
+  VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
+}
+
 // Videos thumbnail size
 const THUMBNAILS_SIZE = '200x110'
 
@@ -44,10 +56,13 @@ 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,
+  SEARCHABLE_COLUMNS: SEARCHABLE_COLUMNS,
+  SORTABLE_COLUMNS: SORTABLE_COLUMNS,
   THUMBNAILS_SIZE: THUMBNAILS_SIZE,
   THUMBNAILS_STATIC_PATH: THUMBNAILS_STATIC_PATH
 }