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 magnetUtil from 'magnet-uri'
|
2017-08-25 05:36:23 -04:00
|
|
|
import { map } from 'lodash'
|
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-07-05 07:26:25 -04:00
|
|
|
import * as Promise from 'bluebird'
|
2017-10-09 05:06:13 -04:00
|
|
|
import { maxBy } from 'lodash'
|
2017-05-15 16:22:03 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
import { TagInstance } from './tag-interface'
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
|
|
|
logger,
|
|
|
|
isVideoNameValid,
|
|
|
|
isVideoCategoryValid,
|
|
|
|
isVideoLicenceValid,
|
|
|
|
isVideoLanguageValid,
|
|
|
|
isVideoNSFWValid,
|
|
|
|
isVideoDescriptionValid,
|
2017-07-05 07:26:25 -04:00
|
|
|
isVideoDurationValid,
|
|
|
|
readFileBufferPromise,
|
|
|
|
unlinkPromise,
|
|
|
|
renamePromise,
|
|
|
|
writeFilePromise,
|
2017-10-02 06:20:26 -04:00
|
|
|
createTorrentPromise,
|
2017-10-09 05:06:13 -04:00
|
|
|
statPromise,
|
|
|
|
generateImageFromVideoFile,
|
|
|
|
transcode,
|
|
|
|
getVideoFileHeight
|
2017-06-16 03:45:46 -04:00
|
|
|
} from '../../helpers'
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
|
|
|
CONFIG,
|
|
|
|
REMOTE_SCHEME,
|
|
|
|
STATIC_PATHS,
|
|
|
|
VIDEO_CATEGORIES,
|
|
|
|
VIDEO_LICENCES,
|
|
|
|
VIDEO_LANGUAGES,
|
2017-10-09 05:06:13 -04:00
|
|
|
THUMBNAILS_SIZE
|
2017-06-16 03:45:46 -04:00
|
|
|
} from '../../initializers'
|
2017-08-25 05:36:23 -04:00
|
|
|
import { removeVideoToFriends } from '../../lib'
|
2017-10-02 06:20:26 -04:00
|
|
|
import { VideoResolution } from '../../../shared'
|
|
|
|
import { VideoFileInstance, VideoFileModel } from './video-file-interface'
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-06-16 03:45:46 -04:00
|
|
|
import { addMethodsToModel, getSort } from '../utils'
|
2017-05-22 14:58:25 -04:00
|
|
|
import {
|
|
|
|
VideoInstance,
|
|
|
|
VideoAttributes,
|
|
|
|
|
|
|
|
VideoMethods
|
|
|
|
} from './video-interface'
|
2017-10-17 04:35:27 -04:00
|
|
|
import { PREVIEWS_SIZE } from '../../initializers/constants'
|
2017-05-22 14:58:25 -04:00
|
|
|
|
|
|
|
let Video: Sequelize.Model<VideoInstance, VideoAttributes>
|
2017-10-02 06:20:26 -04:00
|
|
|
let getOriginalFile: VideoMethods.GetOriginalFile
|
2017-05-22 14:58:25 -04:00
|
|
|
let getVideoFilename: VideoMethods.GetVideoFilename
|
|
|
|
let getThumbnailName: VideoMethods.GetThumbnailName
|
2017-10-16 04:05:49 -04:00
|
|
|
let getThumbnailPath: VideoMethods.GetThumbnailPath
|
2017-05-22 14:58:25 -04:00
|
|
|
let getPreviewName: VideoMethods.GetPreviewName
|
2017-10-16 04:05:49 -04:00
|
|
|
let getPreviewPath: VideoMethods.GetPreviewPath
|
2017-08-25 05:36:23 -04:00
|
|
|
let getTorrentFileName: VideoMethods.GetTorrentFileName
|
2017-05-22 14:58:25 -04:00
|
|
|
let isOwned: VideoMethods.IsOwned
|
2017-08-25 05:45:31 -04:00
|
|
|
let toFormattedJSON: VideoMethods.ToFormattedJSON
|
2017-10-24 13:41:09 -04:00
|
|
|
let toFormattedDetailsJSON: VideoMethods.ToFormattedDetailsJSON
|
2017-05-22 14:58:25 -04:00
|
|
|
let toAddRemoteJSON: VideoMethods.ToAddRemoteJSON
|
|
|
|
let toUpdateRemoteJSON: VideoMethods.ToUpdateRemoteJSON
|
2017-10-02 06:20:26 -04:00
|
|
|
let optimizeOriginalVideofile: VideoMethods.OptimizeOriginalVideofile
|
|
|
|
let transcodeOriginalVideofile: VideoMethods.TranscodeOriginalVideofile
|
2017-08-25 05:36:23 -04:00
|
|
|
let createPreview: VideoMethods.CreatePreview
|
|
|
|
let createThumbnail: VideoMethods.CreateThumbnail
|
|
|
|
let getVideoFilePath: VideoMethods.GetVideoFilePath
|
|
|
|
let createTorrentAndSetInfoHash: VideoMethods.CreateTorrentAndSetInfoHash
|
2017-10-02 06:20:26 -04:00
|
|
|
let getOriginalFileHeight: VideoMethods.GetOriginalFileHeight
|
2017-10-16 04:05:49 -04:00
|
|
|
let getEmbedPath: VideoMethods.GetEmbedPath
|
2017-05-22 14:58:25 -04:00
|
|
|
|
|
|
|
let generateThumbnailFromData: VideoMethods.GenerateThumbnailFromData
|
|
|
|
let list: VideoMethods.List
|
|
|
|
let listForApi: VideoMethods.ListForApi
|
2017-07-11 10:01:56 -04:00
|
|
|
let loadByHostAndUUID: VideoMethods.LoadByHostAndUUID
|
2017-05-22 14:58:25 -04:00
|
|
|
let listOwnedAndPopulateAuthorAndTags: VideoMethods.ListOwnedAndPopulateAuthorAndTags
|
|
|
|
let listOwnedByAuthor: VideoMethods.ListOwnedByAuthor
|
|
|
|
let load: VideoMethods.Load
|
2017-07-11 10:01:56 -04:00
|
|
|
let loadByUUID: VideoMethods.LoadByUUID
|
2017-10-26 05:26:35 -04:00
|
|
|
let loadLocalVideoByUUID: VideoMethods.LoadLocalVideoByUUID
|
2017-05-22 14:58:25 -04:00
|
|
|
let loadAndPopulateAuthor: VideoMethods.LoadAndPopulateAuthor
|
|
|
|
let loadAndPopulateAuthorAndPodAndTags: VideoMethods.LoadAndPopulateAuthorAndPodAndTags
|
2017-07-11 10:01:56 -04:00
|
|
|
let loadByUUIDAndPopulateAuthorAndPodAndTags: VideoMethods.LoadByUUIDAndPopulateAuthorAndPodAndTags
|
2017-05-22 14:58:25 -04:00
|
|
|
let searchAndPopulateAuthorAndPodAndTags: VideoMethods.SearchAndPopulateAuthorAndPodAndTags
|
2017-08-25 05:36:23 -04:00
|
|
|
let removeThumbnail: VideoMethods.RemoveThumbnail
|
|
|
|
let removePreview: VideoMethods.RemovePreview
|
|
|
|
let removeFile: VideoMethods.RemoveFile
|
|
|
|
let removeTorrent: VideoMethods.RemoveTorrent
|
2017-05-22 14:58:25 -04:00
|
|
|
|
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
|
|
|
{
|
2017-07-11 10:01:56 -04:00
|
|
|
uuid: {
|
2016-12-11 15:50:51 -05:00
|
|
|
type: DataTypes.UUID,
|
|
|
|
defaultValue: DataTypes.UUIDV4,
|
2017-07-11 10:01:56 -04:00
|
|
|
allowNull: false,
|
2016-12-28 09:49:23 -05:00
|
|
|
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: {
|
2017-07-11 11:04:57 -04:00
|
|
|
nameValid: 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
|
|
|
},
|
2017-03-22 16:15:55 -04:00
|
|
|
category: {
|
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
2017-07-11 11:04:57 -04:00
|
|
|
categoryValid: 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: {
|
2017-07-11 11:04:57 -04:00
|
|
|
licenceValid: 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: {
|
2017-07-11 11:04:57 -04:00
|
|
|
languageValid: 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: {
|
2017-07-11 11:04:57 -04:00
|
|
|
nsfwValid: 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: {
|
2017-07-11 11:04:57 -04:00
|
|
|
descriptionValid: 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
|
|
|
},
|
|
|
|
duration: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
validate: {
|
2017-07-11 11:04:57 -04:00
|
|
|
durationValid: 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
|
|
|
|
}
|
2017-07-11 10:01:56 -04:00
|
|
|
},
|
|
|
|
remote: {
|
|
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: false
|
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: [ 'name' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'createdAt' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'duration' ]
|
|
|
|
},
|
2017-02-21 15:35:59 -05:00
|
|
|
{
|
|
|
|
fields: [ 'views' ]
|
2017-03-08 15:35:43 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'likes' ]
|
2017-07-11 10:01:56 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'uuid' ]
|
2017-10-24 13:41:09 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'channelId' ]
|
2016-12-29 03:33:28 -05:00
|
|
|
}
|
|
|
|
],
|
2016-12-11 15:50:51 -05:00
|
|
|
hooks: {
|
|
|
|
afterDestroy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
const classMethods = [
|
|
|
|
associate,
|
|
|
|
|
|
|
|
generateThumbnailFromData,
|
|
|
|
list,
|
|
|
|
listForApi,
|
|
|
|
listOwnedAndPopulateAuthorAndTags,
|
|
|
|
listOwnedByAuthor,
|
|
|
|
load,
|
|
|
|
loadAndPopulateAuthor,
|
|
|
|
loadAndPopulateAuthorAndPodAndTags,
|
2017-08-25 05:36:23 -04:00
|
|
|
loadByHostAndUUID,
|
|
|
|
loadByUUID,
|
2017-10-26 05:26:35 -04:00
|
|
|
loadLocalVideoByUUID,
|
2017-07-11 10:01:56 -04:00
|
|
|
loadByUUIDAndPopulateAuthorAndPodAndTags,
|
2017-08-25 05:36:23 -04:00
|
|
|
searchAndPopulateAuthorAndPodAndTags
|
2017-05-22 14:58:25 -04:00
|
|
|
]
|
|
|
|
const instanceMethods = [
|
2017-08-25 05:36:23 -04:00
|
|
|
createPreview,
|
|
|
|
createThumbnail,
|
|
|
|
createTorrentAndSetInfoHash,
|
2017-05-22 14:58:25 -04:00
|
|
|
getPreviewName,
|
2017-10-16 04:05:49 -04:00
|
|
|
getPreviewPath,
|
2017-08-25 05:36:23 -04:00
|
|
|
getThumbnailName,
|
2017-10-16 04:05:49 -04:00
|
|
|
getThumbnailPath,
|
2017-08-25 05:36:23 -04:00
|
|
|
getTorrentFileName,
|
|
|
|
getVideoFilename,
|
|
|
|
getVideoFilePath,
|
2017-10-02 06:20:26 -04:00
|
|
|
getOriginalFile,
|
2017-05-22 14:58:25 -04:00
|
|
|
isOwned,
|
2017-08-25 05:36:23 -04:00
|
|
|
removeFile,
|
|
|
|
removePreview,
|
|
|
|
removeThumbnail,
|
|
|
|
removeTorrent,
|
2017-05-22 14:58:25 -04:00
|
|
|
toAddRemoteJSON,
|
2017-08-25 05:45:31 -04:00
|
|
|
toFormattedJSON,
|
2017-10-24 13:41:09 -04:00
|
|
|
toFormattedDetailsJSON,
|
2017-05-22 14:58:25 -04:00
|
|
|
toUpdateRemoteJSON,
|
2017-10-02 06:20:26 -04:00
|
|
|
optimizeOriginalVideofile,
|
|
|
|
transcodeOriginalVideofile,
|
2017-10-16 04:05:49 -04:00
|
|
|
getOriginalFileHeight,
|
|
|
|
getEmbedPath
|
2017-05-22 14:58:25 -04:00
|
|
|
]
|
|
|
|
addMethodsToModel(Video, classMethods, instanceMethods)
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
return Video
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
|
|
|
// ------------------------------ METHODS ------------------------------
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
function associate (models) {
|
2017-10-24 13:41:09 -04:00
|
|
|
Video.belongsTo(models.VideoChannel, {
|
2016-12-11 15:50:51 -05:00
|
|
|
foreignKey: {
|
2017-10-24 13:41:09 -04:00
|
|
|
name: 'channelId',
|
2016-12-11 15:50:51 -05:00
|
|
|
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'
|
|
|
|
})
|
2017-08-25 05:36:23 -04:00
|
|
|
|
|
|
|
Video.hasMany(models.VideoFile, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-09-12 08:17:46 -04:00
|
|
|
function afterDestroy (video: VideoInstance, options: { transaction: Sequelize.Transaction }) {
|
2017-08-25 05:36:23 -04:00
|
|
|
const tasks = []
|
2016-11-11 09:20:03 -05:00
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
tasks.push(
|
|
|
|
video.removeThumbnail()
|
|
|
|
)
|
2016-11-11 09:20:03 -05:00
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
if (video.isOwned()) {
|
|
|
|
const removeVideoToFriendsParams = {
|
|
|
|
uuid: video.uuid
|
|
|
|
}
|
2016-11-11 09:20:03 -05:00
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
tasks.push(
|
|
|
|
video.removePreview(),
|
2017-09-12 08:17:46 -04:00
|
|
|
removeVideoToFriends(removeVideoToFriendsParams, options.transaction)
|
2017-08-25 05:36:23 -04:00
|
|
|
)
|
|
|
|
|
2017-09-12 08:17:46 -04:00
|
|
|
// Remove physical files and torrents
|
2017-08-25 05:36:23 -04:00
|
|
|
video.VideoFiles.forEach(file => {
|
2017-10-19 03:28:35 -04:00
|
|
|
tasks.push(video.removeFile(file))
|
|
|
|
tasks.push(video.removeTorrent(file))
|
2017-08-25 05:36:23 -04:00
|
|
|
})
|
2016-11-11 09:20:03 -05:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
return Promise.all(tasks)
|
2017-10-19 03:28:35 -04:00
|
|
|
.catch(err => {
|
2017-10-26 06:06:57 -04:00
|
|
|
logger.error('Some errors when removing files of video %s in after destroy hook.', video.uuid, err)
|
2017-10-19 03:28:35 -04:00
|
|
|
})
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
getOriginalFile = function (this: VideoInstance) {
|
|
|
|
if (Array.isArray(this.VideoFiles) === false) return undefined
|
|
|
|
|
2017-10-09 05:06:13 -04:00
|
|
|
// The original file is the file that have the higher resolution
|
|
|
|
return maxBy(this.VideoFiles, file => file.resolution)
|
2017-10-02 06:20:26 -04:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
getVideoFilename = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
2017-10-09 05:06:13 -04:00
|
|
|
return this.uuid + '-' + videoFile.resolution + videoFile.extname
|
2016-11-11 09:20:03 -05:00
|
|
|
}
|
|
|
|
|
2017-06-16 03:54:59 -04:00
|
|
|
getThumbnailName = function (this: VideoInstance) {
|
2016-11-11 09:20:03 -05:00
|
|
|
// We always have a copy of the thumbnail
|
2017-07-11 10:01:56 -04:00
|
|
|
const extension = '.jpg'
|
|
|
|
return this.uuid + extension
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-06-16 03:54:59 -04:00
|
|
|
getPreviewName = function (this: VideoInstance) {
|
2016-11-11 09:20:03 -05:00
|
|
|
const extension = '.jpg'
|
2017-07-11 10:01:56 -04:00
|
|
|
return this.uuid + extension
|
2016-11-11 09:20:03 -05:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
getTorrentFileName = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
2016-11-11 09:20:03 -05:00
|
|
|
const extension = '.torrent'
|
2017-10-09 05:06:13 -04:00
|
|
|
return this.uuid + '-' + videoFile.resolution + extension
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-06-16 03:54:59 -04:00
|
|
|
isOwned = function (this: VideoInstance) {
|
2017-07-11 10:01:56 -04:00
|
|
|
return this.remote === false
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
createPreview = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
2017-10-17 04:35:27 -04:00
|
|
|
const imageSize = PREVIEWS_SIZE.width + 'x' + PREVIEWS_SIZE.height
|
|
|
|
|
2017-10-09 05:06:13 -04:00
|
|
|
return generateImageFromVideoFile(
|
|
|
|
this.getVideoFilePath(videoFile),
|
|
|
|
CONFIG.STORAGE.PREVIEWS_DIR,
|
2017-10-17 04:35:27 -04:00
|
|
|
this.getPreviewName(),
|
|
|
|
imageSize
|
2017-10-09 05:06:13 -04:00
|
|
|
)
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
createThumbnail = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
2017-10-16 04:05:49 -04:00
|
|
|
const imageSize = THUMBNAILS_SIZE.width + 'x' + THUMBNAILS_SIZE.height
|
|
|
|
|
2017-10-09 05:06:13 -04:00
|
|
|
return generateImageFromVideoFile(
|
|
|
|
this.getVideoFilePath(videoFile),
|
|
|
|
CONFIG.STORAGE.THUMBNAILS_DIR,
|
|
|
|
this.getThumbnailName(),
|
2017-10-16 04:05:49 -04:00
|
|
|
imageSize
|
2017-10-09 05:06:13 -04:00
|
|
|
)
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
getVideoFilePath = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
|
|
|
return join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
|
|
|
|
}
|
|
|
|
|
|
|
|
createTorrentAndSetInfoHash = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
|
|
|
const options = {
|
|
|
|
announceList: [
|
|
|
|
[ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ]
|
|
|
|
],
|
|
|
|
urlList: [
|
|
|
|
CONFIG.WEBSERVER.URL + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return createTorrentPromise(this.getVideoFilePath(videoFile), options)
|
|
|
|
.then(torrent => {
|
|
|
|
const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
|
2017-09-07 09:27:35 -04:00
|
|
|
logger.info('Creating torrent %s.', filePath)
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
return writeFilePromise(filePath, torrent).then(() => torrent)
|
|
|
|
})
|
|
|
|
.then(torrent => {
|
|
|
|
const parsedTorrent = parseTorrent(torrent)
|
|
|
|
|
|
|
|
videoFile.infoHash = parsedTorrent.infoHash
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-16 04:05:49 -04:00
|
|
|
getEmbedPath = function (this: VideoInstance) {
|
|
|
|
return '/videos/embed/' + this.uuid
|
|
|
|
}
|
|
|
|
|
|
|
|
getThumbnailPath = function (this: VideoInstance) {
|
|
|
|
return join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName())
|
|
|
|
}
|
|
|
|
|
|
|
|
getPreviewPath = function (this: VideoInstance) {
|
|
|
|
return join(STATIC_PATHS.PREVIEWS, this.getPreviewName())
|
|
|
|
}
|
|
|
|
|
2017-08-25 05:45:31 -04:00
|
|
|
toFormattedJSON = function (this: VideoInstance) {
|
2016-12-11 15:50:51 -05:00
|
|
|
let podHost
|
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
if (this.VideoChannel.Author.Pod) {
|
|
|
|
podHost = this.VideoChannel.Author.Pod.host
|
2016-12-11 15:50:51 -05:00
|
|
|
} 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,
|
2017-07-11 10:01:56 -04:00
|
|
|
uuid: this.uuid,
|
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(),
|
2017-10-24 13:41:09 -04:00
|
|
|
author: this.VideoChannel.Author.name,
|
|
|
|
duration: this.duration,
|
|
|
|
views: this.views,
|
|
|
|
likes: this.likes,
|
|
|
|
dislikes: this.dislikes,
|
|
|
|
tags: map<TagInstance, string>(this.Tags, 'name'),
|
|
|
|
thumbnailPath: this.getThumbnailPath(),
|
|
|
|
previewPath: this.getPreviewPath(),
|
|
|
|
embedPath: this.getEmbedPath(),
|
|
|
|
createdAt: this.createdAt,
|
|
|
|
updatedAt: this.updatedAt
|
|
|
|
}
|
|
|
|
|
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
|
|
|
toFormattedDetailsJSON = function (this: VideoInstance) {
|
|
|
|
let podHost
|
|
|
|
|
|
|
|
if (this.VideoChannel.Author.Pod) {
|
|
|
|
podHost = this.VideoChannel.Author.Pod.host
|
|
|
|
} else {
|
|
|
|
// It means it's our video
|
|
|
|
podHost = CONFIG.WEBSERVER.HOST
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maybe our pod is not up to date and there are new categories since our version
|
|
|
|
let categoryLabel = VIDEO_CATEGORIES[this.category]
|
|
|
|
if (!categoryLabel) categoryLabel = 'Misc'
|
|
|
|
|
|
|
|
// Maybe our pod is not up to date and there are new licences since our version
|
|
|
|
let licenceLabel = VIDEO_LICENCES[this.licence]
|
|
|
|
if (!licenceLabel) licenceLabel = 'Unknown'
|
|
|
|
|
|
|
|
// Language is an optional attribute
|
|
|
|
let languageLabel = VIDEO_LANGUAGES[this.language]
|
|
|
|
if (!languageLabel) languageLabel = 'Unknown'
|
|
|
|
|
|
|
|
const json = {
|
|
|
|
id: this.id,
|
|
|
|
uuid: this.uuid,
|
|
|
|
name: this.name,
|
|
|
|
category: this.category,
|
|
|
|
categoryLabel,
|
|
|
|
licence: this.licence,
|
|
|
|
licenceLabel,
|
|
|
|
language: this.language,
|
|
|
|
languageLabel,
|
|
|
|
nsfw: this.nsfw,
|
|
|
|
description: this.description,
|
|
|
|
podHost,
|
|
|
|
isLocal: this.isOwned(),
|
|
|
|
author: this.VideoChannel.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-07-05 07:26:25 -04:00
|
|
|
tags: map<TagInstance, string>(this.Tags, 'name'),
|
2017-10-16 04:05:49 -04:00
|
|
|
thumbnailPath: this.getThumbnailPath(),
|
|
|
|
previewPath: this.getPreviewPath(),
|
|
|
|
embedPath: this.getEmbedPath(),
|
2016-12-30 05:45:00 -05:00
|
|
|
createdAt: this.createdAt,
|
2017-08-25 05:36:23 -04:00
|
|
|
updatedAt: this.updatedAt,
|
2017-10-24 13:41:09 -04:00
|
|
|
channel: this.VideoChannel.toFormattedJSON(),
|
2017-08-25 05:36:23 -04:00
|
|
|
files: []
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-10-06 04:40:09 -04:00
|
|
|
// Format and sort video files
|
2017-10-19 08:58:28 -04:00
|
|
|
const { baseUrlHttp, baseUrlWs } = getBaseUrls(this)
|
2017-10-06 04:40:09 -04:00
|
|
|
json.files = this.VideoFiles
|
|
|
|
.map(videoFile => {
|
2017-10-09 05:06:13 -04:00
|
|
|
let resolutionLabel = videoFile.resolution + 'p'
|
2017-10-06 04:40:09 -04:00
|
|
|
|
|
|
|
const videoFileJson = {
|
|
|
|
resolution: videoFile.resolution,
|
|
|
|
resolutionLabel,
|
2017-10-19 08:58:28 -04:00
|
|
|
magnetUri: generateMagnetUri(this, videoFile, baseUrlHttp, baseUrlWs),
|
|
|
|
size: videoFile.size,
|
|
|
|
torrentUrl: getTorrentUrl(this, videoFile, baseUrlHttp),
|
|
|
|
fileUrl: getVideoFileUrl(this, videoFile, baseUrlHttp)
|
2017-10-06 04:40:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return videoFileJson
|
|
|
|
})
|
|
|
|
.sort((a, b) => {
|
|
|
|
if (a.resolution < b.resolution) return 1
|
|
|
|
if (a.resolution === b.resolution) return 0
|
|
|
|
return -1
|
|
|
|
})
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
toAddRemoteJSON = function (this: VideoInstance) {
|
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())
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return readFileBufferPromise(thumbnailPath).then(thumbnailData => {
|
2016-06-24 11:42:51 -04:00
|
|
|
const remoteVideo = {
|
2017-07-11 10:01:56 -04:00
|
|
|
uuid: this.uuid,
|
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,
|
2017-10-24 13:41:09 -04:00
|
|
|
channelUUID: this.VideoChannel.uuid,
|
2017-05-22 14:58:25 -04:00
|
|
|
duration: this.duration,
|
2016-12-29 06:13:19 -05:00
|
|
|
thumbnailData: thumbnailData.toString('binary'),
|
2017-07-05 07:26:25 -04:00
|
|
|
tags: map<TagInstance, string>(this.Tags, 'name'),
|
2017-05-22 14:58:25 -04:00
|
|
|
createdAt: this.createdAt,
|
|
|
|
updatedAt: this.updatedAt,
|
|
|
|
views: this.views,
|
|
|
|
likes: this.likes,
|
2017-08-25 05:36:23 -04:00
|
|
|
dislikes: this.dislikes,
|
|
|
|
files: []
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
this.VideoFiles.forEach(videoFile => {
|
|
|
|
remoteVideo.files.push({
|
|
|
|
infoHash: videoFile.infoHash,
|
|
|
|
resolution: videoFile.resolution,
|
|
|
|
extname: videoFile.extname,
|
|
|
|
size: videoFile.size
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return remoteVideo
|
2016-06-24 11:42:51 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-16 03:54:59 -04:00
|
|
|
toUpdateRemoteJSON = function (this: VideoInstance) {
|
2016-12-29 13:07:05 -05:00
|
|
|
const json = {
|
2017-07-11 10:01:56 -04:00
|
|
|
uuid: this.uuid,
|
2016-12-29 13:07:05 -05:00
|
|
|
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,
|
|
|
|
duration: this.duration,
|
2017-07-05 07:26:25 -04:00
|
|
|
tags: map<TagInstance, 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-08 15:35:43 -05:00
|
|
|
views: this.views,
|
|
|
|
likes: this.likes,
|
2017-08-25 05:36:23 -04:00
|
|
|
dislikes: this.dislikes,
|
|
|
|
files: []
|
2016-12-29 13:07:05 -05:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
this.VideoFiles.forEach(videoFile => {
|
|
|
|
json.files.push({
|
|
|
|
infoHash: videoFile.infoHash,
|
|
|
|
resolution: videoFile.resolution,
|
|
|
|
extname: videoFile.extname,
|
|
|
|
size: videoFile.size
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-12-29 13:07:05 -05:00
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
optimizeOriginalVideofile = function (this: VideoInstance) {
|
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-10-02 06:20:26 -04:00
|
|
|
const inputVideoFile = this.getOriginalFile()
|
2017-08-25 05:36:23 -04:00
|
|
|
const videoInputPath = join(videosDirectory, this.getVideoFilename(inputVideoFile))
|
|
|
|
const videoOutputPath = join(videosDirectory, this.id + '-transcoded' + newExtname)
|
2017-05-02 16:02:27 -04:00
|
|
|
|
2017-10-09 05:06:13 -04:00
|
|
|
const transcodeOptions = {
|
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoOutputPath
|
|
|
|
}
|
|
|
|
|
|
|
|
return transcode(transcodeOptions)
|
|
|
|
.then(() => {
|
|
|
|
return unlinkPromise(videoInputPath)
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
// Important to do this before getVideoFilename() to take in account the new file extension
|
|
|
|
inputVideoFile.set('extname', newExtname)
|
|
|
|
|
|
|
|
return renamePromise(videoOutputPath, this.getVideoFilePath(inputVideoFile))
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return statPromise(this.getVideoFilePath(inputVideoFile))
|
|
|
|
})
|
|
|
|
.then(stats => {
|
|
|
|
return inputVideoFile.set('size', stats.size)
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return this.createTorrentAndSetInfoHash(inputVideoFile)
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return inputVideoFile.save()
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return undefined
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
// Auto destruction...
|
|
|
|
this.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', err))
|
|
|
|
|
|
|
|
throw err
|
|
|
|
})
|
2017-05-02 16:02:27 -04:00
|
|
|
}
|
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
transcodeOriginalVideofile = function (this: VideoInstance, resolution: VideoResolution) {
|
|
|
|
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
|
|
|
|
const extname = '.mp4'
|
|
|
|
|
|
|
|
// We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
|
|
|
|
const videoInputPath = join(videosDirectory, this.getVideoFilename(this.getOriginalFile()))
|
|
|
|
|
|
|
|
const newVideoFile = (Video['sequelize'].models.VideoFile as VideoFileModel).build({
|
|
|
|
resolution,
|
|
|
|
extname,
|
|
|
|
size: 0,
|
|
|
|
videoId: this.id
|
|
|
|
})
|
|
|
|
const videoOutputPath = join(videosDirectory, this.getVideoFilename(newVideoFile))
|
2017-10-09 05:06:13 -04:00
|
|
|
|
|
|
|
const transcodeOptions = {
|
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoOutputPath,
|
|
|
|
resolution
|
|
|
|
}
|
|
|
|
return transcode(transcodeOptions)
|
|
|
|
.then(() => {
|
|
|
|
return statPromise(videoOutputPath)
|
|
|
|
})
|
|
|
|
.then(stats => {
|
|
|
|
newVideoFile.set('size', stats.size)
|
|
|
|
|
|
|
|
return undefined
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return this.createTorrentAndSetInfoHash(newVideoFile)
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return newVideoFile.save()
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return this.VideoFiles.push(newVideoFile)
|
|
|
|
})
|
|
|
|
.then(() => undefined)
|
2017-10-02 06:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
getOriginalFileHeight = function (this: VideoInstance) {
|
|
|
|
const originalFilePath = this.getVideoFilePath(this.getOriginalFile())
|
|
|
|
|
2017-10-09 05:06:13 -04:00
|
|
|
return getVideoFileHeight(originalFilePath)
|
2017-10-02 06:20:26 -04:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
removeThumbnail = function (this: VideoInstance) {
|
|
|
|
const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
|
|
|
|
return unlinkPromise(thumbnailPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
removePreview = function (this: VideoInstance) {
|
|
|
|
// Same name than video thumbnail
|
|
|
|
return unlinkPromise(CONFIG.STORAGE.PREVIEWS_DIR + this.getPreviewName())
|
|
|
|
}
|
|
|
|
|
|
|
|
removeFile = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
|
|
|
const filePath = join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
|
|
|
|
return unlinkPromise(filePath)
|
|
|
|
}
|
|
|
|
|
|
|
|
removeTorrent = function (this: VideoInstance, videoFile: VideoFileInstance) {
|
2017-09-04 14:07:54 -04:00
|
|
|
const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
|
|
|
|
return unlinkPromise(torrentPath)
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|
|
|
|
|
2016-06-24 11:42:51 -04:00
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
generateThumbnailFromData = function (video: VideoInstance, thumbnailData: string) {
|
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)
|
2017-07-05 07:26:25 -04:00
|
|
|
return writeFilePromise(thumbnailPath, Buffer.from(thumbnailData, 'binary')).then(() => {
|
|
|
|
return thumbnailName
|
2016-11-16 15:16:41 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
list = function () {
|
2017-08-25 05:36:23 -04:00
|
|
|
const query = {
|
|
|
|
include: [ Video['sequelize'].models.VideoFile ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return Video.findAll(query)
|
2016-12-25 03:44:57 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
listForApi = function (start: number, count: number, sort: string) {
|
2017-08-25 12:36:49 -04:00
|
|
|
// Exclude blacklisted 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-10-24 13:41:09 -04:00
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.Pod,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2016-12-24 10:59:17 -05:00
|
|
|
},
|
2017-08-25 05:36:23 -04:00
|
|
|
Video['sequelize'].models.Tag,
|
|
|
|
Video['sequelize'].models.VideoFile
|
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-07-05 07:26:25 -04:00
|
|
|
return Video.findAndCountAll(query).then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
loadByHostAndUUID = function (fromHost: string, uuid: string, t?: Sequelize.Transaction) {
|
|
|
|
const query: Sequelize.FindOptions<VideoAttributes> = {
|
2016-12-11 15:50:51 -05:00
|
|
|
where: {
|
2017-07-11 10:01:56 -04:00
|
|
|
uuid
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
include: [
|
2017-08-25 05:36:23 -04:00
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.VideoFile
|
|
|
|
},
|
2016-12-11 15:50:51 -05:00
|
|
|
{
|
2017-10-24 13:41:09 -04:00
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
2016-12-11 15:50:51 -05:00
|
|
|
include: [
|
|
|
|
{
|
2017-10-24 13:41:09 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.Pod,
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
host: fromHost
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
if (t !== undefined) query.transaction = t
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findOne(query)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
listOwnedAndPopulateAuthorAndTags = function () {
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
2017-07-11 10:01:56 -04:00
|
|
|
remote: false
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
2017-08-25 05:36:23 -04:00
|
|
|
include: [
|
|
|
|
Video['sequelize'].models.VideoFile,
|
2017-10-24 13:41:09 -04:00
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [ Video['sequelize'].models.Author ]
|
|
|
|
},
|
2017-08-25 05:36:23 -04:00
|
|
|
Video['sequelize'].models.Tag
|
|
|
|
]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findAll(query)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
listOwnedByAuthor = function (author: string) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
2017-07-11 10:01:56 -04:00
|
|
|
remote: false
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
include: [
|
2017-08-25 05:36:23 -04:00
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.VideoFile
|
|
|
|
},
|
2016-12-11 15:50:51 -05:00
|
|
|
{
|
2017-10-24 13:41:09 -04:00
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
where: {
|
|
|
|
name: author
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findAll(query)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
load = function (id: number) {
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findById(id)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
loadByUUID = function (uuid: string, t?: Sequelize.Transaction) {
|
|
|
|
const query: Sequelize.FindOptions<VideoAttributes> = {
|
2017-07-11 10:01:56 -04:00
|
|
|
where: {
|
|
|
|
uuid
|
2017-08-25 05:36:23 -04:00
|
|
|
},
|
|
|
|
include: [ Video['sequelize'].models.VideoFile ]
|
2017-10-26 05:26:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (t !== undefined) query.transaction = t
|
|
|
|
|
|
|
|
return Video.findOne(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
loadLocalVideoByUUID = function (uuid: string, t?: Sequelize.Transaction) {
|
|
|
|
const query: Sequelize.FindOptions<VideoAttributes> = {
|
|
|
|
where: {
|
|
|
|
uuid,
|
|
|
|
remote: false
|
|
|
|
},
|
|
|
|
include: [ Video['sequelize'].models.VideoFile ]
|
2017-07-11 10:01:56 -04:00
|
|
|
}
|
2017-10-24 13:41:09 -04:00
|
|
|
|
|
|
|
if (t !== undefined) query.transaction = t
|
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
return Video.findOne(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
loadAndPopulateAuthor = function (id: number) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const options = {
|
2017-10-24 13:41:09 -04:00
|
|
|
include: [
|
|
|
|
Video['sequelize'].models.VideoFile,
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [ Video['sequelize'].models.Author ]
|
|
|
|
}
|
|
|
|
]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findById(id, options)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
loadAndPopulateAuthorAndPodAndTags = function (id: number) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const options = {
|
|
|
|
include: [
|
|
|
|
{
|
2017-10-24 13:41:09 -04:00
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
include: [ { model: Video['sequelize'].models.Pod, required: false } ]
|
|
|
|
}
|
|
|
|
]
|
2016-12-24 10:59:17 -05:00
|
|
|
},
|
2017-08-25 05:36:23 -04:00
|
|
|
Video['sequelize'].models.Tag,
|
|
|
|
Video['sequelize'].models.VideoFile
|
2016-12-11 15:50:51 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findById(id, options)
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
loadByUUIDAndPopulateAuthorAndPodAndTags = function (uuid: string) {
|
|
|
|
const options = {
|
|
|
|
where: {
|
|
|
|
uuid
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2017-10-24 13:41:09 -04:00
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: Video['sequelize'].models.Author,
|
|
|
|
include: [ { model: Video['sequelize'].models.Pod, required: false } ]
|
|
|
|
}
|
|
|
|
]
|
2017-07-11 10:01:56 -04:00
|
|
|
},
|
2017-08-25 05:36:23 -04:00
|
|
|
Video['sequelize'].models.Tag,
|
|
|
|
Video['sequelize'].models.VideoFile
|
2017-07-11 10:01:56 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return Video.findOne(options)
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
searchAndPopulateAuthorAndPodAndTags = function (value: string, field: string, start: number, count: number, sort: string) {
|
2017-07-11 04:59:13 -04:00
|
|
|
const podInclude: Sequelize.IncludeOptions = {
|
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-07-11 04:59:13 -04:00
|
|
|
const authorInclude: Sequelize.IncludeOptions = {
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Author,
|
2017-10-24 13:41:09 -04:00
|
|
|
include: [ podInclude ]
|
|
|
|
}
|
|
|
|
|
|
|
|
const videoChannelInclude: Sequelize.IncludeOptions = {
|
|
|
|
model: Video['sequelize'].models.VideoChannel,
|
|
|
|
include: [ authorInclude ],
|
|
|
|
required: true
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-07-11 04:59:13 -04:00
|
|
|
const tagInclude: Sequelize.IncludeOptions = {
|
2017-05-22 14:58:25 -04:00
|
|
|
model: Video['sequelize'].models.Tag
|
2016-12-24 10:59:17 -05:00
|
|
|
}
|
|
|
|
|
2017-08-25 05:36:23 -04:00
|
|
|
const videoFileInclude: Sequelize.IncludeOptions = {
|
|
|
|
model: Video['sequelize'].models.VideoFile
|
|
|
|
}
|
|
|
|
|
2017-08-25 12:36:49 -04:00
|
|
|
const query: Sequelize.FindOptions<VideoAttributes> = {
|
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') {
|
2017-08-25 05:36:23 -04:00
|
|
|
videoFileInclude.where = {
|
|
|
|
infoHash: magnetUtil.decode(value).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 + '%')
|
2017-07-11 04:59:13 -04:00
|
|
|
query.where['id'].$in = Video['sequelize'].literal(
|
2017-07-05 07:26:25 -04:00
|
|
|
`(SELECT "VideoTags"."videoId"
|
|
|
|
FROM "Tags"
|
|
|
|
INNER JOIN "VideoTags" ON "Tags"."id" = "VideoTags"."tagId"
|
2017-07-06 12:01:02 -04:00
|
|
|
WHERE name ILIKE ${escapedValue}
|
2017-07-05 07:26:25 -04:00
|
|
|
)`
|
2017-04-26 15:22:10 -04:00
|
|
|
)
|
2016-12-24 10:59:17 -05:00
|
|
|
} else if (field === 'host') {
|
|
|
|
// FIXME: Include our pod? (not stored in the database)
|
|
|
|
podInclude.where = {
|
|
|
|
host: {
|
2017-07-06 12:01:02 -04:00
|
|
|
$iLike: '%' + 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: {
|
2017-07-06 12:01:02 -04:00
|
|
|
$iLike: '%' + value + '%'
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
} else {
|
2016-12-11 15:50:51 -05:00
|
|
|
query.where[field] = {
|
2017-07-06 12:01:02 -04:00
|
|
|
$iLike: '%' + value + '%'
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
}
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
query.include = [
|
2017-10-24 13:41:09 -04:00
|
|
|
videoChannelInclude, tagInclude, videoFileInclude
|
2016-12-24 10:59:17 -05:00
|
|
|
]
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return Video.findAndCountAll(query).then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
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-10-19 08:58:28 -04:00
|
|
|
|
|
|
|
function getBaseUrls (video: VideoInstance) {
|
|
|
|
let baseUrlHttp
|
|
|
|
let baseUrlWs
|
|
|
|
|
|
|
|
if (video.isOwned()) {
|
|
|
|
baseUrlHttp = CONFIG.WEBSERVER.URL
|
|
|
|
baseUrlWs = CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
|
|
|
|
} else {
|
2017-10-24 13:41:09 -04:00
|
|
|
baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + video.VideoChannel.Author.Pod.host
|
|
|
|
baseUrlWs = REMOTE_SCHEME.WS + '://' + video.VideoChannel.Author.Pod.host
|
2017-10-19 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return { baseUrlHttp, baseUrlWs }
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTorrentUrl (video: VideoInstance, videoFile: VideoFileInstance, baseUrlHttp: string) {
|
|
|
|
return baseUrlHttp + STATIC_PATHS.TORRENTS + video.getTorrentFileName(videoFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoFileUrl (video: VideoInstance, videoFile: VideoFileInstance, baseUrlHttp: string) {
|
|
|
|
return baseUrlHttp + STATIC_PATHS.WEBSEED + video.getVideoFilename(videoFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
function generateMagnetUri (video: VideoInstance, videoFile: VideoFileInstance, baseUrlHttp: string, baseUrlWs: string) {
|
|
|
|
const xs = getTorrentUrl(video, videoFile, baseUrlHttp)
|
|
|
|
const announce = [ baseUrlWs + '/tracker/socket', baseUrlHttp + '/tracker/announce' ]
|
|
|
|
const urlList = [ getVideoFileUrl(video, videoFile, baseUrlHttp) ]
|
|
|
|
|
|
|
|
const magnetHash = {
|
|
|
|
xs,
|
|
|
|
announce,
|
|
|
|
urlList,
|
|
|
|
infoHash: videoFile.infoHash,
|
|
|
|
name: video.name
|
|
|
|
}
|
|
|
|
|
|
|
|
return magnetUtil.encode(magnetHash)
|
|
|
|
}
|