PeerTube/server/models/video.js

648 lines
16 KiB
JavaScript
Raw Normal View History

'use strict'
const Buffer = require('safe-buffer').Buffer
const createTorrent = require('create-torrent')
const ffmpeg = require('fluent-ffmpeg')
const fs = require('fs')
2016-11-11 15:20:03 +01:00
const magnetUtil = require('magnet-uri')
2016-12-24 16:59:17 +01:00
const map = require('lodash/map')
2016-07-18 17:17:52 +02:00
const parallel = require('async/parallel')
const parseTorrent = require('parse-torrent')
const pathUtils = require('path')
2016-12-28 15:49:23 +01:00
const values = require('lodash/values')
const constants = require('../initializers/constants')
const logger = require('../helpers/logger')
const friends = require('../lib/friends')
const modelUtils = require('./utils')
2016-12-28 15:49:23 +01:00
const customVideosValidators = require('../helpers/custom-validators').videos
// ---------------------------------------------------------------------------
2016-12-11 21:50:51 +01:00
module.exports = function (sequelize, DataTypes) {
const Video = sequelize.define('Video',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
2016-12-28 15:49:23 +01:00
primaryKey: true,
validate: {
isUUID: 4
}
},
2016-12-11 21:50:51 +01:00
name: {
2016-12-28 15:49:23 +01:00
type: DataTypes.STRING,
allowNull: false,
validate: {
nameValid: function (value) {
const res = customVideosValidators.isVideoNameValid(value)
if (res === false) throw new Error('Video name is not valid.')
}
}
2016-11-11 11:52:24 +01:00
},
2016-12-11 21:50:51 +01:00
extname: {
2016-12-28 15:49:23 +01:00
type: DataTypes.ENUM(values(constants.CONSTRAINTS_FIELDS.VIDEOS.EXTNAME)),
allowNull: false
2016-12-11 21:50:51 +01:00
},
remoteId: {
2016-12-28 15:49:23 +01:00
type: DataTypes.UUID,
allowNull: true,
validate: {
isUUID: 4
}
2016-12-11 21:50:51 +01:00
},
description: {
2016-12-28 15:49:23 +01:00
type: DataTypes.STRING,
allowNull: false,
validate: {
descriptionValid: function (value) {
const res = customVideosValidators.isVideoDescriptionValid(value)
if (res === false) throw new Error('Video description is not valid.')
}
}
2016-12-11 21:50:51 +01:00
},
infoHash: {
2016-12-28 15:49:23 +01:00
type: DataTypes.STRING,
allowNull: false,
validate: {
infoHashValid: function (value) {
const res = customVideosValidators.isVideoInfoHashValid(value)
if (res === false) throw new Error('Video info hash is not valid.')
}
}
2016-12-11 21:50:51 +01:00
},
duration: {
2016-12-28 15:49:23 +01:00
type: DataTypes.INTEGER,
allowNull: false,
validate: {
durationValid: function (value) {
const res = customVideosValidators.isVideoDurationValid(value)
if (res === false) throw new Error('Video duration is not valid.')
}
}
}
2016-12-11 21:50:51 +01:00
},
{
2016-12-29 09:33:28 +01:00
indexes: [
{
fields: [ 'authorId' ]
},
{
fields: [ 'remoteId' ]
},
{
fields: [ 'name' ]
},
{
fields: [ 'createdAt' ]
},
{
fields: [ 'duration' ]
},
{
fields: [ 'infoHash' ]
}
],
2016-12-11 21:50:51 +01:00
classMethods: {
associate,
generateThumbnailFromData,
2016-12-11 21:50:51 +01:00
getDurationFromFile,
2016-12-25 09:44:57 +01:00
list,
2016-12-11 21:50:51 +01:00
listForApi,
2016-12-24 16:59:17 +01:00
listOwnedAndPopulateAuthorAndTags,
2016-12-11 21:50:51 +01:00
listOwnedByAuthor,
load,
loadByHostAndRemoteId,
2016-12-11 21:50:51 +01:00
loadAndPopulateAuthor,
2016-12-24 16:59:17 +01:00
loadAndPopulateAuthorAndPodAndTags,
searchAndPopulateAuthorAndPodAndTags
2016-12-11 21:50:51 +01:00
},
instanceMethods: {
generateMagnetUri,
getVideoFilename,
getThumbnailName,
getPreviewName,
getTorrentName,
isOwned,
toFormatedJSON,
2016-12-29 19:07:05 +01:00
toAddRemoteJSON,
toUpdateRemoteJSON
2016-12-11 21:50:51 +01:00
},
hooks: {
2016-12-28 15:49:23 +01:00
beforeValidate,
2016-12-11 21:50:51 +01:00
beforeCreate,
afterDestroy
}
}
)
2016-12-11 21:50:51 +01:00
return Video
}
2016-12-28 15:49:23 +01:00
function beforeValidate (video, options, next) {
// Put a fake infoHash if it does not exists yet
if (video.isOwned() && !video.infoHash) {
2016-12-28 15:49:23 +01:00
// 40 hexa length
video.infoHash = '0123456789abcdef0123456789abcdef01234567'
}
return next(null)
}
2016-12-11 21:50:51 +01:00
function beforeCreate (video, options, next) {
const tasks = []
if (video.isOwned()) {
2016-11-11 15:20:03 +01:00
const videoPath = pathUtils.join(constants.CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename())
tasks.push(
2017-01-17 21:42:47 +01:00
function createVideoTorrent (callback) {
2016-10-17 21:10:29 +02:00
const options = {
announceList: [
[ constants.CONFIG.WEBSERVER.WS + '://' + constants.CONFIG.WEBSERVER.HOSTNAME + ':' + constants.CONFIG.WEBSERVER.PORT + '/tracker/socket' ]
2016-10-17 21:10:29 +02:00
],
urlList: [
2016-11-11 15:20:03 +01:00
constants.CONFIG.WEBSERVER.URL + constants.STATIC_PATHS.WEBSEED + video.getVideoFilename()
2016-10-17 21:10:29 +02:00
]
}
createTorrent(videoPath, options, function (err, torrent) {
if (err) return callback(err)
2017-01-17 21:42:47 +01:00
const filePath = pathUtils.join(constants.CONFIG.STORAGE.TORRENTS_DIR, video.getTorrentName())
fs.writeFile(filePath, torrent, function (err) {
if (err) return callback(err)
const parsedTorrent = parseTorrent(torrent)
2016-12-28 15:49:23 +01:00
video.set('infoHash', parsedTorrent.infoHash)
video.validate().asCallback(callback)
})
})
},
2017-01-17 21:42:47 +01:00
function createVideoThumbnail (callback) {
createThumbnail(video, videoPath, callback)
2016-11-11 11:52:24 +01:00
},
2017-01-17 21:42:47 +01:00
function createVIdeoPreview (callback) {
createPreview(video, videoPath, callback)
}
)
2016-11-16 21:16:41 +01:00
return parallel(tasks, next)
}
2016-11-16 21:16:41 +01:00
return next()
2016-12-11 21:50:51 +01:00
}
2016-12-11 21:50:51 +01:00
function afterDestroy (video, options, next) {
const tasks = []
tasks.push(
function (callback) {
removeThumbnail(video, callback)
}
)
if (video.isOwned()) {
tasks.push(
2017-01-17 21:42:47 +01:00
function removeVideoFile (callback) {
2016-12-11 21:50:51 +01:00
removeFile(video, callback)
},
2017-01-17 21:42:47 +01:00
function removeVideoTorrent (callback) {
2016-12-11 21:50:51 +01:00
removeTorrent(video, callback)
},
2017-01-17 21:42:47 +01:00
function removeVideoPreview (callback) {
2016-12-11 21:50:51 +01:00
removePreview(video, callback)
},
2017-01-17 21:42:47 +01:00
function removeVideoToFriends (callback) {
const params = {
remoteId: video.id
}
friends.removeVideoToFriends(params)
return callback()
2016-12-11 21:50:51 +01:00
}
)
}
parallel(tasks, next)
}
// ------------------------------ METHODS ------------------------------
2016-12-11 21:50:51 +01:00
function associate (models) {
this.belongsTo(models.Author, {
foreignKey: {
name: 'authorId',
allowNull: false
},
onDelete: 'cascade'
})
2016-12-24 16:59:17 +01:00
this.belongsToMany(models.Tag, {
foreignKey: 'videoId',
through: models.VideoTag,
onDelete: 'cascade'
})
2017-01-04 20:59:23 +01:00
this.hasMany(models.VideoAbuse, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
2016-12-11 21:50:51 +01:00
}
2016-11-11 15:20:03 +01:00
function generateMagnetUri () {
let baseUrlHttp, baseUrlWs
if (this.isOwned()) {
baseUrlHttp = constants.CONFIG.WEBSERVER.URL
baseUrlWs = constants.CONFIG.WEBSERVER.WS + '://' + constants.CONFIG.WEBSERVER.HOSTNAME + ':' + constants.CONFIG.WEBSERVER.PORT
} else {
2016-12-11 21:50:51 +01:00
baseUrlHttp = constants.REMOTE_SCHEME.HTTP + '://' + this.Author.Pod.host
baseUrlWs = constants.REMOTE_SCHEME.WS + '://' + this.Author.Pod.host
2016-11-11 15:20:03 +01:00
}
const xs = baseUrlHttp + constants.STATIC_PATHS.TORRENTS + this.getTorrentName()
const announce = baseUrlWs + '/tracker/socket'
const urlList = [ baseUrlHttp + constants.STATIC_PATHS.WEBSEED + this.getVideoFilename() ]
const magnetHash = {
xs,
announce,
urlList,
2016-12-11 21:50:51 +01:00
infoHash: this.infoHash,
2016-11-11 15:20:03 +01:00
name: this.name
}
return magnetUtil.encode(magnetHash)
}
2016-11-11 15:20:03 +01:00
function getVideoFilename () {
2016-12-11 21:50:51 +01:00
if (this.isOwned()) return this.id + this.extname
2016-11-11 15:20:03 +01:00
return this.remoteId + this.extname
}
function getThumbnailName () {
// We always have a copy of the thumbnail
2016-12-11 21:50:51 +01:00
return this.id + '.jpg'
}
2016-11-11 15:20:03 +01:00
function getPreviewName () {
const extension = '.jpg'
2016-12-11 21:50:51 +01:00
if (this.isOwned()) return this.id + extension
2016-11-11 15:20:03 +01:00
return this.remoteId + extension
}
function getTorrentName () {
2016-11-11 15:20:03 +01:00
const extension = '.torrent'
2016-12-11 21:50:51 +01:00
if (this.isOwned()) return this.id + extension
2016-11-11 15:20:03 +01:00
return this.remoteId + extension
}
function isOwned () {
return this.remoteId === null
}
function toFormatedJSON () {
2016-12-11 21:50:51 +01:00
let podHost
if (this.Author.Pod) {
podHost = this.Author.Pod.host
} else {
// It means it's our video
podHost = constants.CONFIG.WEBSERVER.HOST
}
const json = {
2016-12-11 21:50:51 +01:00
id: this.id,
name: this.name,
description: this.description,
2016-12-11 21:50:51 +01:00
podHost,
isLocal: this.isOwned(),
2016-11-11 15:20:03 +01:00
magnetUri: this.generateMagnetUri(),
2016-12-11 21:50:51 +01:00
author: this.Author.name,
duration: this.duration,
2016-12-24 16:59:17 +01:00
tags: map(this.Tags, 'name'),
2017-01-12 13:08:47 +01:00
thumbnailPath: pathUtils.join(constants.STATIC_PATHS.THUMBNAILS, this.getThumbnailName()),
createdAt: this.createdAt,
updatedAt: this.updatedAt
}
return json
}
2016-12-29 19:07:05 +01:00
function toAddRemoteJSON (callback) {
const self = this
// Get thumbnail data to send to the other pod
2016-11-11 15:20:03 +01:00
const thumbnailPath = pathUtils.join(constants.CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
fs.readFile(thumbnailPath, function (err, thumbnailData) {
if (err) {
logger.error('Cannot read the thumbnail of the video')
return callback(err)
}
const remoteVideo = {
name: self.name,
description: self.description,
2016-12-11 21:50:51 +01:00
infoHash: self.infoHash,
remoteId: self.id,
author: self.Author.name,
duration: self.duration,
thumbnailData: thumbnailData.toString('binary'),
2016-12-24 16:59:17 +01:00
tags: map(self.Tags, 'name'),
2016-12-11 21:50:51 +01:00
createdAt: self.createdAt,
updatedAt: self.updatedAt,
extname: self.extname
}
return callback(null, remoteVideo)
})
}
2016-12-29 19:07:05 +01:00
function toUpdateRemoteJSON (callback) {
const json = {
name: this.name,
description: this.description,
infoHash: this.infoHash,
remoteId: this.id,
author: this.Author.name,
duration: this.duration,
tags: map(this.Tags, 'name'),
createdAt: this.createdAt,
updatedAt: this.updatedAt,
2016-12-29 19:07:05 +01:00
extname: this.extname
}
return json
}
// ------------------------------ STATICS ------------------------------
function generateThumbnailFromData (video, thumbnailData, callback) {
2016-11-16 21:16:41 +01:00
// Creating the thumbnail for a remote video
const thumbnailName = video.getThumbnailName()
2017-01-17 21:42:47 +01:00
const thumbnailPath = pathUtils.join(constants.CONFIG.STORAGE.THUMBNAILS_DIR, thumbnailName)
fs.writeFile(thumbnailPath, Buffer.from(thumbnailData, 'binary'), function (err) {
2016-11-16 21:16:41 +01:00
if (err) return callback(err)
return callback(null, thumbnailName)
})
}
function getDurationFromFile (videoPath, callback) {
ffmpeg.ffprobe(videoPath, function (err, metadata) {
if (err) return callback(err)
return callback(null, Math.floor(metadata.format.duration))
})
}
2016-12-25 09:44:57 +01:00
function list (callback) {
2017-02-08 20:34:01 +01:00
return this.findAll().asCallback(callback)
2016-12-25 09:44:57 +01:00
}
function listForApi (start, count, sort, callback) {
2016-12-11 21:50:51 +01:00
const query = {
offset: start,
limit: count,
2016-12-24 16:59:17 +01:00
distinct: true, // For the count, a video can have many tags
order: [ modelUtils.getSort(sort), [ this.sequelize.models.Tag, 'name', 'ASC' ] ],
2016-12-11 21:50:51 +01:00
include: [
{
model: this.sequelize.models.Author,
2016-12-24 16:59:17 +01:00
include: [ { model: this.sequelize.models.Pod, required: false } ]
},
this.sequelize.models.Tag
2016-12-11 21:50:51 +01:00
]
}
return this.findAndCountAll(query).asCallback(function (err, result) {
if (err) return callback(err)
return callback(null, result.rows, result.count)
})
}
function loadByHostAndRemoteId (fromHost, remoteId, callback) {
2016-12-11 21:50:51 +01:00
const query = {
where: {
remoteId: remoteId
},
include: [
{
model: this.sequelize.models.Author,
include: [
{
model: this.sequelize.models.Pod,
2016-12-24 16:59:17 +01:00
required: true,
2016-12-11 21:50:51 +01:00
where: {
host: fromHost
}
}
]
}
]
}
return this.findOne(query).asCallback(callback)
}
2016-12-24 16:59:17 +01:00
function listOwnedAndPopulateAuthorAndTags (callback) {
// If remoteId is null this is *our* video
2016-12-11 21:50:51 +01:00
const query = {
where: {
remoteId: null
},
2016-12-24 16:59:17 +01:00
include: [ this.sequelize.models.Author, this.sequelize.models.Tag ]
2016-12-11 21:50:51 +01:00
}
return this.findAll(query).asCallback(callback)
}
function listOwnedByAuthor (author, callback) {
2016-12-11 21:50:51 +01:00
const query = {
where: {
remoteId: null
},
include: [
{
model: this.sequelize.models.Author,
where: {
name: author
}
}
]
}
2016-12-11 21:50:51 +01:00
return this.findAll(query).asCallback(callback)
}
function load (id, callback) {
2016-12-11 21:50:51 +01:00
return this.findById(id).asCallback(callback)
}
function loadAndPopulateAuthor (id, callback) {
const options = {
include: [ this.sequelize.models.Author ]
}
return this.findById(id, options).asCallback(callback)
}
2016-12-24 16:59:17 +01:00
function loadAndPopulateAuthorAndPodAndTags (id, callback) {
2016-12-11 21:50:51 +01:00
const options = {
include: [
{
model: this.sequelize.models.Author,
2016-12-24 16:59:17 +01:00
include: [ { model: this.sequelize.models.Pod, required: false } ]
},
this.sequelize.models.Tag
2016-12-11 21:50:51 +01:00
]
}
return this.findById(id, options).asCallback(callback)
}
2016-12-24 16:59:17 +01:00
function searchAndPopulateAuthorAndPodAndTags (value, field, start, count, sort, callback) {
2016-12-11 21:50:51 +01:00
const podInclude = {
2016-12-24 16:59:17 +01:00
model: this.sequelize.models.Pod,
required: false
2016-12-11 21:50:51 +01:00
}
2016-12-24 16:59:17 +01:00
2016-12-11 21:50:51 +01:00
const authorInclude = {
model: this.sequelize.models.Author,
include: [
podInclude
]
}
2016-12-24 16:59:17 +01:00
const tagInclude = {
model: this.sequelize.models.Tag
}
2016-12-11 21:50:51 +01:00
const query = {
where: {},
offset: start,
limit: count,
2016-12-24 16:59:17 +01:00
distinct: true, // For the count, a video can have many tags
order: [ modelUtils.getSort(sort), [ this.sequelize.models.Tag, 'name', 'ASC' ] ]
2016-12-11 21:50:51 +01:00
}
// Make an exact search with the magnet
2016-11-11 15:24:36 +01:00
if (field === 'magnetUri') {
const infoHash = magnetUtil.decode(value).infoHash
2016-12-11 21:50:51 +01:00
query.where.infoHash = infoHash
2016-11-11 15:24:36 +01:00
} else if (field === 'tags') {
2016-12-24 16:59:17 +01:00
const escapedValue = this.sequelize.escape('%' + value + '%')
query.where = {
id: {
$in: this.sequelize.literal(
'(SELECT "VideoTags"."videoId" FROM "Tags" INNER JOIN "VideoTags" ON "Tags"."id" = "VideoTags"."tagId" WHERE name LIKE ' + escapedValue + ')'
)
2016-12-11 21:50:51 +01:00
}
}
2016-12-24 16:59:17 +01:00
} else if (field === 'host') {
// FIXME: Include our pod? (not stored in the database)
podInclude.where = {
host: {
$like: '%' + value + '%'
2016-12-11 21:50:51 +01:00
}
}
2016-12-24 16:59:17 +01:00
podInclude.required = true
2016-12-11 21:50:51 +01:00
} else if (field === 'author') {
2016-12-24 16:59:17 +01:00
authorInclude.where = {
name: {
2016-12-11 21:50:51 +01:00
$like: '%' + value + '%'
}
}
2016-12-24 16:59:17 +01:00
// authorInclude.or = true
} else {
2016-12-11 21:50:51 +01:00
query.where[field] = {
$like: '%' + value + '%'
}
}
2016-12-24 16:59:17 +01:00
query.include = [
authorInclude, tagInclude
]
if (tagInclude.where) {
// query.include.push([ this.sequelize.models.Tag ])
}
2016-12-11 21:50:51 +01:00
return this.findAndCountAll(query).asCallback(function (err, result) {
if (err) return callback(err)
return callback(null, result.rows, result.count)
})
}
// ---------------------------------------------------------------------------
function removeThumbnail (video, callback) {
2017-01-17 21:42:47 +01:00
const thumbnailPath = pathUtils.join(constants.CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName())
fs.unlink(thumbnailPath, callback)
}
function removeFile (video, callback) {
2017-01-17 21:42:47 +01:00
const filePath = pathUtils.join(constants.CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename())
fs.unlink(filePath, callback)
}
function removeTorrent (video, callback) {
2017-01-17 21:42:47 +01:00
const torrenPath = pathUtils.join(constants.CONFIG.STORAGE.TORRENTS_DIR, video.getTorrentName())
fs.unlink(torrenPath, callback)
}
2016-11-11 11:52:24 +01:00
function removePreview (video, callback) {
// Same name than video thumnail
2016-11-11 15:20:03 +01:00
fs.unlink(constants.CONFIG.STORAGE.PREVIEWS_DIR + video.getPreviewName(), callback)
2016-11-11 11:52:24 +01:00
}
function createPreview (video, videoPath, callback) {
2016-11-11 15:20:03 +01:00
generateImage(video, videoPath, constants.CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName(), callback)
2016-11-11 11:52:24 +01:00
}
function createThumbnail (video, videoPath, callback) {
2016-11-11 15:20:03 +01:00
generateImage(video, videoPath, constants.CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName(), constants.THUMBNAILS_SIZE, callback)
}
2016-11-11 15:20:03 +01:00
function generateImage (video, videoPath, folder, imageName, size, callback) {
const options = {
2016-11-11 15:20:03 +01:00
filename: imageName,
count: 1,
folder
}
if (!callback) {
callback = size
} else {
options.size = size
}
ffmpeg(videoPath)
.on('error', callback)
.on('end', function () {
2016-11-11 15:20:03 +01:00
callback(null, imageName)
})
.thumbnail(options)
}