2016-06-24 17:42:51 +02:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const config = require('config')
|
2016-07-26 22:30:46 +02:00
|
|
|
const createTorrent = require('create-torrent')
|
2016-06-24 17:42:51 +02:00
|
|
|
const ffmpeg = require('fluent-ffmpeg')
|
|
|
|
const fs = require('fs')
|
2016-07-18 17:17:52 +02:00
|
|
|
const parallel = require('async/parallel')
|
2016-07-26 22:30:46 +02:00
|
|
|
const parseTorrent = require('parse-torrent')
|
2016-06-24 17:42:51 +02:00
|
|
|
const pathUtils = require('path')
|
2016-07-26 22:30:46 +02:00
|
|
|
const magnet = require('magnet-uri')
|
2016-06-24 17:42:51 +02:00
|
|
|
const mongoose = require('mongoose')
|
|
|
|
|
|
|
|
const constants = require('../initializers/constants')
|
2016-07-31 20:58:43 +02:00
|
|
|
const customVideosValidators = require('../helpers/custom-validators').videos
|
2016-06-24 17:42:51 +02:00
|
|
|
const logger = require('../helpers/logger')
|
2016-08-16 21:51:04 +02:00
|
|
|
const modelUtils = require('./utils')
|
2016-06-24 17:42:51 +02:00
|
|
|
const utils = require('../helpers/utils')
|
|
|
|
|
|
|
|
const http = config.get('webserver.https') === true ? 'https' : 'http'
|
|
|
|
const host = config.get('webserver.host')
|
|
|
|
const port = config.get('webserver.port')
|
|
|
|
const uploadsDir = pathUtils.join(__dirname, '..', '..', config.get('storage.uploads'))
|
|
|
|
const thumbnailsDir = pathUtils.join(__dirname, '..', '..', config.get('storage.thumbnails'))
|
2016-07-26 22:30:46 +02:00
|
|
|
const torrentsDir = pathUtils.join(__dirname, '..', '..', config.get('storage.torrents'))
|
|
|
|
const webseedBaseUrl = http + '://' + host + ':' + port + constants.STATIC_PATHS.WEBSEED
|
2016-06-24 17:42:51 +02:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// TODO: add indexes on searchable columns
|
|
|
|
const VideoSchema = mongoose.Schema({
|
|
|
|
name: String,
|
2016-06-28 20:19:41 +02:00
|
|
|
filename: String,
|
2016-06-24 17:42:51 +02:00
|
|
|
description: String,
|
|
|
|
magnetUri: String,
|
|
|
|
podUrl: String,
|
|
|
|
author: String,
|
|
|
|
duration: Number,
|
|
|
|
thumbnail: String,
|
|
|
|
tags: [ String ],
|
|
|
|
createdDate: {
|
|
|
|
type: Date,
|
|
|
|
default: Date.now
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-07-31 20:58:43 +02:00
|
|
|
VideoSchema.path('name').validate(customVideosValidators.isVideoNameValid)
|
|
|
|
VideoSchema.path('description').validate(customVideosValidators.isVideoDescriptionValid)
|
|
|
|
VideoSchema.path('magnetUri').validate(customVideosValidators.isVideoMagnetUriValid)
|
|
|
|
VideoSchema.path('podUrl').validate(customVideosValidators.isVideoPodUrlValid)
|
|
|
|
VideoSchema.path('author').validate(customVideosValidators.isVideoAuthorValid)
|
|
|
|
VideoSchema.path('duration').validate(customVideosValidators.isVideoDurationValid)
|
2016-06-24 17:42:51 +02:00
|
|
|
// The tumbnail can be the path or the data in base 64
|
|
|
|
// The pre save hook will convert the base 64 data in a file on disk and replace the thumbnail key by the filename
|
|
|
|
VideoSchema.path('thumbnail').validate(function (value) {
|
2016-07-31 20:58:43 +02:00
|
|
|
return customVideosValidators.isVideoThumbnailValid(value) || customVideosValidators.isVideoThumbnail64Valid(value)
|
2016-06-24 17:42:51 +02:00
|
|
|
})
|
2016-07-31 20:58:43 +02:00
|
|
|
VideoSchema.path('tags').validate(customVideosValidators.isVideoTagsValid)
|
2016-06-24 17:42:51 +02:00
|
|
|
|
|
|
|
VideoSchema.methods = {
|
2016-10-02 12:19:02 +02:00
|
|
|
isOwned,
|
|
|
|
toFormatedJSON,
|
|
|
|
toRemoteJSON
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VideoSchema.statics = {
|
2016-10-02 12:19:02 +02:00
|
|
|
getDurationFromFile,
|
|
|
|
listForApi,
|
|
|
|
listByUrlAndMagnet,
|
|
|
|
listByUrls,
|
|
|
|
listOwned,
|
|
|
|
listOwnedByAuthor,
|
|
|
|
listRemotes,
|
|
|
|
load,
|
2016-10-02 15:39:09 +02:00
|
|
|
search
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VideoSchema.pre('remove', function (next) {
|
|
|
|
const video = this
|
|
|
|
const tasks = []
|
|
|
|
|
|
|
|
tasks.push(
|
|
|
|
function (callback) {
|
|
|
|
removeThumbnail(video, callback)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
if (video.isOwned()) {
|
|
|
|
tasks.push(
|
|
|
|
function (callback) {
|
|
|
|
removeFile(video, callback)
|
|
|
|
},
|
|
|
|
function (callback) {
|
|
|
|
removeTorrent(video, callback)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
parallel(tasks, next)
|
2016-06-24 17:42:51 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
VideoSchema.pre('save', function (next) {
|
|
|
|
const video = this
|
|
|
|
const tasks = []
|
|
|
|
|
|
|
|
if (video.isOwned()) {
|
2016-08-19 21:34:51 +02:00
|
|
|
const videoPath = pathUtils.join(constants.CONFIG.STORAGE.UPLOAD_DIR, video.filename)
|
|
|
|
this.podUrl = constants.CONFIG.WEBSERVER.URL
|
2016-06-24 17:42:51 +02:00
|
|
|
|
|
|
|
tasks.push(
|
2016-07-26 22:30:46 +02:00
|
|
|
// TODO: refractoring
|
2016-06-24 17:42:51 +02:00
|
|
|
function (callback) {
|
2016-07-26 22:30:46 +02:00
|
|
|
createTorrent(videoPath, { announceList: [ [ 'ws://' + host + ':' + port + '/tracker/socket' ] ], urlList: [ webseedBaseUrl + video.filename ] }, function (err, torrent) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
fs.writeFile(torrentsDir + video.filename + '.torrent', torrent, function (err) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
const parsedTorrent = parseTorrent(torrent)
|
|
|
|
parsedTorrent.xs = video.podUrl + constants.STATIC_PATHS.TORRENTS + video.filename + '.torrent'
|
|
|
|
video.magnetUri = magnet.encode(parsedTorrent)
|
|
|
|
|
|
|
|
callback(null)
|
|
|
|
})
|
|
|
|
})
|
2016-06-24 17:42:51 +02:00
|
|
|
},
|
|
|
|
function (callback) {
|
|
|
|
createThumbnail(videoPath, callback)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
parallel(tasks, function (err, results) {
|
2016-06-24 17:42:51 +02:00
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
video.thumbnail = results[1]
|
|
|
|
|
|
|
|
return next()
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
generateThumbnailFromBase64(video.thumbnail, function (err, thumbnailName) {
|
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
video.thumbnail = thumbnailName
|
|
|
|
|
|
|
|
return next()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
mongoose.model('Video', VideoSchema)
|
|
|
|
|
|
|
|
// ------------------------------ METHODS ------------------------------
|
|
|
|
|
|
|
|
function isOwned () {
|
2016-06-28 20:19:41 +02:00
|
|
|
return this.filename !== null
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function toFormatedJSON () {
|
|
|
|
const json = {
|
|
|
|
id: this._id,
|
|
|
|
name: this.name,
|
|
|
|
description: this.description,
|
|
|
|
podUrl: this.podUrl.replace(/^https?:\/\//, ''),
|
|
|
|
isLocal: this.isOwned(),
|
|
|
|
magnetUri: this.magnetUri,
|
|
|
|
author: this.author,
|
|
|
|
duration: this.duration,
|
|
|
|
tags: this.tags,
|
2016-07-26 22:30:46 +02:00
|
|
|
thumbnailPath: constants.STATIC_PATHS.THUMBNAILS + '/' + this.thumbnail,
|
2016-06-24 17:42:51 +02:00
|
|
|
createdDate: this.createdDate
|
|
|
|
}
|
|
|
|
|
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
|
|
|
function toRemoteJSON (callback) {
|
|
|
|
const self = this
|
|
|
|
|
|
|
|
// Convert thumbnail to base64
|
2016-08-19 21:34:51 +02:00
|
|
|
fs.readFile(pathUtils.join(constants.CONFIG.STORAGE.THUMBNAILS_DIR, this.thumbnail), function (err, thumbnailData) {
|
2016-06-24 17:42:51 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot read the thumbnail of the video')
|
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
const remoteVideo = {
|
|
|
|
name: self.name,
|
|
|
|
description: self.description,
|
|
|
|
magnetUri: self.magnetUri,
|
2016-06-28 20:19:41 +02:00
|
|
|
filename: null,
|
2016-06-24 17:42:51 +02:00
|
|
|
author: self.author,
|
|
|
|
duration: self.duration,
|
|
|
|
thumbnailBase64: new Buffer(thumbnailData).toString('base64'),
|
|
|
|
tags: self.tags,
|
|
|
|
createdDate: self.createdDate,
|
|
|
|
podUrl: self.podUrl
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, remoteVideo)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
|
|
|
|
function getDurationFromFile (videoPath, callback) {
|
|
|
|
ffmpeg.ffprobe(videoPath, function (err, metadata) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, Math.floor(metadata.format.duration))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-16 21:51:04 +02:00
|
|
|
function listForApi (start, count, sort, callback) {
|
2016-06-24 17:42:51 +02:00
|
|
|
const query = {}
|
2016-08-16 22:31:45 +02:00
|
|
|
return modelUtils.listForApiWithCount.call(this, query, start, count, sort, callback)
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function listByUrlAndMagnet (fromUrl, magnetUri, callback) {
|
|
|
|
this.find({ podUrl: fromUrl, magnetUri: magnetUri }, callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function listByUrls (fromUrls, callback) {
|
|
|
|
this.find({ podUrl: { $in: fromUrls } }, callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function listOwned (callback) {
|
2016-06-28 20:19:41 +02:00
|
|
|
// If filename is not null this is *our* video
|
|
|
|
this.find({ filename: { $ne: null } }, callback)
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 22:32:36 +02:00
|
|
|
function listOwnedByAuthor (author, callback) {
|
|
|
|
this.find({ filename: { $ne: null }, author: author }, callback)
|
|
|
|
}
|
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
function listRemotes (callback) {
|
2016-06-28 20:19:41 +02:00
|
|
|
this.find({ filename: null }, callback)
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function load (id, callback) {
|
|
|
|
this.findById(id, callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function search (value, field, start, count, sort, callback) {
|
|
|
|
const query = {}
|
|
|
|
// Make an exact search with the magnet
|
|
|
|
if (field === 'magnetUri' || field === 'tags') {
|
|
|
|
query[field] = value
|
|
|
|
} else {
|
|
|
|
query[field] = new RegExp(value)
|
|
|
|
}
|
|
|
|
|
2016-08-16 22:31:45 +02:00
|
|
|
modelUtils.listForApiWithCount.call(this, query, start, count, sort, callback)
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function removeThumbnail (video, callback) {
|
2016-08-19 21:34:51 +02:00
|
|
|
fs.unlink(constants.CONFIG.STORAGE.THUMBNAILS_DIR + video.thumbnail, callback)
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeFile (video, callback) {
|
2016-08-19 21:34:51 +02:00
|
|
|
fs.unlink(constants.CONFIG.STORAGE.UPLOAD_DIR + video.filename, callback)
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Maybe the torrent is not seeded, but we catch the error to don't stop the removing process
|
|
|
|
function removeTorrent (video, callback) {
|
2016-07-26 22:30:46 +02:00
|
|
|
fs.unlink(torrentsDir + video.filename + '.torrent')
|
2016-06-24 17:42:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function createThumbnail (videoPath, callback) {
|
|
|
|
const filename = pathUtils.basename(videoPath) + '.jpg'
|
|
|
|
ffmpeg(videoPath)
|
|
|
|
.on('error', callback)
|
|
|
|
.on('end', function () {
|
|
|
|
callback(null, filename)
|
|
|
|
})
|
|
|
|
.thumbnail({
|
|
|
|
count: 1,
|
2016-08-19 21:34:51 +02:00
|
|
|
folder: constants.CONFIG.STORAGE.THUMBNAILS_DIR,
|
2016-06-24 17:42:51 +02:00
|
|
|
size: constants.THUMBNAILS_SIZE,
|
|
|
|
filename: filename
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function generateThumbnailFromBase64 (data, callback) {
|
|
|
|
// Creating the thumbnail for this remote video
|
|
|
|
utils.generateRandomString(16, function (err, randomString) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
const thumbnailName = randomString + '.jpg'
|
2016-08-19 21:34:51 +02:00
|
|
|
fs.writeFile(constants.CONFIG.STORAGE.THUMBNAILS_DIR + thumbnailName, data, { encoding: 'base64' }, function (err) {
|
2016-06-24 17:42:51 +02:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, thumbnailName)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|