PeerTube/server/models/videos.js

143 lines
3.4 KiB
JavaScript
Raw Normal View History

'use strict'
2016-03-16 21:29:27 +00:00
const config = require('config')
const mongoose = require('mongoose')
2016-03-16 21:29:27 +00:00
const logger = require('../helpers/logger')
2016-03-16 21:29:27 +00:00
const http = config.get('webserver.https') === true ? 'https' : 'http'
const host = config.get('webserver.host')
const port = config.get('webserver.port')
// ---------------------------------------------------------------------------
2016-03-16 21:29:27 +00:00
const videosSchema = mongoose.Schema({
name: String,
namePath: String,
description: String,
magnetUri: String,
podUrl: String,
2016-05-03 20:41:46 +00:00
author: String,
duration: Number,
thumbnail: String
})
2016-03-16 21:29:27 +00:00
const VideosDB = mongoose.model('videos', videosSchema)
// ---------------------------------------------------------------------------
2016-03-16 21:29:27 +00:00
const Videos = {
add: add,
addRemotes: addRemotes,
get: get,
list: list,
listFromUrl: listFromUrl,
listFromUrls: listFromUrls,
listFromUrlAndMagnets: listFromUrlAndMagnets,
listFromRemotes: listFromRemotes,
listOwned: listOwned,
removeOwned: removeOwned,
removeByIds: removeByIds,
search: search
}
function add (video, callback) {
logger.info('Adding %s video to database.', video.name)
2016-03-16 21:29:27 +00:00
const params = video
params.podUrl = http + '://' + host + ':' + port
VideosDB.create(params, function (err, video) {
if (err) {
logger.error('Cannot insert this video into database.')
return callback(err)
}
callback(null)
2016-02-04 20:10:33 +00:00
})
}
2015-06-09 15:41:40 +00:00
function addRemotes (videos, callback) {
videos.forEach(function (video) {
// Ensure they are remote videos
video.namePath = null
})
VideosDB.create(videos, callback)
}
2016-01-31 10:23:52 +00:00
function get (id, callback) {
VideosDB.findById(id, function (err, video) {
if (err) {
logger.error('Cannot get this video.')
return callback(err)
}
2016-02-04 20:10:33 +00:00
return callback(null, video)
})
}
2016-02-04 20:10:33 +00:00
function list (start, count, callback) {
VideosDB.find({}).skip(start).limit(start + count).exec(function (err, videosList) {
if (err) {
logger.error('Cannot get the list of the videos.')
return callback(err)
}
2016-02-04 20:10:33 +00:00
return callback(null, videosList)
})
}
2016-01-31 10:23:52 +00:00
function listFromUrl (fromUrl, callback) {
VideosDB.find({ podUrl: fromUrl }, callback)
}
function listFromUrls (fromUrls, callback) {
VideosDB.find({ podUrl: { $in: fromUrls } }, callback)
}
function listFromUrlAndMagnets (fromUrl, magnets, callback) {
VideosDB.find({ podUrl: fromUrl, magnetUri: { $in: magnets } }, callback)
}
function listFromRemotes (callback) {
VideosDB.find({ namePath: null }, callback)
}
function listOwned (callback) {
// If namePath is not null this is *our* video
VideosDB.find({ namePath: { $ne: null } }, function (err, videosList) {
if (err) {
logger.error('Cannot get the list of owned videos.')
return callback(err)
}
return callback(null, videosList)
})
}
// Return the video in the callback
function removeOwned (id, callback) {
VideosDB.findByIdAndRemove(id, callback)
}
// Use the magnet Uri because the _id field is not the same on different servers
function removeByIds (ids, callback) {
VideosDB.remove({ _id: { $in: ids } }, callback)
}
2015-06-09 15:41:40 +00:00
function search (name, start, count, callback) {
VideosDB.find({ name: new RegExp(name) }).skip(start).limit(start + count)
.exec(function (err, videos) {
if (err) {
logger.error('Cannot search the videos.')
return callback(err)
}
2015-06-09 15:41:40 +00:00
return callback(null, videos)
})
}
2015-06-09 15:41:40 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
module.exports = Videos