2017-06-05 15:53:49 -04:00
|
|
|
import * as safeBuffer from 'safe-buffer'
|
2017-05-15 16:22:03 -04:00
|
|
|
const Buffer = safeBuffer.Buffer
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as createTorrent from 'create-torrent'
|
|
|
|
import * as ffmpeg from 'fluent-ffmpeg'
|
|
|
|
import * as fs from 'fs'
|
|
|
|
import * as magnetUtil from 'magnet-uri'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { map, values } from 'lodash'
|
|
|
|
import { parallel, series } from 'async'
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as parseTorrent from 'parse-torrent'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { join } from 'path'
|
2017-05-22 14:58:25 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-05-15 16:22:03 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
import { database as db } from '../initializers/database'
|
2017-06-10 16:15:25 -04:00
|
|
|
import { VideoTagInstance } from './video-tag-interface'
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
|
|
|
logger,
|
|
|
|
isVideoNameValid,
|
|
|
|
isVideoCategoryValid,
|
|
|
|
isVideoLicenceValid,
|
|
|
|
isVideoLanguageValid,
|
|
|
|
isVideoNSFWValid,
|
|
|
|
isVideoDescriptionValid,
|
|
|
|
isVideoInfoHashValid,
|
|
|
|
isVideoDurationValid
|
|
|
|
} from '../helpers'
|
|
|
|
import {
|
|
|
|
CONSTRAINTS_FIELDS,
|
|
|
|
CONFIG,
|
|
|
|
REMOTE_SCHEME,
|
|
|
|
STATIC_PATHS,
|
|
|
|
VIDEO_CATEGORIES,
|
|
|
|
VIDEO_LICENCES,
|
|
|
|
VIDEO_LANGUAGES,
|
|
|
|
THUMBNAILS_SIZE
|
|
|
|
} from '../initializers'
|
|
|
|
import { JobScheduler, removeVideoToFriends } from '../lib'
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
import { addMethodsToModel, getSort } from './utils'
|
|
|
|
import {
|
|
|
|
VideoClass,
|
|
|
|
VideoInstance,
|
|
|
|
VideoAttributes,
|
|
|
|
|
|
|
|
VideoMethods
|
|
|
|
} from './video-interface'
|
|
|
|
|
|
|
|
let Video: Sequelize.Model<VideoInstance, VideoAttributes>
|
|
|
|
let generateMagnetUri: VideoMethods.GenerateMagnetUri
|
|
|
|
let getVideoFilename: VideoMethods.GetVideoFilename
|
|
|
|
let getThumbnailName: VideoMethods.GetThumbnailName
|
|
|
|
let getPreviewName: VideoMethods.GetPreviewName
|
|
|
|
let getTorrentName: VideoMethods.GetTorrentName
|
|
|
|
let isOwned: VideoMethods.IsOwned
|
|
|
|
let toFormatedJSON: VideoMethods.ToFormatedJSON
|
|
|
|
let toAddRemoteJSON: VideoMethods.ToAddRemoteJSON
|
|
|
|
let toUpdateRemoteJSON: VideoMethods.ToUpdateRemoteJSON
|
|
|
|
let transcodeVideofile: VideoMethods.TranscodeVideofile
|
|
|
|
|
|
|
|
let generateThumbnailFromData: VideoMethods.GenerateThumbnailFromData
|
|
|
|
let getDurationFromFile: VideoMethods.GetDurationFromFile
|
|
|
|
let list: VideoMethods.List
|
|
|
|
let listForApi: VideoMethods.ListForApi
|
|
|
|
let loadByHostAndRemoteId: VideoMethods.LoadByHostAndRemoteId
|
|
|
|
let listOwnedAndPopulateAuthorAndTags: VideoMethods.ListOwnedAndPopulateAuthorAndTags
|
|
|
|
let listOwnedByAuthor: VideoMethods.ListOwnedByAuthor
|
|
|
|
let load: VideoMethods.Load
|
|
|
|
let loadAndPopulateAuthor: VideoMethods.LoadAndPopulateAuthor
|
|
|
|
let loadAndPopulateAuthorAndPodAndTags: VideoMethods.LoadAndPopulateAuthorAndPodAndTags
|
|
|
|
let searchAndPopulateAuthorAndPodAndTags: VideoMethods.SearchAndPopulateAuthorAndPodAndTags
|
|
|
|
|
2017-06-11 11:35:32 -04:00
|
|
|
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
|
|
|
|
Video = sequelize.define<VideoInstance, VideoAttributes>('Video',
|
2016-12-11 15:50:51 -05:00
|
|
|
{
|
|
|
|
id: {
|
|
|
|
type: DataTypes.UUID,
|
|
|
|
defaultValue: DataTypes.UUIDV4,
|
2016-12-28 09:49:23 -05:00
|
|
|
primaryKey: true,
|
|
|
|
validate: {
|
|
|
|
isUUID: 4
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
},
|
2016-12-11 15:50:51 -05:00
|
|
|
name: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.STRING,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
|
|
|
nameValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoNameValid(value)
|
2016-12-28 09:49:23 -05:00
|
|
|
if (res === false) throw new Error('Video name is not valid.')
|
|
|
|
}
|
|
|
|
}
|
2016-11-11 05:52:24 -05:00
|
|
|
},
|
2016-12-11 15:50:51 -05:00
|
|
|
extname: {
|
2017-05-15 16:22:03 -04:00
|
|
|
type: DataTypes.ENUM(values(CONSTRAINTS_FIELDS.VIDEOS.EXTNAME)),
|
2016-12-28 09:49:23 -05:00
|
|
|
allowNull: false
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
remoteId: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.UUID,
|
|
|
|
allowNull: true,
|
|
|
|
validate: {
|
|
|
|
isUUID: 4
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
2017-03-22 16:15:55 -04:00
|
|
|
category: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
|
|
|
categoryValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoCategoryValid(value)
|
2017-03-22 16:15:55 -04:00
|
|
|
if (res === false) throw new Error('Video category is not valid.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-03-27 14:53:11 -04:00
|
|
|
licence: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
2017-04-07 06:13:37 -04:00
|
|
|
defaultValue: null,
|
2017-03-27 14:53:11 -04:00
|
|
|
validate: {
|
|
|
|
licenceValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoLicenceValid(value)
|
2017-03-27 14:53:11 -04:00
|
|
|
if (res === false) throw new Error('Video licence is not valid.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-04-07 06:13:37 -04:00
|
|
|
language: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: true,
|
|
|
|
validate: {
|
|
|
|
languageValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoLanguageValid(value)
|
2017-04-07 06:13:37 -04:00
|
|
|
if (res === false) throw new Error('Video language is not valid.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-03-28 15:19:46 -04:00
|
|
|
nsfw: {
|
|
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
|
|
|
nsfwValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoNSFWValid(value)
|
2017-03-28 15:19:46 -04:00
|
|
|
if (res === false) throw new Error('Video nsfw attribute is not valid.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-12-11 15:50:51 -05:00
|
|
|
description: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.STRING,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
|
|
|
descriptionValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoDescriptionValid(value)
|
2016-12-28 09:49:23 -05:00
|
|
|
if (res === false) throw new Error('Video description is not valid.')
|
|
|
|
}
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
infoHash: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.STRING,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
|
|
|
infoHashValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoInfoHashValid(value)
|
2016-12-28 09:49:23 -05:00
|
|
|
if (res === false) throw new Error('Video info hash is not valid.')
|
|
|
|
}
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
duration: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
|
|
|
durationValid: function (value) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const res = isVideoDurationValid(value)
|
2016-12-28 09:49:23 -05:00
|
|
|
if (res === false) throw new Error('Video duration is not valid.')
|
|
|
|
}
|
|
|
|
}
|
2017-02-21 15:35:59 -05:00
|
|
|
},
|
|
|
|
views: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: 0,
|
|
|
|
validate: {
|
|
|
|
min: 0,
|
|
|
|
isInt: true
|
|
|
|
}
|
2017-03-08 15:35:43 -05:00
|
|
|
},
|
|
|
|
likes: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: 0,
|
|
|
|
validate: {
|
|
|
|
min: 0,
|
|
|
|
isInt: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
dislikes: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: 0,
|
|
|
|
validate: {
|
|
|
|
min: 0,
|
|
|
|
isInt: true
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
{
|
2016-12-29 03:33:28 -05:00
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'authorId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'remoteId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'name' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'createdAt' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'duration' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'infoHash' ]
|
2017-02-21 15:35:59 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'views' ]
|
2017-03-08 15:35:43 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'likes' ]
|
2016-12-29 03:33:28 -05:00
|
|
|
}
|
|
|
|
],
|
2016-12-11 15:50:51 -05:00
|
|
|
hooks: {
|
2016-12-28 09:49:23 -05:00
|
|
|
beforeValidate,
|
2016-12-11 15:50:51 -05:00
|
|
|
beforeCreate,
|
|
|
|
afterDestroy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
const classMethods = [
|
|
|
|
associate,
|
|
|
|
|
|
|
|
generateThumbnailFromData,
|
|
|
|
getDurationFromFile,
|
|
|
|
list,
|
|
|
|
listForApi,
|
|
|
|
listOwnedAndPopulateAuthorAndTags,
|
|
|
|
listOwnedByAuthor,
|
|
|
|
load,
|
|
|
|
loadByHostAndRemoteId,
|
|
|
|
loadAndPopulateAuthor,
|
|
|
|
loadAndPopulateAuthorAndPodAndTags,
|
|
|
|
searchAndPopulateAuthorAndPodAndTags
|
|
|
|
]
|
|
|
|
const instanceMethods = [
|
|
|
|
generateMagnetUri,
|
|
|
|
getVideoFilename,
|
|
|
|
getThumbnailName,
|
|
|
|
getPreviewName,
|
|
|
|
getTorrentName,
|
|
|
|
isOwned,
|
|
|
|
toFormatedJSON,
|
|
|
|
toAddRemoteJSON,
|
|
|
|
toUpdateRemoteJSON,
|
|
|
|
transcodeVideofile,
|
|
|
|
removeFromBlacklist
|
|
|
|
]
|
|
|
|
addMethodsToModel(Video, classMethods, instanceMethods)
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
return Video
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function beforeValidate (video: VideoInstance) {
|
2017-01-12 03:47:21 -05:00
|
|
|
// Put a fake infoHash if it does not exists yet
|
|
|
|
if (video.isOwned() && !video.infoHash) {
|
2016-12-28 09:49:23 -05:00
|
|
|
// 40 hexa length
|
|
|
|
video.infoHash = '0123456789abcdef0123456789abcdef01234567'
|
|
|
|
}
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function beforeCreate (video: VideoInstance, options: { transaction: Sequelize.Transaction }) {
|
2017-05-22 14:58:25 -04:00
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
const tasks = []
|
2017-01-17 15:42:47 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
if (video.isOwned()) {
|
|
|
|
const videoPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename())
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-05-02 16:02:27 -04:00
|
|
|
tasks.push(
|
2017-05-22 14:58:25 -04:00
|
|
|
function createVideoTorrent (callback) {
|
|
|
|
createTorrentFromVideo(video, videoPath, callback)
|
|
|
|
},
|
|
|
|
|
|
|
|
function createVideoThumbnail (callback) {
|
|
|
|
createThumbnail(video, videoPath, callback)
|
|
|
|
},
|
2017-05-02 16:02:27 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
function createVideoPreview (callback) {
|
|
|
|
createPreview(video, videoPath, callback)
|
2017-05-02 16:02:27 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
if (CONFIG.TRANSCODING.ENABLED === true) {
|
|
|
|
tasks.push(
|
|
|
|
function createVideoTranscoderJob (callback) {
|
|
|
|
const dataInput = {
|
|
|
|
id: video.id
|
|
|
|
}
|
2016-11-16 15:16:41 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
JobScheduler.Instance.createJob(options.transaction, 'videoTranscoder', dataInput, callback)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return parallel(tasks, function (err) {
|
|
|
|
if (err) return reject(err)
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return resolve()
|
|
|
|
})
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return resolve()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function afterDestroy (video: VideoInstance) {
|
2017-05-22 14:58:25 -04:00
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
const tasks = []
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
tasks.push(
|
2017-05-22 14:58:25 -04:00
|
|
|
function (callback) {
|
|
|
|
removeThumbnail(video, callback)
|
|
|
|
}
|
|
|
|
)
|
2016-12-29 05:17:11 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
if (video.isOwned()) {
|
|
|
|
tasks.push(
|
|
|
|
function removeVideoFile (callback) {
|
|
|
|
removeFile(video, callback)
|
|
|
|
},
|
2016-12-29 05:17:11 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
function removeVideoTorrent (callback) {
|
|
|
|
removeTorrent(video, callback)
|
|
|
|
},
|
2016-12-29 05:17:11 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
function removeVideoPreview (callback) {
|
|
|
|
removePreview(video, callback)
|
|
|
|
},
|
2016-12-29 05:17:11 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
function notifyFriends (callback) {
|
|
|
|
const params = {
|
|
|
|
remoteId: video.id
|
|
|
|
}
|
2016-12-29 05:17:11 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
removeVideoToFriends(params)
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
parallel(tasks, function (err) {
|
|
|
|
if (err) return reject(err)
|
|
|
|
|
|
|
|
return resolve()
|
|
|
|
})
|
|
|
|
})
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
|
|
|
// ------------------------------ METHODS ------------------------------
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
function associate (models) {
|
2017-05-22 14:58:25 -04:00
|
|
|
Video.belongsTo(models.Author, {
|
2016-12-11 15:50:51 -05:00
|
|
|
foreignKey: {
|
|
|
|
name: 'authorId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2016-12-24 10:59:17 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
Video.belongsToMany(models.Tag, {
|
2016-12-24 10:59:17 -05:00
|
|
|
foreignKey: 'videoId',
|
|
|
|
through: models.VideoTag,
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
Video.hasMany(models.VideoAbuse, {
|
2017-01-04 14:59:23 -05:00
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
generateMagnetUri = function () {
|
2017-05-15 16:22:03 -04:00
|
|
|
let baseUrlHttp
|
|
|
|
let baseUrlWs
|
2016-11-11 09:20:03 -05:00
|
|
|
|
|
|
|
if (this.isOwned()) {
|
2017-05-15 16:22:03 -04:00
|
|
|
baseUrlHttp = CONFIG.WEBSERVER.URL
|
|
|
|
baseUrlWs = CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
|
2016-11-11 09:20:03 -05:00
|
|
|
} else {
|
2017-05-15 16:22:03 -04:00
|
|
|
baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + this.Author.Pod.host
|
|
|
|
baseUrlWs = REMOTE_SCHEME.WS + '://' + this.Author.Pod.host
|
2016-11-11 09:20:03 -05:00
|
|
|
}
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const xs = baseUrlHttp + STATIC_PATHS.TORRENTS + this.getTorrentName()
|
2017-06-10 16:15:25 -04:00
|
|
|
const announce = [ baseUrlWs + '/tracker/socket' ]
|
2017-05-15 16:22:03 -04:00
|
|
|
const urlList = [ baseUrlHttp + STATIC_PATHS.WEBSEED + this.getVideoFilename() ]
|
2016-11-11 09:20:03 -05:00
|
|
|
|
|
|
|
const magnetHash = {
|
|
|
|
xs,
|
|
|
|
announce,
|
|
|
|
urlList,
|
2016-12-11 15:50:51 -05:00
|
|
|
infoHash: this.infoHash,
|
2016-11-11 09:20:03 -05:00
|
|
|
name: this.name
|
|
|
|
}
|
|
|
|
|
|
|
|
return magnetUtil.encode(magnetHash)
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
getVideoFilename = function () {
|
2016-12-11 15:50:51 -05:00
|
|
|
if (this.isOwned()) return this.id + this.extname
|
2016-11-11 09:20:03 -05:00
|
|
|
|
|
|
|
return this.remoteId + this.extname
|
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
getThumbnailName = function () {
|
2016-11-11 09:20:03 -05:00
|
|
|
// We always have a copy of the thumbnail
|
2016-12-11 15:50:51 -05:00
|
|
|
return this.id + '.jpg'
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
getPreviewName = function () {
|
2016-11-11 09:20:03 -05:00
|
|
|
const extension = '.jpg'
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
if (this.isOwned()) return this.id + extension
|
2016-11-11 09:20:03 -05:00
|
|
|
|
|
|
|
return this.remoteId + extension
|
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
getTorrentName = function () {
|
2016-11-11 09:20:03 -05:00
|
|
|
const extension = '.torrent'
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
if (this.isOwned()) return this.id + extension
|
2016-11-11 09:20:03 -05:00
|
|
|
|
|
|
|
return this.remoteId + extension
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
isOwned = function () {
|
2016-11-11 07:47:50 -05:00
|
|
|
return this.remoteId === null
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-11 05:02:35 -04:00
|
|
|
toFormatedJSON = function (this: VideoInstance) {
|
2016-12-11 15:50:51 -05:00
|
|
|
let podHost
|
|
|
|
|
|
|
|
if (this.Author.Pod) {
|
|
|
|
podHost = this.Author.Pod.host
|
|
|
|
} else {
|
|
|
|
// It means it's our video
|
2017-05-15 16:22:03 -04:00
|
|
|
podHost = CONFIG.WEBSERVER.HOST
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-03-22 16:15:55 -04:00
|
|
|
// Maybe our pod is not up to date and there are new categories since our version
|
2017-05-15 16:22:03 -04:00
|
|
|
let categoryLabel = VIDEO_CATEGORIES[this.category]
|
2017-03-22 16:15:55 -04:00
|
|
|
if (!categoryLabel) categoryLabel = 'Misc'
|
|
|
|
|
2017-03-27 14:53:11 -04:00
|
|
|
// Maybe our pod is not up to date and there are new licences since our version
|
2017-05-15 16:22:03 -04:00
|
|
|
let licenceLabel = VIDEO_LICENCES[this.licence]
|
2017-03-27 14:53:11 -04:00
|
|
|
if (!licenceLabel) licenceLabel = 'Unknown'
|
|
|
|
|
2017-04-07 06:13:37 -04:00
|
|
|
// Language is an optional attribute
|
2017-05-15 16:22:03 -04:00
|
|
|
let languageLabel = VIDEO_LANGUAGES[this.language]
|
2017-04-07 06:13:37 -04:00
|
|
|
if (!languageLabel) languageLabel = 'Unknown'
|
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
const json = {
|
2016-12-11 15:50:51 -05:00
|
|
|
id: this.id,
|
2016-06-24 11:42:51 -04:00
|
|
|
name: this.name,
|
2017-03-22 16:15:55 -04:00
|
|
|
category: this.category,
|
|
|
|
categoryLabel,
|
2017-03-27 14:53:11 -04:00
|
|
|
licence: this.licence,
|
|
|
|
licenceLabel,
|
2017-04-07 06:13:37 -04:00
|
|
|
language: this.language,
|
|
|
|
languageLabel,
|
2017-03-28 15:19:46 -04:00
|
|
|
nsfw: this.nsfw,
|
2016-06-24 11:42:51 -04:00
|
|
|
description: this.description,
|
2016-12-11 15:50:51 -05:00
|
|
|
podHost,
|
2016-06-24 11:42:51 -04:00
|
|
|
isLocal: this.isOwned(),
|
2016-11-11 09:20:03 -05:00
|
|
|
magnetUri: this.generateMagnetUri(),
|
2016-12-11 15:50:51 -05:00
|
|
|
author: this.Author.name,
|
2016-06-24 11:42:51 -04:00
|
|
|
duration: this.duration,
|
2017-02-21 15:35:59 -05:00
|
|
|
views: this.views,
|
2017-03-08 15:35:43 -05:00
|
|
|
likes: this.likes,
|
|
|
|
dislikes: this.dislikes,
|
2017-06-11 05:02:35 -04:00
|
|
|
tags: map<VideoTagInstance, string>(this.Tags, 'name'),
|
2017-05-15 16:22:03 -04:00
|
|
|
thumbnailPath: join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName()),
|
2016-12-30 05:45:00 -05:00
|
|
|
createdAt: this.createdAt,
|
|
|
|
updatedAt: this.updatedAt
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
toAddRemoteJSON = function (callback: VideoMethods.ToAddRemoteJSONCallback) {
|
2016-12-29 06:13:19 -05:00
|
|
|
// Get thumbnail data to send to the other pod
|
2017-05-15 16:22:03 -04:00
|
|
|
const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
|
2017-05-22 14:58:25 -04:00
|
|
|
fs.readFile(thumbnailPath, (err, thumbnailData) => {
|
2016-06-24 11:42:51 -04:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot read the thumbnail of the video')
|
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
const remoteVideo = {
|
2017-05-22 14:58:25 -04:00
|
|
|
name: this.name,
|
|
|
|
category: this.category,
|
|
|
|
licence: this.licence,
|
|
|
|
language: this.language,
|
|
|
|
nsfw: this.nsfw,
|
|
|
|
description: this.description,
|
|
|
|
infoHash: this.infoHash,
|
|
|
|
remoteId: this.id,
|
|
|
|
author: this.Author.name,
|
|
|
|
duration: this.duration,
|
2016-12-29 06:13:19 -05:00
|
|
|
thumbnailData: thumbnailData.toString('binary'),
|
2017-06-10 16:15:25 -04:00
|
|
|
tags: map<VideoTagInstance, string>(this.Tags, 'name'),
|
2017-05-22 14:58:25 -04:00
|
|
|
createdAt: this.createdAt,
|
|
|
|
updatedAt: this.updatedAt,
|
|
|
|
extname: this.extname,
|
|
|
|
views: this.views,
|
|
|
|
likes: this.likes,
|
|
|
|
dislikes: this.dislikes
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, remoteVideo)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
toUpdateRemoteJSON = function () {
|
2016-12-29 13:07:05 -05:00
|
|
|
const json = {
|
|
|
|
name: this.name,
|
2017-03-22 16:15:55 -04:00
|
|
|
category: this.category,
|
2017-03-27 14:53:11 -04:00
|
|
|
licence: this.licence,
|
2017-04-07 06:13:37 -04:00
|
|
|
language: this.language,
|
2017-03-28 15:19:46 -04:00
|
|
|
nsfw: this.nsfw,
|
2016-12-29 13:07:05 -05:00
|
|
|
description: this.description,
|
|
|
|
infoHash: this.infoHash,
|
|
|
|
remoteId: this.id,
|
|
|
|
author: this.Author.name,
|
|
|
|
duration: this.duration,
|
2017-06-10 16:15:25 -04:00
|
|
|
tags: map<VideoTagInstance, string>(this.Tags, 'name'),
|
2016-12-29 13:07:05 -05:00
|
|
|
createdAt: this.createdAt,
|
2016-12-30 05:45:00 -05:00
|
|
|
updatedAt: this.updatedAt,
|
2017-03-04 05:00:59 -05:00
|
|
|
extname: this.extname,
|
2017-03-08 15:35:43 -05:00
|
|
|
views: this.views,
|
|
|
|
likes: this.likes,
|
|
|
|
dislikes: this.dislikes
|
2016-12-29 13:07:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
transcodeVideofile = function (finalCallback: VideoMethods.TranscodeVideofileCallback) {
|
2017-05-02 16:02:27 -04:00
|
|
|
const video = this
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
|
2017-05-02 16:02:27 -04:00
|
|
|
const newExtname = '.mp4'
|
2017-05-15 16:22:03 -04:00
|
|
|
const videoInputPath = join(videosDirectory, video.getVideoFilename())
|
|
|
|
const videoOutputPath = join(videosDirectory, video.id + '-transcoded' + newExtname)
|
2017-05-02 16:02:27 -04:00
|
|
|
|
|
|
|
ffmpeg(videoInputPath)
|
|
|
|
.output(videoOutputPath)
|
|
|
|
.videoCodec('libx264')
|
2017-05-15 16:22:03 -04:00
|
|
|
.outputOption('-threads ' + CONFIG.TRANSCODING.THREADS)
|
2017-05-02 16:02:27 -04:00
|
|
|
.outputOption('-movflags faststart')
|
|
|
|
.on('error', finalCallback)
|
|
|
|
.on('end', function () {
|
|
|
|
series([
|
|
|
|
function removeOldFile (callback) {
|
|
|
|
fs.unlink(videoInputPath, callback)
|
|
|
|
},
|
|
|
|
|
|
|
|
function moveNewFile (callback) {
|
|
|
|
// Important to do this before getVideoFilename() to take in account the new file extension
|
|
|
|
video.set('extname', newExtname)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const newVideoPath = join(videosDirectory, video.getVideoFilename())
|
2017-05-02 16:02:27 -04:00
|
|
|
fs.rename(videoOutputPath, newVideoPath, callback)
|
|
|
|
},
|
|
|
|
|
|
|
|
function torrent (callback) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const newVideoPath = join(videosDirectory, video.getVideoFilename())
|
2017-05-02 16:02:27 -04:00
|
|
|
createTorrentFromVideo(video, newVideoPath, callback)
|
|
|
|
},
|
|
|
|
|
|
|
|
function videoExtension (callback) {
|
|
|
|
video.save().asCallback(callback)
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
], function (err: Error) {
|
2017-05-02 16:02:27 -04:00
|
|
|
if (err) {
|
2017-06-10 16:15:25 -04:00
|
|
|
// Autodesctruction...
|
2017-05-02 16:02:27 -04:00
|
|
|
video.destroy().asCallback(function (err) {
|
|
|
|
if (err) logger.error('Cannot destruct video after transcoding failure.', { error: err })
|
|
|
|
})
|
|
|
|
|
|
|
|
return finalCallback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return finalCallback(null)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.run()
|
|
|
|
}
|
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
generateThumbnailFromData = function (video: VideoInstance, thumbnailData: string, callback: VideoMethods.GenerateThumbnailFromDataCallback) {
|
2016-11-16 15:16:41 -05:00
|
|
|
// Creating the thumbnail for a remote video
|
|
|
|
|
|
|
|
const thumbnailName = video.getThumbnailName()
|
2017-05-15 16:22:03 -04:00
|
|
|
const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, thumbnailName)
|
2016-12-29 06:13:19 -05:00
|
|
|
fs.writeFile(thumbnailPath, Buffer.from(thumbnailData, 'binary'), function (err) {
|
2016-11-16 15:16:41 -05:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, thumbnailName)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
getDurationFromFile = function (videoPath: string, callback: VideoMethods.GetDurationFromFileCallback) {
|
2016-06-24 11:42:51 -04:00
|
|
|
ffmpeg.ffprobe(videoPath, function (err, metadata) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, Math.floor(metadata.format.duration))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
list = function (callback: VideoMethods.ListCallback) {
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findAll().asCallback(callback)
|
2016-12-25 03:44:57 -05:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
listForApi = function (start: number, count: number, sort: string, callback: VideoMethods.ListForApiCallback) {
|
2017-04-26 15:22:10 -04:00
|
|
|
// Exclude Blakclisted videos from the list
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
2017-05-22 14:58:25 -04:00
|
|
|
distinct: true,
|
2016-12-11 15:50:51 -05:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2017-05-22 14:58:25 -04:00
|
|
|
order: [ getSort(sort), [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ],
|
2016-12-11 15:50:51 -05:00
|
|
|
include: [
|
|
|
|
{
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
include: [ { model: Video['sequelize'].models.Pod, required: false } ]
|
2016-12-24 10:59:17 -05:00
|
|
|
},
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
Video['sequelize'].models.Tag
|
2017-04-26 15:22:10 -04:00
|
|
|
],
|
2017-05-22 14:58:25 -04:00
|
|
|
where: createBaseVideosWhere()
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findAndCountAll(query).asCallback(function (err, result) {
|
2016-12-11 15:50:51 -05:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, result.rows, result.count)
|
|
|
|
})
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
loadByHostAndRemoteId = function (fromHost: string, remoteId: string, callback: VideoMethods.LoadByHostAndRemoteIdCallback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
remoteId: remoteId
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
2016-12-11 15:50:51 -05:00
|
|
|
include: [
|
|
|
|
{
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Pod,
|
2016-12-24 10:59:17 -05:00
|
|
|
required: true,
|
2016-12-11 15:50:51 -05:00
|
|
|
where: {
|
|
|
|
host: fromHost
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findOne(query).asCallback(callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
listOwnedAndPopulateAuthorAndTags = function (callback: VideoMethods.ListOwnedAndPopulateAuthorAndTagsCallback) {
|
2016-11-11 07:47:50 -05:00
|
|
|
// If remoteId is null this is *our* video
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
remoteId: null
|
|
|
|
},
|
2017-05-22 14:58:25 -04:00
|
|
|
include: [ Video['sequelize'].models.Author, Video['sequelize'].models.Tag ]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findAll(query).asCallback(callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
listOwnedByAuthor = function (author: string, callback: VideoMethods.ListOwnedByAuthorCallback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
remoteId: null
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
2016-12-11 15:50:51 -05:00
|
|
|
where: {
|
|
|
|
name: author
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findAll(query).asCallback(callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
load = function (id: string, callback: VideoMethods.LoadCallback) {
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findById(id).asCallback(callback)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
loadAndPopulateAuthor = function (id: string, callback: VideoMethods.LoadAndPopulateAuthorCallback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const options = {
|
2017-05-22 14:58:25 -04:00
|
|
|
include: [ Video['sequelize'].models.Author ]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findById(id, options).asCallback(callback)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
loadAndPopulateAuthorAndPodAndTags = function (id: string, callback: VideoMethods.LoadAndPopulateAuthorAndPodAndTagsCallback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const options = {
|
|
|
|
include: [
|
|
|
|
{
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
include: [ { model: Video['sequelize'].models.Pod, required: false } ]
|
2016-12-24 10:59:17 -05:00
|
|
|
},
|
2017-05-22 14:58:25 -04:00
|
|
|
Video['sequelize'].models.Tag
|
2016-12-11 15:50:51 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findById(id, options).asCallback(callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
searchAndPopulateAuthorAndPodAndTags = function (
|
|
|
|
value: string,
|
|
|
|
field: string,
|
|
|
|
start: number,
|
|
|
|
count: number,
|
|
|
|
sort: string,
|
|
|
|
callback: VideoMethods.SearchAndPopulateAuthorAndPodAndTagsCallback
|
|
|
|
) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const podInclude: any = {
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Pod,
|
2016-12-24 10:59:17 -05:00
|
|
|
required: false
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
2016-12-24 10:59:17 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const authorInclude: any = {
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
2016-12-11 15:50:51 -05:00
|
|
|
include: [
|
|
|
|
podInclude
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const tagInclude: any = {
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Tag
|
2016-12-24 10:59:17 -05:00
|
|
|
}
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const query: any = {
|
2017-05-22 14:58:25 -04:00
|
|
|
distinct: true,
|
|
|
|
where: createBaseVideosWhere(),
|
2016-12-11 15:50:51 -05:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2017-05-22 14:58:25 -04:00
|
|
|
order: [ getSort(sort), [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
// Make an exact search with the magnet
|
2016-11-11 09:24:36 -05:00
|
|
|
if (field === 'magnetUri') {
|
|
|
|
const infoHash = magnetUtil.decode(value).infoHash
|
2016-12-11 15:50:51 -05:00
|
|
|
query.where.infoHash = infoHash
|
2016-11-11 09:24:36 -05:00
|
|
|
} else if (field === 'tags') {
|
2017-05-22 14:58:25 -04:00
|
|
|
const escapedValue = Video['sequelize'].escape('%' + value + '%')
|
|
|
|
query.where.id.$in = Video['sequelize'].literal(
|
2017-04-26 15:22:10 -04:00
|
|
|
'(SELECT "VideoTags"."videoId" FROM "Tags" INNER JOIN "VideoTags" ON "Tags"."id" = "VideoTags"."tagId" WHERE name LIKE ' + escapedValue + ')'
|
|
|
|
)
|
2016-12-24 10:59:17 -05:00
|
|
|
} else if (field === 'host') {
|
|
|
|
// FIXME: Include our pod? (not stored in the database)
|
|
|
|
podInclude.where = {
|
|
|
|
host: {
|
|
|
|
$like: '%' + value + '%'
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-24 10:59:17 -05:00
|
|
|
podInclude.required = true
|
2016-12-11 15:50:51 -05:00
|
|
|
} else if (field === 'author') {
|
2016-12-24 10:59:17 -05:00
|
|
|
authorInclude.where = {
|
|
|
|
name: {
|
2016-12-11 15:50:51 -05:00
|
|
|
$like: '%' + value + '%'
|
|
|
|
}
|
|
|
|
}
|
2016-12-24 10:59:17 -05:00
|
|
|
|
|
|
|
// authorInclude.or = true
|
2016-06-24 11:42:51 -04:00
|
|
|
} else {
|
2016-12-11 15:50:51 -05:00
|
|
|
query.where[field] = {
|
|
|
|
$like: '%' + value + '%'
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
query.include = [
|
|
|
|
authorInclude, tagInclude
|
|
|
|
]
|
|
|
|
|
|
|
|
if (tagInclude.where) {
|
2017-05-22 14:58:25 -04:00
|
|
|
// query.include.push([ Video['sequelize'].models.Tag ])
|
2016-12-24 10:59:17 -05:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
return Video.findAndCountAll(query).asCallback(function (err, result) {
|
2016-12-11 15:50:51 -05:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
return callback(null, result.rows, result.count)
|
|
|
|
})
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-01 13:09:55 -04:00
|
|
|
function createBaseVideosWhere () {
|
|
|
|
return {
|
|
|
|
id: {
|
2017-05-22 14:58:25 -04:00
|
|
|
$notIn: Video['sequelize'].literal(
|
2017-05-01 13:09:55 -04:00
|
|
|
'(SELECT "BlacklistedVideos"."videoId" FROM "BlacklistedVideos")'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function removeThumbnail (video: VideoInstance, callback: (err: Error) => void) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName())
|
2017-01-17 15:42:47 -05:00
|
|
|
fs.unlink(thumbnailPath, callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function removeFile (video: VideoInstance, callback: (err: Error) => void) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const filePath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename())
|
2017-01-17 15:42:47 -05:00
|
|
|
fs.unlink(filePath, callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function removeTorrent (video: VideoInstance, callback: (err: Error) => void) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const torrenPath = join(CONFIG.STORAGE.TORRENTS_DIR, video.getTorrentName())
|
2017-01-17 15:42:47 -05:00
|
|
|
fs.unlink(torrenPath, callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function removePreview (video: VideoInstance, callback: (err: Error) => void) {
|
2016-11-11 05:52:24 -05:00
|
|
|
// Same name than video thumnail
|
2017-05-15 16:22:03 -04:00
|
|
|
fs.unlink(CONFIG.STORAGE.PREVIEWS_DIR + video.getPreviewName(), callback)
|
2016-11-11 05:52:24 -05:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function createTorrentFromVideo (video: VideoInstance, videoPath: string, callback: (err: Error) => void) {
|
2017-05-02 16:02:27 -04:00
|
|
|
const options = {
|
|
|
|
announceList: [
|
2017-05-15 16:22:03 -04:00
|
|
|
[ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ]
|
2017-05-02 16:02:27 -04:00
|
|
|
],
|
|
|
|
urlList: [
|
2017-05-15 16:22:03 -04:00
|
|
|
CONFIG.WEBSERVER.URL + STATIC_PATHS.WEBSEED + video.getVideoFilename()
|
2017-05-02 16:02:27 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
createTorrent(videoPath, options, function (err, torrent) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, video.getTorrentName())
|
2017-05-02 16:02:27 -04:00
|
|
|
fs.writeFile(filePath, torrent, function (err) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
const parsedTorrent = parseTorrent(torrent)
|
|
|
|
video.set('infoHash', parsedTorrent.infoHash)
|
|
|
|
video.validate().asCallback(callback)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function createPreview (video: VideoInstance, videoPath: string, callback: (err: Error) => void) {
|
|
|
|
generateImage(video, videoPath, CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName(), null, callback)
|
2016-11-11 05:52:24 -05:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function createThumbnail (video: VideoInstance, videoPath: string, callback: (err: Error) => void) {
|
2017-05-15 16:22:03 -04:00
|
|
|
generateImage(video, videoPath, CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName(), THUMBNAILS_SIZE, callback)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
type GenerateImageCallback = (err: Error, imageName: string) => void
|
|
|
|
function generateImage (video: VideoInstance, videoPath: string, folder: string, imageName: string, size: string, callback?: GenerateImageCallback) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const options: any = {
|
2016-11-11 09:20:03 -05:00
|
|
|
filename: imageName,
|
2016-11-11 07:47:50 -05:00
|
|
|
count: 1,
|
|
|
|
folder
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
if (size) {
|
2016-11-11 07:47:50 -05:00
|
|
|
options.size = size
|
|
|
|
}
|
|
|
|
|
|
|
|
ffmpeg(videoPath)
|
|
|
|
.on('error', callback)
|
|
|
|
.on('end', function () {
|
2016-11-11 09:20:03 -05:00
|
|
|
callback(null, imageName)
|
2016-06-24 11:42:51 -04:00
|
|
|
})
|
2016-11-11 07:47:50 -05:00
|
|
|
.thumbnail(options)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function removeFromBlacklist (video: VideoInstance, callback: (err: Error) => void) {
|
2017-04-26 15:22:10 -04:00
|
|
|
// Find the blacklisted video
|
|
|
|
db.BlacklistedVideo.loadByVideoId(video.id, function (err, video) {
|
|
|
|
// If an error occured, stop here
|
|
|
|
if (err) {
|
|
|
|
logger.error('Error when fetching video from blacklist.', { error: err })
|
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we found the video, remove it from the blacklist
|
|
|
|
if (video) {
|
|
|
|
video.destroy().asCallback(callback)
|
|
|
|
} else {
|
|
|
|
// If haven't found it, simply ignore it and do nothing
|
2017-06-10 16:15:25 -04:00
|
|
|
return callback(null)
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|