PeerTube/server/models/video/video.ts

1200 lines
33 KiB
TypeScript
Raw Normal View History

2017-11-23 17:36:15 +01:00
import * as Bluebird from 'bluebird'
2017-10-31 16:31:24 +01:00
import { map, maxBy, truncate } from 'lodash'
2017-11-10 17:27:49 +01:00
import * as magnetUtil from 'magnet-uri'
2017-06-05 21:53:49 +02:00
import * as parseTorrent from 'parse-torrent'
2017-05-15 22:22:03 +02:00
import { join } from 'path'
2017-05-22 20:58:25 +02:00
import * as Sequelize from 'sequelize'
2017-11-10 17:27:49 +01:00
import { VideoPrivacy, VideoResolution } from '../../../shared'
import { VideoTorrentObject } from '../../../shared/models/activitypub/objects/video-torrent-object'
2017-11-23 17:36:15 +01:00
import { activityPubCollection } from '../../helpers/activitypub'
2017-11-27 17:30:46 +01:00
import { createTorrentPromise, renamePromise, statPromise, unlinkPromise, writeFilePromise } from '../../helpers/core-utils'
import { isVideoCategoryValid, isVideoLanguageValid, isVideoPrivacyValid } from '../../helpers/custom-validators/videos'
import { generateImageFromVideoFile, getVideoFileHeight, transcode } from '../../helpers/ffmpeg-utils'
import {
isActivityPubUrlValid,
isVideoDescriptionValid,
isVideoDurationValid,
isVideoLicenceValid,
isVideoNameValid,
isVideoNSFWValid
} from '../../helpers/index'
import { logger } from '../../helpers/logger'
2017-05-15 22:22:03 +02:00
import {
2017-11-10 17:27:49 +01:00
API_VERSION,
2017-05-15 22:22:03 +02:00
CONFIG,
2017-11-10 17:27:49 +01:00
CONSTRAINTS_FIELDS,
PREVIEWS_SIZE,
2017-05-15 22:22:03 +02:00
REMOTE_SCHEME,
STATIC_PATHS,
2017-11-10 17:27:49 +01:00
THUMBNAILS_SIZE,
2017-05-15 22:22:03 +02:00
VIDEO_CATEGORIES,
VIDEO_LANGUAGES,
2017-11-10 17:27:49 +01:00
VIDEO_LICENCES,
2017-10-31 11:52:52 +01:00
VIDEO_PRIVACIES
} from '../../initializers/constants'
2017-11-27 17:30:46 +01:00
import { getAnnounceActivityPubUrl } from '../../lib/activitypub/url'
2017-11-23 17:36:15 +01:00
import { sendDeleteVideo } from '../../lib/index'
2017-06-16 09:45:46 +02:00
import { addMethodsToModel, getSort } from '../utils'
2017-11-10 17:27:49 +01:00
import { TagInstance } from './tag-interface'
import { VideoFileInstance, VideoFileModel } from './video-file-interface'
import { VideoAttributes, VideoInstance, VideoMethods } from './video-interface'
2017-05-22 20:58:25 +02:00
let Video: Sequelize.Model<VideoInstance, VideoAttributes>
let getOriginalFile: VideoMethods.GetOriginalFile
2017-05-22 20:58:25 +02:00
let getVideoFilename: VideoMethods.GetVideoFilename
let getThumbnailName: VideoMethods.GetThumbnailName
2017-10-16 10:05:49 +02:00
let getThumbnailPath: VideoMethods.GetThumbnailPath
2017-05-22 20:58:25 +02:00
let getPreviewName: VideoMethods.GetPreviewName
2017-10-16 10:05:49 +02:00
let getPreviewPath: VideoMethods.GetPreviewPath
let getTorrentFileName: VideoMethods.GetTorrentFileName
2017-05-22 20:58:25 +02:00
let isOwned: VideoMethods.IsOwned
2017-08-25 11:45:31 +02:00
let toFormattedJSON: VideoMethods.ToFormattedJSON
2017-10-24 19:41:09 +02:00
let toFormattedDetailsJSON: VideoMethods.ToFormattedDetailsJSON
2017-11-09 17:51:58 +01:00
let toActivityPubObject: VideoMethods.ToActivityPubObject
let optimizeOriginalVideofile: VideoMethods.OptimizeOriginalVideofile
let transcodeOriginalVideofile: VideoMethods.TranscodeOriginalVideofile
let createPreview: VideoMethods.CreatePreview
let createThumbnail: VideoMethods.CreateThumbnail
let getVideoFilePath: VideoMethods.GetVideoFilePath
let createTorrentAndSetInfoHash: VideoMethods.CreateTorrentAndSetInfoHash
let getOriginalFileHeight: VideoMethods.GetOriginalFileHeight
2017-10-16 10:05:49 +02:00
let getEmbedPath: VideoMethods.GetEmbedPath
2017-10-30 10:16:27 +01:00
let getDescriptionPath: VideoMethods.GetDescriptionPath
let getTruncatedDescription: VideoMethods.GetTruncatedDescription
2017-11-09 17:51:58 +01:00
let getCategoryLabel: VideoMethods.GetCategoryLabel
let getLicenceLabel: VideoMethods.GetLicenceLabel
let getLanguageLabel: VideoMethods.GetLanguageLabel
2017-05-22 20:58:25 +02:00
let list: VideoMethods.List
let listForApi: VideoMethods.ListForApi
2017-11-21 18:23:10 +01:00
let listAllAndSharedByAccountForOutbox: VideoMethods.ListAllAndSharedByAccountForOutbox
2017-10-31 11:52:52 +01:00
let listUserVideosForApi: VideoMethods.ListUserVideosForApi
2017-05-22 20:58:25 +02:00
let load: VideoMethods.Load
2017-11-16 15:55:01 +01:00
let loadByUrlAndPopulateAccount: VideoMethods.LoadByUrlAndPopulateAccount
let loadByUUID: VideoMethods.LoadByUUID
2017-11-10 14:34:45 +01:00
let loadByUUIDOrURL: VideoMethods.LoadByUUIDOrURL
2017-11-15 11:00:25 +01:00
let loadAndPopulateAccountAndServerAndTags: VideoMethods.LoadAndPopulateAccountAndServerAndTags
let loadByUUIDAndPopulateAccountAndServerAndTags: VideoMethods.LoadByUUIDAndPopulateAccountAndServerAndTags
let searchAndPopulateAccountAndServerAndTags: VideoMethods.SearchAndPopulateAccountAndServerAndTags
let removeThumbnail: VideoMethods.RemoveThumbnail
let removePreview: VideoMethods.RemovePreview
let removeFile: VideoMethods.RemoveFile
let removeTorrent: VideoMethods.RemoveTorrent
2017-05-22 20:58:25 +02:00
2017-06-11 17:35:32 +02:00
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
Video = sequelize.define<VideoInstance, VideoAttributes>('Video',
2016-12-11 21:50:51 +01:00
{
uuid: {
2016-12-11 21:50:51 +01:00
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
allowNull: false,
2016-12-28 15:49:23 +01:00
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: {
2017-07-11 17:04:57 +02:00
nameValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoNameValid(value)
2016-12-28 15:49:23 +01:00
if (res === false) throw new Error('Video name is not valid.')
}
}
2016-11-11 11:52:24 +01:00
},
2017-03-22 21:15:55 +01:00
category: {
type: DataTypes.INTEGER,
allowNull: true,
defaultValue: null,
2017-03-22 21:15:55 +01:00
validate: {
2017-07-11 17:04:57 +02:00
categoryValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoCategoryValid(value)
2017-03-22 21:15:55 +01:00
if (res === false) throw new Error('Video category is not valid.')
}
}
},
2017-03-27 20:53:11 +02:00
licence: {
type: DataTypes.INTEGER,
allowNull: true,
2017-04-07 12:13:37 +02:00
defaultValue: null,
2017-03-27 20:53:11 +02:00
validate: {
2017-07-11 17:04:57 +02:00
licenceValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoLicenceValid(value)
2017-03-27 20:53:11 +02:00
if (res === false) throw new Error('Video licence is not valid.')
}
}
},
2017-04-07 12:13:37 +02:00
language: {
type: DataTypes.INTEGER,
allowNull: true,
defaultValue: null,
2017-04-07 12:13:37 +02:00
validate: {
2017-07-11 17:04:57 +02:00
languageValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoLanguageValid(value)
2017-04-07 12:13:37 +02:00
if (res === false) throw new Error('Video language is not valid.')
}
}
},
2017-10-31 11:52:52 +01:00
privacy: {
type: DataTypes.INTEGER,
allowNull: false,
validate: {
privacyValid: value => {
const res = isVideoPrivacyValid(value)
if (res === false) throw new Error('Video privacy is not valid.')
}
}
},
2017-03-28 21:19:46 +02:00
nsfw: {
type: DataTypes.BOOLEAN,
allowNull: false,
validate: {
2017-07-11 17:04:57 +02:00
nsfwValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoNSFWValid(value)
2017-03-28 21:19:46 +02:00
if (res === false) throw new Error('Video nsfw attribute is not valid.')
}
}
},
2016-12-11 21:50:51 +01:00
description: {
2017-10-30 10:16:27 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max),
allowNull: true,
defaultValue: null,
2016-12-28 15:49:23 +01:00
validate: {
2017-07-11 17:04:57 +02:00
descriptionValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoDescriptionValid(value)
2016-12-28 15:49:23 +01:00
if (res === false) throw new Error('Video description 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: {
2017-07-11 17:04:57 +02:00
durationValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoDurationValid(value)
2016-12-28 15:49:23 +01:00
if (res === false) throw new Error('Video duration is not valid.')
}
}
},
views: {
type: DataTypes.INTEGER,
allowNull: false,
defaultValue: 0,
validate: {
min: 0,
isInt: true
}
2017-03-08 21:35:43 +01: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
}
},
remote: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false
2017-11-09 17:51:58 +01:00
},
url: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
2017-11-14 10:57:56 +01:00
urlValid: value => {
2017-11-27 17:30:46 +01:00
const res = isActivityPubUrlValid(value)
2017-11-14 10:57:56 +01:00
if (res === false) throw new Error('Video URL is not valid.')
}
2017-11-09 17:51:58 +01:00
}
}
2016-12-11 21:50:51 +01:00
},
{
2016-12-29 09:33:28 +01:00
indexes: [
{
fields: [ 'name' ]
},
{
fields: [ 'createdAt' ]
},
{
fields: [ 'duration' ]
},
{
fields: [ 'views' ]
2017-03-08 21:35:43 +01:00
},
{
fields: [ 'likes' ]
},
{
fields: [ 'uuid' ]
2017-10-24 19:41:09 +02:00
},
{
fields: [ 'channelId' ]
2016-12-29 09:33:28 +01:00
}
],
2016-12-11 21:50:51 +01:00
hooks: {
afterDestroy
}
}
)
2017-05-22 20:58:25 +02:00
const classMethods = [
associate,
list,
2017-11-21 18:23:10 +01:00
listAllAndSharedByAccountForOutbox,
2017-05-22 20:58:25 +02:00
listForApi,
2017-10-31 11:52:52 +01:00
listUserVideosForApi,
2017-05-22 20:58:25 +02:00
load,
2017-11-16 15:55:01 +01:00
loadByUrlAndPopulateAccount,
2017-11-15 11:00:25 +01:00
loadAndPopulateAccountAndServerAndTags,
2017-11-10 14:34:45 +01:00
loadByUUIDOrURL,
loadByUUID,
2017-11-15 11:00:25 +01:00
loadByUUIDAndPopulateAccountAndServerAndTags,
searchAndPopulateAccountAndServerAndTags
2017-05-22 20:58:25 +02:00
]
const instanceMethods = [
createPreview,
createThumbnail,
createTorrentAndSetInfoHash,
2017-05-22 20:58:25 +02:00
getPreviewName,
2017-10-16 10:05:49 +02:00
getPreviewPath,
getThumbnailName,
2017-10-16 10:05:49 +02:00
getThumbnailPath,
getTorrentFileName,
getVideoFilename,
getVideoFilePath,
getOriginalFile,
2017-05-22 20:58:25 +02:00
isOwned,
removeFile,
removePreview,
removeThumbnail,
removeTorrent,
2017-11-09 17:51:58 +01:00
toActivityPubObject,
2017-08-25 11:45:31 +02:00
toFormattedJSON,
2017-10-24 19:41:09 +02:00
toFormattedDetailsJSON,
optimizeOriginalVideofile,
transcodeOriginalVideofile,
2017-10-16 10:05:49 +02:00
getOriginalFileHeight,
2017-10-30 10:16:27 +01:00
getEmbedPath,
getTruncatedDescription,
2017-11-09 17:51:58 +01:00
getDescriptionPath,
getCategoryLabel,
getLicenceLabel,
getLanguageLabel
2017-05-22 20:58:25 +02:00
]
addMethodsToModel(Video, classMethods, instanceMethods)
2016-12-11 21:50:51 +01:00
return Video
}
// ------------------------------ METHODS ------------------------------
2016-12-11 21:50:51 +01:00
function associate (models) {
2017-10-24 19:41:09 +02:00
Video.belongsTo(models.VideoChannel, {
2016-12-11 21:50:51 +01:00
foreignKey: {
2017-10-24 19:41:09 +02:00
name: 'channelId',
2016-12-11 21:50:51 +01:00
allowNull: false
},
onDelete: 'cascade'
})
2016-12-24 16:59:17 +01:00
2017-05-22 20:58:25 +02:00
Video.belongsToMany(models.Tag, {
2016-12-24 16:59:17 +01:00
foreignKey: 'videoId',
through: models.VideoTag,
onDelete: 'cascade'
})
2017-01-04 20:59:23 +01:00
2017-05-22 20:58:25 +02:00
Video.hasMany(models.VideoAbuse, {
2017-01-04 20:59:23 +01:00
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
Video.hasMany(models.VideoFile, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
2017-11-21 18:23:10 +01:00
Video.hasMany(models.VideoShare, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
2017-11-23 16:55:13 +01:00
Video.hasMany(models.AccountVideoRate, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
2016-12-11 21:50:51 +01:00
}
function afterDestroy (video: VideoInstance) {
const tasks = []
2016-11-11 15:20:03 +01:00
tasks.push(
video.removeThumbnail()
)
2016-11-11 15:20:03 +01:00
if (video.isOwned()) {
tasks.push(
2017-11-13 17:39:41 +01:00
video.removePreview(),
sendDeleteVideo(video, undefined)
)
// Remove physical files and torrents
video.VideoFiles.forEach(file => {
tasks.push(video.removeFile(file))
tasks.push(video.removeTorrent(file))
})
2016-11-11 15:20:03 +01:00
}
return Promise.all(tasks)
.catch(err => {
2017-10-26 12:06:57 +02:00
logger.error('Some errors when removing files of video %s in after destroy hook.', video.uuid, err)
})
}
getOriginalFile = function (this: VideoInstance) {
if (Array.isArray(this.VideoFiles) === false) return undefined
// The original file is the file that have the higher resolution
return maxBy(this.VideoFiles, file => file.resolution)
}
getVideoFilename = function (this: VideoInstance, videoFile: VideoFileInstance) {
return this.uuid + '-' + videoFile.resolution + videoFile.extname
2016-11-11 15:20:03 +01:00
}
getThumbnailName = function (this: VideoInstance) {
2016-11-11 15:20:03 +01:00
// We always have a copy of the thumbnail
const extension = '.jpg'
return this.uuid + extension
}
getPreviewName = function (this: VideoInstance) {
2016-11-11 15:20:03 +01:00
const extension = '.jpg'
return this.uuid + extension
2016-11-11 15:20:03 +01:00
}
getTorrentFileName = function (this: VideoInstance, videoFile: VideoFileInstance) {
2016-11-11 15:20:03 +01:00
const extension = '.torrent'
return this.uuid + '-' + videoFile.resolution + extension
}
isOwned = function (this: VideoInstance) {
return this.remote === false
}
createPreview = function (this: VideoInstance, videoFile: VideoFileInstance) {
const imageSize = PREVIEWS_SIZE.width + 'x' + PREVIEWS_SIZE.height
return generateImageFromVideoFile(
this.getVideoFilePath(videoFile),
CONFIG.STORAGE.PREVIEWS_DIR,
this.getPreviewName(),
imageSize
)
}
createThumbnail = function (this: VideoInstance, videoFile: VideoFileInstance) {
2017-10-16 10:05:49 +02:00
const imageSize = THUMBNAILS_SIZE.width + 'x' + THUMBNAILS_SIZE.height
return generateImageFromVideoFile(
this.getVideoFilePath(videoFile),
CONFIG.STORAGE.THUMBNAILS_DIR,
this.getThumbnailName(),
2017-10-16 10:05:49 +02:00
imageSize
)
}
getVideoFilePath = function (this: VideoInstance, videoFile: VideoFileInstance) {
return join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
}
2017-11-09 17:51:58 +01:00
createTorrentAndSetInfoHash = async 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)
]
}
2017-11-09 17:51:58 +01:00
const torrent = await createTorrentPromise(this.getVideoFilePath(videoFile), options)
2017-09-07 15:27:35 +02:00
2017-11-09 17:51:58 +01:00
const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
logger.info('Creating torrent %s.', filePath)
2017-11-09 17:51:58 +01:00
await writeFilePromise(filePath, torrent)
const parsedTorrent = parseTorrent(torrent)
videoFile.infoHash = parsedTorrent.infoHash
}
2017-10-16 10:05:49 +02: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 11:45:31 +02:00
toFormattedJSON = function (this: VideoInstance) {
2017-11-15 11:00:25 +01:00
let serverHost
2016-12-11 21:50:51 +01:00
2017-11-15 11:00:25 +01:00
if (this.VideoChannel.Account.Server) {
serverHost = this.VideoChannel.Account.Server.host
2016-12-11 21:50:51 +01:00
} else {
// It means it's our video
2017-11-15 11:00:25 +01:00
serverHost = CONFIG.WEBSERVER.HOST
2016-12-11 21:50:51 +01:00
}
const json = {
2016-12-11 21:50:51 +01:00
id: this.id,
uuid: this.uuid,
name: this.name,
2017-03-22 21:15:55 +01:00
category: this.category,
2017-11-09 17:51:58 +01:00
categoryLabel: this.getCategoryLabel(),
2017-03-27 20:53:11 +02:00
licence: this.licence,
2017-11-09 17:51:58 +01:00
licenceLabel: this.getLicenceLabel(),
2017-04-07 12:13:37 +02:00
language: this.language,
2017-11-09 17:51:58 +01:00
languageLabel: this.getLanguageLabel(),
2017-03-28 21:19:46 +02:00
nsfw: this.nsfw,
2017-10-30 10:16:27 +01:00
description: this.getTruncatedDescription(),
2017-11-15 11:00:25 +01:00
serverHost,
isLocal: this.isOwned(),
2017-12-06 17:15:59 +01:00
accountName: this.VideoChannel.Account.name,
2017-10-24 19:41:09 +02:00
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) {
2017-10-30 10:16:27 +01:00
const formattedJson = this.toFormattedJSON()
2017-10-24 19:41:09 +02:00
2017-11-15 11:00:25 +01:00
// Maybe our server is not up to date and there are new privacy settings since our version
2017-10-31 11:52:52 +01:00
let privacyLabel = VIDEO_PRIVACIES[this.privacy]
if (!privacyLabel) privacyLabel = 'Unknown'
2017-10-30 10:16:27 +01:00
const detailsJson = {
2017-10-31 11:52:52 +01:00
privacyLabel,
privacy: this.privacy,
2017-10-30 10:16:27 +01:00
descriptionPath: this.getDescriptionPath(),
2017-10-24 19:41:09 +02:00
channel: this.VideoChannel.toFormattedJSON(),
2017-12-06 17:15:59 +01:00
account: this.VideoChannel.Account.toFormattedJSON(),
files: []
}
// Format and sort video files
const { baseUrlHttp, baseUrlWs } = getBaseUrls(this)
2017-10-30 10:16:27 +01:00
detailsJson.files = this.VideoFiles
.map(videoFile => {
let resolutionLabel = videoFile.resolution + 'p'
const videoFileJson = {
resolution: videoFile.resolution,
resolutionLabel,
magnetUri: generateMagnetUri(this, videoFile, baseUrlHttp, baseUrlWs),
size: videoFile.size,
torrentUrl: getTorrentUrl(this, videoFile, baseUrlHttp),
fileUrl: getVideoFileUrl(this, videoFile, baseUrlHttp)
}
return videoFileJson
})
.sort((a, b) => {
if (a.resolution < b.resolution) return 1
if (a.resolution === b.resolution) return 0
return -1
})
2017-10-30 10:16:27 +01:00
return Object.assign(formattedJson, detailsJson)
}
2017-11-09 17:51:58 +01:00
toActivityPubObject = function (this: VideoInstance) {
const { baseUrlHttp, baseUrlWs } = getBaseUrls(this)
2017-11-17 15:20:42 +01:00
if (!this.Tags) this.Tags = []
2017-11-09 17:51:58 +01:00
const tag = this.Tags.map(t => ({
2017-11-10 17:27:49 +01:00
type: 'Hashtag' as 'Hashtag',
2017-11-09 17:51:58 +01:00
name: t.name
}))
2017-11-22 16:25:03 +01:00
let language
if (this.language) {
language = {
identifier: this.language + '',
name: this.getLanguageLabel()
}
}
2017-12-08 17:31:21 +01:00
let category
if (this.category) {
category = {
identifier: this.category + '',
name: this.getCategoryLabel()
}
}
let licence
if (this.licence) {
licence = {
identifier: this.licence + '',
name: this.getLicenceLabel()
}
}
2017-11-23 16:55:13 +01:00
let likesObject
let dislikesObject
if (Array.isArray(this.AccountVideoRates)) {
const likes: string[] = []
const dislikes: string[] = []
for (const rate of this.AccountVideoRates) {
if (rate.type === 'like') {
likes.push(rate.Account.url)
} else if (rate.type === 'dislike') {
dislikes.push(rate.Account.url)
}
}
likesObject = activityPubCollection(likes)
dislikesObject = activityPubCollection(dislikes)
}
let sharesObject
if (Array.isArray(this.VideoShares)) {
const shares: string[] = []
for (const videoShare of this.VideoShares) {
const shareUrl = getAnnounceActivityPubUrl(this.url, videoShare.Account)
shares.push(shareUrl)
}
sharesObject = activityPubCollection(shares)
}
2017-11-09 17:51:58 +01:00
const url = []
for (const file of this.VideoFiles) {
url.push({
type: 'Link',
mimeType: 'video/' + file.extname.replace('.', ''),
2017-11-09 17:51:58 +01:00
url: getVideoFileUrl(this, file, baseUrlHttp),
width: file.resolution,
size: file.size
})
2017-11-09 17:51:58 +01:00
url.push({
type: 'Link',
mimeType: 'application/x-bittorrent',
url: getTorrentUrl(this, file, baseUrlHttp),
width: file.resolution
})
2017-11-09 17:51:58 +01:00
url.push({
type: 'Link',
mimeType: 'application/x-bittorrent;x-scheme-handler/magnet',
url: generateMagnetUri(this, file, baseUrlHttp, baseUrlWs),
width: file.resolution
})
}
// Add video url too
url.push({
type: 'Link',
mimeType: 'text/html',
url: CONFIG.WEBSERVER.URL + '/videos/watch/' + this.uuid
})
2017-11-09 17:51:58 +01:00
const videoObject: VideoTorrentObject = {
2017-11-10 17:27:49 +01:00
type: 'Video' as 'Video',
2017-11-20 09:43:39 +01:00
id: this.url,
2016-12-29 19:07:05 +01:00
name: this.name,
2017-11-09 17:51:58 +01:00
// https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
duration: 'PT' + this.duration + 'S',
uuid: this.uuid,
tag,
2017-12-08 17:31:21 +01:00
category,
licence,
2017-11-22 16:25:03 +01:00
language,
2017-03-08 21:35:43 +01:00
views: this.views,
2017-11-09 17:51:58 +01:00
nsfw: this.nsfw,
published: this.createdAt.toISOString(),
updated: this.updatedAt.toISOString(),
2017-11-09 17:51:58 +01:00
mediaType: 'text/markdown',
content: this.getTruncatedDescription(),
icon: {
type: 'Image',
url: getThumbnailUrl(this, baseUrlHttp),
mediaType: 'image/jpeg',
width: THUMBNAILS_SIZE.width,
height: THUMBNAILS_SIZE.height
},
2017-11-23 16:55:13 +01:00
url,
likes: likesObject,
dislikes: dislikesObject,
shares: sharesObject
2016-12-29 19:07:05 +01:00
}
2017-11-09 17:51:58 +01:00
return videoObject
2016-12-29 19:07:05 +01:00
}
2017-10-30 10:16:27 +01:00
getTruncatedDescription = function (this: VideoInstance) {
if (!this.description) return null
2017-10-30 10:16:27 +01:00
const options = {
length: CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
}
return truncate(this.description, options)
}
2017-11-09 17:51:58 +01:00
optimizeOriginalVideofile = async function (this: VideoInstance) {
2017-05-15 22:22:03 +02:00
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
const newExtname = '.mp4'
const inputVideoFile = this.getOriginalFile()
const videoInputPath = join(videosDirectory, this.getVideoFilename(inputVideoFile))
const videoOutputPath = join(videosDirectory, this.id + '-transcoded' + newExtname)
const transcodeOptions = {
inputPath: videoInputPath,
outputPath: videoOutputPath
}
2017-11-09 17:51:58 +01:00
try {
// Could be very long!
await transcode(transcodeOptions)
2017-11-09 17:51:58 +01:00
await unlinkPromise(videoInputPath)
2017-11-09 17:51:58 +01:00
// Important to do this before getVideoFilename() to take in account the new file extension
inputVideoFile.set('extname', newExtname)
await renamePromise(videoOutputPath, this.getVideoFilePath(inputVideoFile))
const stats = await statPromise(this.getVideoFilePath(inputVideoFile))
inputVideoFile.set('size', stats.size)
await this.createTorrentAndSetInfoHash(inputVideoFile)
await inputVideoFile.save()
} catch (err) {
// Auto destruction...
this.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', err))
throw err
}
}
2017-11-09 17:51:58 +01:00
transcodeOriginalVideofile = async 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))
const transcodeOptions = {
inputPath: videoInputPath,
outputPath: videoOutputPath,
resolution
}
2017-11-09 17:51:58 +01:00
await transcode(transcodeOptions)
const stats = await statPromise(videoOutputPath)
newVideoFile.set('size', stats.size)
await this.createTorrentAndSetInfoHash(newVideoFile)
await newVideoFile.save()
this.VideoFiles.push(newVideoFile)
}
getOriginalFileHeight = function (this: VideoInstance) {
const originalFilePath = this.getVideoFilePath(this.getOriginalFile())
return getVideoFileHeight(originalFilePath)
}
2017-10-30 10:16:27 +01:00
getDescriptionPath = function (this: VideoInstance) {
return `/api/${API_VERSION}/videos/${this.uuid}/description`
}
2017-11-09 17:51:58 +01:00
getCategoryLabel = function (this: VideoInstance) {
let categoryLabel = VIDEO_CATEGORIES[this.category]
if (!categoryLabel) categoryLabel = 'Misc'
return categoryLabel
}
getLicenceLabel = function (this: VideoInstance) {
let licenceLabel = VIDEO_LICENCES[this.licence]
if (!licenceLabel) licenceLabel = 'Unknown'
return licenceLabel
}
getLanguageLabel = function (this: VideoInstance) {
let languageLabel = VIDEO_LANGUAGES[this.language]
if (!languageLabel) languageLabel = 'Unknown'
return languageLabel
}
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 20:07:54 +02:00
const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
return unlinkPromise(torrentPath)
}
// ------------------------------ STATICS ------------------------------
list = function () {
const query = {
include: [ Video['sequelize'].models.VideoFile ]
}
return Video.findAll(query)
2016-12-25 09:44:57 +01:00
}
2017-11-21 18:23:10 +01:00
listAllAndSharedByAccountForOutbox = function (accountId: number, start: number, count: number) {
function getRawQuery (select: string) {
const queryVideo = 'SELECT ' + select + ' FROM "Videos" AS "Video" ' +
'INNER JOIN "VideoChannels" AS "VideoChannel" ON "VideoChannel"."id" = "Video"."channelId" ' +
'WHERE "VideoChannel"."accountId" = ' + accountId
const queryVideoShare = 'SELECT ' + select + ' FROM "VideoShares" AS "VideoShare" ' +
'INNER JOIN "Videos" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
'WHERE "VideoShare"."accountId" = ' + accountId
let rawQuery = `(${queryVideo}) UNION (${queryVideoShare})`
return rawQuery
}
const rawQuery = getRawQuery('"Video"."id"')
const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
2017-11-21 18:23:10 +01:00
const query = {
distinct: true,
offset: start,
limit: count,
order: [ getSort('createdAt'), [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ],
where: {
id: {
[Sequelize.Op.in]: Sequelize.literal('(' + rawQuery + ')')
}
},
include: [
{
model: Video['sequelize'].models.VideoShare,
2017-11-22 16:25:03 +01:00
required: false,
where: {
[Sequelize.Op.and]: [
{
id: {
[Sequelize.Op.not]: null
}
},
{
accountId
}
]
},
include: [ Video['sequelize'].models.Account ]
2017-11-21 18:23:10 +01:00
},
{
model: Video['sequelize'].models.VideoChannel,
required: true,
include: [
{
model: Video['sequelize'].models.Account,
required: true
}
]
},
2017-11-23 16:55:13 +01:00
{
model: Video['sequelize'].models.AccountVideoRate,
include: [ Video['sequelize'].models.Account ]
},
Video['sequelize'].models.VideoFile,
Video['sequelize'].models.Tag
2017-11-21 18:23:10 +01:00
]
}
return Bluebird.all([
Video.findAll(query),
Video['sequelize'].query(rawCountQuery, { type: Sequelize.QueryTypes.SELECT })
]).then(([ rows, totals ]) => {
// totals: totalVideos + totalVideoShares
let totalVideos = 0
let totalVideoShares = 0
if (totals[0]) totalVideos = parseInt(totals[0].total, 10)
if (totals[1]) totalVideoShares = parseInt(totals[1].total, 10)
const total = totalVideos + totalVideoShares
2017-11-21 18:23:10 +01:00
return {
data: rows,
total: total
2017-11-21 18:23:10 +01:00
}
})
}
2017-10-31 11:52:52 +01:00
listUserVideosForApi = function (userId: number, start: number, count: number, sort: string) {
const query = {
distinct: true,
offset: start,
limit: count,
order: [ getSort(sort), [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ],
include: [
{
model: Video['sequelize'].models.VideoChannel,
required: true,
include: [
{
2017-11-09 17:51:58 +01:00
model: Video['sequelize'].models.Account,
2017-10-31 11:52:52 +01:00
where: {
userId
},
required: true
}
]
},
Video['sequelize'].models.Tag
]
}
return Video.findAndCountAll(query).then(({ rows, count }) => {
return {
data: rows,
total: count
}
})
}
listForApi = function (start: number, count: number, sort: string) {
2016-12-11 21:50:51 +01:00
const query = {
2017-05-22 20:58:25 +02:00
distinct: true,
2016-12-11 21:50:51 +01:00
offset: start,
limit: count,
2017-05-22 20:58:25 +02:00
order: [ getSort(sort), [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ],
2016-12-11 21:50:51 +01:00
include: [
{
2017-10-24 19:41:09 +02:00
model: Video['sequelize'].models.VideoChannel,
2017-11-15 16:28:35 +01:00
required: true,
2017-10-24 19:41:09 +02:00
include: [
{
2017-11-09 17:51:58 +01:00
model: Video['sequelize'].models.Account,
2017-11-15 16:28:35 +01:00
required: true,
2017-10-24 19:41:09 +02:00
include: [
{
2017-11-15 11:00:25 +01:00
model: Video['sequelize'].models.Server,
2017-10-24 19:41:09 +02:00
required: false
}
]
}
]
2016-12-24 16:59:17 +01:00
},
2017-10-31 11:52:52 +01:00
Video['sequelize'].models.Tag
Add ability for an administrator to remove any video (#61) * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method
2017-04-26 21:22:10 +02:00
],
2017-05-22 20:58:25 +02:00
where: createBaseVideosWhere()
2016-12-11 21:50:51 +01:00
}
return Video.findAndCountAll(query).then(({ rows, count }) => {
return {
data: rows,
total: count
}
2016-12-11 21:50:51 +01:00
})
}
load = function (id: number) {
return Video.findById(id)
2016-12-11 21:50:51 +01:00
}
2017-10-24 19:41:09 +02:00
loadByUUID = function (uuid: string, t?: Sequelize.Transaction) {
const query: Sequelize.FindOptions<VideoAttributes> = {
where: {
uuid
},
include: [ Video['sequelize'].models.VideoFile ]
}
if (t !== undefined) query.transaction = t
return Video.findOne(query)
}
2017-11-16 15:55:01 +01:00
loadByUrlAndPopulateAccount = function (url: string, t?: Sequelize.Transaction) {
const query: Sequelize.FindOptions<VideoAttributes> = {
where: {
url
},
include: [
Video['sequelize'].models.VideoFile,
{
model: Video['sequelize'].models.VideoChannel,
include: [ Video['sequelize'].models.Account ]
}
]
}
if (t !== undefined) query.transaction = t
return Video.findOne(query)
}
2017-11-10 14:34:45 +01:00
loadByUUIDOrURL = function (uuid: string, url: string, t?: Sequelize.Transaction) {
const query: Sequelize.FindOptions<VideoAttributes> = {
where: {
[Sequelize.Op.or]: [
{ uuid },
{ url }
]
},
include: [ Video['sequelize'].models.VideoFile ]
}
if (t !== undefined) query.transaction = t
return Video.findOne(query)
}
2017-11-15 11:00:25 +01:00
loadAndPopulateAccountAndServerAndTags = function (id: number) {
2016-12-11 21:50:51 +01:00
const options = {
2017-11-24 15:00:10 +01:00
order: [ [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ],
2016-12-11 21:50:51 +01:00
include: [
{
2017-10-24 19:41:09 +02:00
model: Video['sequelize'].models.VideoChannel,
include: [
{
2017-11-09 17:51:58 +01:00
model: Video['sequelize'].models.Account,
2017-11-15 11:00:25 +01:00
include: [ { model: Video['sequelize'].models.Server, required: false } ]
2017-10-24 19:41:09 +02:00
}
]
2016-12-24 16:59:17 +01:00
},
2017-11-23 16:55:13 +01:00
{
model: Video['sequelize'].models.AccountVideoRate,
include: [ Video['sequelize'].models.Account ]
},
{
model: Video['sequelize'].models.VideoShare,
include: [ Video['sequelize'].models.Account ]
},
Video['sequelize'].models.Tag,
Video['sequelize'].models.VideoFile
2016-12-11 21:50:51 +01:00
]
}
return Video.findById(id, options)
}
2017-11-15 11:00:25 +01:00
loadByUUIDAndPopulateAccountAndServerAndTags = function (uuid: string) {
const options = {
2017-11-24 15:00:10 +01:00
order: [ [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ],
where: {
uuid
},
include: [
{
2017-10-24 19:41:09 +02:00
model: Video['sequelize'].models.VideoChannel,
include: [
{
2017-11-09 17:51:58 +01:00
model: Video['sequelize'].models.Account,
2017-11-15 11:00:25 +01:00
include: [ { model: Video['sequelize'].models.Server, required: false } ]
2017-10-24 19:41:09 +02:00
}
]
},
2017-11-23 16:55:13 +01:00
{
model: Video['sequelize'].models.AccountVideoRate,
include: [ Video['sequelize'].models.Account ]
},
{
model: Video['sequelize'].models.VideoShare,
include: [ Video['sequelize'].models.Account ]
},
Video['sequelize'].models.Tag,
Video['sequelize'].models.VideoFile
]
}
return Video.findOne(options)
}
2017-12-05 17:46:33 +01:00
searchAndPopulateAccountAndServerAndTags = function (value: string, start: number, count: number, sort: string) {
2017-11-15 11:00:25 +01:00
const serverInclude: Sequelize.IncludeOptions = {
model: Video['sequelize'].models.Server,
2016-12-24 16:59:17 +01:00
required: false
2016-12-11 21:50:51 +01:00
}
2016-12-24 16:59:17 +01:00
2017-11-09 17:51:58 +01:00
const accountInclude: Sequelize.IncludeOptions = {
model: Video['sequelize'].models.Account,
2017-11-15 11:00:25 +01:00
include: [ serverInclude ]
2017-10-24 19:41:09 +02:00
}
const videoChannelInclude: Sequelize.IncludeOptions = {
model: Video['sequelize'].models.VideoChannel,
2017-11-09 17:51:58 +01:00
include: [ accountInclude ],
2017-10-24 19:41:09 +02:00
required: true
2016-12-11 21:50:51 +01:00
}
2017-07-11 10:59:13 +02:00
const tagInclude: Sequelize.IncludeOptions = {
2017-05-22 20:58:25 +02:00
model: Video['sequelize'].models.Tag
2016-12-24 16:59:17 +01:00
}
2017-08-25 18:36:49 +02:00
const query: Sequelize.FindOptions<VideoAttributes> = {
2017-05-22 20:58:25 +02:00
distinct: true,
where: createBaseVideosWhere(),
2016-12-11 21:50:51 +01:00
offset: start,
limit: count,
2017-05-22 20:58:25 +02:00
order: [ getSort(sort), [ Video['sequelize'].models.Tag, 'name', 'ASC' ] ]
2016-12-11 21:50:51 +01:00
}
2017-12-05 17:46:33 +01:00
// TODO: search on tags too
// const escapedValue = Video['sequelize'].escape('%' + value + '%')
// query.where['id'][Sequelize.Op.in] = Video['sequelize'].literal(
// `(SELECT "VideoTags"."videoId"
// FROM "Tags"
// INNER JOIN "VideoTags" ON "Tags"."id" = "VideoTags"."tagId"
// WHERE name ILIKE ${escapedValue}
// )`
// )
// TODO: search on account too
// accountInclude.where = {
// name: {
// [Sequelize.Op.iLike]: '%' + value + '%'
// }
// }
query.where['name'] = {
[Sequelize.Op.iLike]: '%' + value + '%'
}
2016-12-24 16:59:17 +01:00
query.include = [
2017-10-31 11:52:52 +01:00
videoChannelInclude, tagInclude
2016-12-24 16:59:17 +01:00
]
return Video.findAndCountAll(query).then(({ rows, count }) => {
return {
data: rows,
total: count
}
2016-12-11 21:50:51 +01:00
})
}
// ---------------------------------------------------------------------------
function createBaseVideosWhere () {
return {
id: {
2017-10-26 16:59:02 +02:00
[Sequelize.Op.notIn]: Video['sequelize'].literal(
'(SELECT "BlacklistedVideos"."videoId" FROM "BlacklistedVideos")'
)
2017-10-31 11:52:52 +01:00
},
privacy: VideoPrivacy.PUBLIC
}
}
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-11-15 11:00:25 +01:00
baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + video.VideoChannel.Account.Server.host
baseUrlWs = REMOTE_SCHEME.WS + '://' + video.VideoChannel.Account.Server.host
}
return { baseUrlHttp, baseUrlWs }
}
2017-11-09 17:51:58 +01:00
function getThumbnailUrl (video: VideoInstance, baseUrlHttp: string) {
return baseUrlHttp + STATIC_PATHS.THUMBNAILS + video.getThumbnailName()
}
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)
}