]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video.ts
Playlist reorder support
[github/Chocobozzz/PeerTube.git] / server / models / video / video.ts
CommitLineData
39445ead 1import * as Bluebird from 'bluebird'
098eb377 2import { maxBy } from 'lodash'
571389d4 3import * as magnetUtil from 'magnet-uri'
4d4e5cd4 4import * as parseTorrent from 'parse-torrent'
098eb377 5import { join } from 'path'
e02643f3 6import * as Sequelize from 'sequelize'
3fd3ab2d 7import {
4ba3b8ea
C
8 AllowNull,
9 BeforeDestroy,
10 BelongsTo,
11 BelongsToMany,
12 Column,
13 CreatedAt,
14 DataType,
15 Default,
16 ForeignKey,
17 HasMany,
2baea0c7 18 HasOne,
4ba3b8ea 19 IFindOptions,
9a629c6e 20 IIncludeOptions,
4ba3b8ea
C
21 Is,
22 IsInt,
23 IsUUID,
24 Min,
25 Model,
26 Scopes,
27 Table,
9a629c6e 28 UpdatedAt
3fd3ab2d 29} from 'sequelize-typescript'
7ad9b984 30import { UserRight, VideoPrivacy, VideoState } from '../../../shared'
3fd3ab2d 31import { VideoTorrentObject } from '../../../shared/models/activitypub/objects'
a8462c8e 32import { Video, VideoDetails, VideoFile } from '../../../shared/models/videos'
066e94c5 33import { VideoFilter } from '../../../shared/models/videos/video-query.type'
62689b94 34import { createTorrentPromise, peertubeTruncate } from '../../helpers/core-utils'
da854ddd 35import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
c48e82b5 36import { isArray, isBooleanValid } from '../../helpers/custom-validators/misc'
3fd3ab2d 37import {
4ba3b8ea
C
38 isVideoCategoryValid,
39 isVideoDescriptionValid,
40 isVideoDurationValid,
41 isVideoLanguageValid,
42 isVideoLicenceValid,
418d092a 43 isVideoNameValid,
2baea0c7
C
44 isVideoPrivacyValid,
45 isVideoStateValid,
b64c950a 46 isVideoSupportValid
3fd3ab2d 47} from '../../helpers/custom-validators/videos'
098eb377 48import { generateImageFromVideoFile, getVideoFileResolution } from '../../helpers/ffmpeg-utils'
da854ddd 49import { logger } from '../../helpers/logger'
f05a1c30 50import { getServerActor } from '../../helpers/utils'
65fcc311 51import {
1297eb5d 52 ACTIVITY_PUB,
4ba3b8ea
C
53 API_VERSION,
54 CONFIG,
418d092a 55 CONSTRAINTS_FIELDS,
9c6ca37f 56 HLS_STREAMING_PLAYLIST_DIRECTORY,
418d092a 57 HLS_REDUNDANCY_DIRECTORY,
4ba3b8ea
C
58 PREVIEWS_SIZE,
59 REMOTE_SCHEME,
02756fbd 60 STATIC_DOWNLOAD_PATHS,
4ba3b8ea
C
61 STATIC_PATHS,
62 THUMBNAILS_SIZE,
63 VIDEO_CATEGORIES,
64 VIDEO_LANGUAGES,
65 VIDEO_LICENCES,
2baea0c7
C
66 VIDEO_PRIVACIES,
67 VIDEO_STATES
3fd3ab2d 68} from '../../initializers'
50d6de9c 69import { sendDeleteVideo } from '../../lib/activitypub/send'
3fd3ab2d
C
70import { AccountModel } from '../account/account'
71import { AccountVideoRateModel } from '../account/account-video-rate'
50d6de9c 72import { ActorModel } from '../activitypub/actor'
b6a4fd6b 73import { AvatarModel } from '../avatar/avatar'
3fd3ab2d 74import { ServerModel } from '../server/server'
418d092a
C
75import {
76 buildBlockedAccountSQL,
77 buildTrigramSearchIndex,
78 buildWhereIdOrUUID,
79 createSimilarityAttribute,
80 getVideoSort,
81 throwIfNotValid
82} from '../utils'
3fd3ab2d
C
83import { TagModel } from './tag'
84import { VideoAbuseModel } from './video-abuse'
418d092a 85import { VideoChannelModel, ScopeNames as VideoChannelScopeNames } from './video-channel'
da854ddd 86import { VideoCommentModel } from './video-comment'
3fd3ab2d
C
87import { VideoFileModel } from './video-file'
88import { VideoShareModel } from './video-share'
89import { VideoTagModel } from './video-tag'
2baea0c7 90import { ScheduleVideoUpdateModel } from './schedule-video-update'
40e87e9e 91import { VideoCaptionModel } from './video-caption'
26b7305a 92import { VideoBlacklistModel } from './video-blacklist'
098eb377 93import { remove, writeFile } from 'fs-extra'
9a629c6e 94import { VideoViewModel } from './video-views'
c48e82b5 95import { VideoRedundancyModel } from '../redundancy/video-redundancy'
098eb377
C
96import {
97 videoFilesModelToFormattedJSON,
98 VideoFormattingJSONOptions,
99 videoModelToActivityPubObject,
100 videoModelToFormattedDetailsJSON,
101 videoModelToFormattedJSON
102} from './video-format-utils'
6e46de09 103import { UserVideoHistoryModel } from '../account/user-video-history'
7ad9b984 104import { UserModel } from '../account/user'
dc133480 105import { VideoImportModel } from './video-import'
09209296 106import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
418d092a 107import { VideoPlaylistElementModel } from './video-playlist-element'
6e46de09 108
57c36b27
C
109// FIXME: Define indexes here because there is an issue with TS and Sequelize.literal when called directly in the annotation
110const indexes: Sequelize.DefineIndexesOptions[] = [
111 buildTrigramSearchIndex('video_name_trigram', 'name'),
112
8cd72bd3
C
113 { fields: [ 'createdAt' ] },
114 { fields: [ 'publishedAt' ] },
115 { fields: [ 'duration' ] },
8cd72bd3 116 { fields: [ 'views' ] },
8cd72bd3 117 { fields: [ 'channelId' ] },
7519127b
C
118 {
119 fields: [ 'originallyPublishedAt' ],
120 where: {
121 originallyPublishedAt: {
122 [Sequelize.Op.ne]: null
123 }
124 }
125 },
439b1744
C
126 {
127 fields: [ 'category' ], // We don't care videos with an unknown category
128 where: {
129 category: {
130 [Sequelize.Op.ne]: null
131 }
132 }
133 },
134 {
135 fields: [ 'licence' ], // We don't care videos with an unknown licence
136 where: {
137 licence: {
138 [Sequelize.Op.ne]: null
139 }
140 }
141 },
142 {
143 fields: [ 'language' ], // We don't care videos with an unknown language
144 where: {
145 language: {
146 [Sequelize.Op.ne]: null
147 }
148 }
149 },
150 {
151 fields: [ 'nsfw' ], // Most of the videos are not NSFW
152 where: {
153 nsfw: true
154 }
155 },
156 {
157 fields: [ 'remote' ], // Only index local videos
158 where: {
159 remote: false
160 }
161 },
57c36b27 162 {
8cd72bd3
C
163 fields: [ 'uuid' ],
164 unique: true
57c36b27
C
165 },
166 {
8ea6f49a 167 fields: [ 'url' ],
57c36b27
C
168 unique: true
169 }
170]
171
2baea0c7 172export enum ScopeNames {
afd2cba5
C
173 AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS',
174 FOR_API = 'FOR_API',
4cb6d457 175 WITH_ACCOUNT_DETAILS = 'WITH_ACCOUNT_DETAILS',
d48ff09d 176 WITH_TAGS = 'WITH_TAGS',
bbe0f064 177 WITH_FILES = 'WITH_FILES',
191764f3 178 WITH_SCHEDULED_UPDATE = 'WITH_SCHEDULED_UPDATE',
6e46de09 179 WITH_BLACKLISTED = 'WITH_BLACKLISTED',
09209296
C
180 WITH_USER_HISTORY = 'WITH_USER_HISTORY',
181 WITH_STREAMING_PLAYLISTS = 'WITH_STREAMING_PLAYLISTS',
182 WITH_USER_ID = 'WITH_USER_ID'
d48ff09d
C
183}
184
afd2cba5
C
185type ForAPIOptions = {
186 ids: number[]
418d092a
C
187
188 videoPlaylistId?: number
189
afd2cba5
C
190 withFiles?: boolean
191}
192
193type AvailableForListIDsOptions = {
7ad9b984 194 serverAccountId: number
4e74e803 195 followerActorId: number
afd2cba5 196 includeLocalVideos: boolean
418d092a 197
afd2cba5
C
198 filter?: VideoFilter
199 categoryOneOf?: number[]
200 nsfw?: boolean
201 licenceOneOf?: number[]
202 languageOneOf?: string[]
203 tagsOneOf?: string[]
204 tagsAllOf?: string[]
418d092a 205
afd2cba5 206 withFiles?: boolean
418d092a 207
afd2cba5 208 accountId?: number
d525fc39 209 videoChannelId?: number
418d092a
C
210
211 videoPlaylistId?: number
212
9a629c6e 213 trendingDays?: number
8b9a525a
C
214 user?: UserModel,
215 historyOfUser?: UserModel
d525fc39
C
216}
217
d48ff09d 218@Scopes({
8ea6f49a 219 [ ScopeNames.FOR_API ]: (options: ForAPIOptions) => {
244e76a5 220 const query: IFindOptions<VideoModel> = {
afd2cba5
C
221 where: {
222 id: {
8ea6f49a 223 [ Sequelize.Op.any ]: options.ids
afd2cba5
C
224 }
225 },
418d092a
C
226 include: [
227 {
df0b219d 228 model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, true ] })
418d092a
C
229 }
230 ]
afd2cba5
C
231 }
232
233 if (options.withFiles === true) {
234 query.include.push({
235 model: VideoFileModel.unscoped(),
236 required: true
237 })
238 }
239
418d092a
C
240 if (options.videoPlaylistId) {
241 query.include.push({
242 model: VideoPlaylistElementModel.unscoped(),
15e9d5ca
C
243 required: true,
244 where: {
245 videoPlaylistId: options.videoPlaylistId
246 }
418d092a
C
247 })
248 }
249
afd2cba5
C
250 return query
251 },
8ea6f49a 252 [ ScopeNames.AVAILABLE_FOR_LIST_IDS ]: (options: AvailableForListIDsOptions) => {
afd2cba5 253 const query: IFindOptions<VideoModel> = {
2b62cccd 254 raw: true,
afd2cba5 255 attributes: [ 'id' ],
244e76a5
RK
256 where: {
257 id: {
8ea6f49a 258 [ Sequelize.Op.and ]: [
b6314e3c
C
259 {
260 [ Sequelize.Op.notIn ]: Sequelize.literal(
261 '(SELECT "videoBlacklist"."videoId" FROM "videoBlacklist")'
262 )
263 }
264 ]
7ad9b984
C
265 },
266 channelId: {
267 [ Sequelize.Op.notIn ]: Sequelize.literal(
268 '(' +
269 'SELECT id FROM "videoChannel" WHERE "accountId" IN (' +
270 buildBlockedAccountSQL(options.serverAccountId, options.user ? options.user.Account.id : undefined) +
271 ')' +
272 ')'
273 )
1cd3facc
C
274 }
275 },
276 include: []
277 }
278
279 // Only list public/published videos
280 if (!options.filter || options.filter !== 'all-local') {
281 const privacyWhere = {
2186386c
C
282 // Always list public videos
283 privacy: VideoPrivacy.PUBLIC,
284 // Always list published videos, or videos that are being transcoded but on which we don't want to wait for transcoding
285 [ Sequelize.Op.or ]: [
286 {
287 state: VideoState.PUBLISHED
288 },
289 {
290 [ Sequelize.Op.and ]: {
291 state: VideoState.TO_TRANSCODE,
292 waitTranscoding: false
293 }
294 }
295 ]
1cd3facc
C
296 }
297
298 Object.assign(query.where, privacyWhere)
afd2cba5
C
299 }
300
418d092a
C
301 if (options.videoPlaylistId) {
302 query.include.push({
303 attributes: [],
304 model: VideoPlaylistElementModel.unscoped(),
305 required: true,
306 where: {
307 videoPlaylistId: options.videoPlaylistId
308 }
309 })
15e9d5ca
C
310
311 query.subQuery = false
418d092a
C
312 }
313
afd2cba5
C
314 if (options.filter || options.accountId || options.videoChannelId) {
315 const videoChannelInclude: IIncludeOptions = {
316 attributes: [],
317 model: VideoChannelModel.unscoped(),
318 required: true
319 }
320
321 if (options.videoChannelId) {
322 videoChannelInclude.where = {
323 id: options.videoChannelId
324 }
325 }
326
327 if (options.filter || options.accountId) {
328 const accountInclude: IIncludeOptions = {
329 attributes: [],
330 model: AccountModel.unscoped(),
331 required: true
332 }
333
334 if (options.filter) {
335 accountInclude.include = [
336 {
337 attributes: [],
338 model: ActorModel.unscoped(),
339 required: true,
340 where: VideoModel.buildActorWhereWithFilter(options.filter)
341 }
342 ]
343 }
344
345 if (options.accountId) {
346 accountInclude.where = { id: options.accountId }
347 }
348
349 videoChannelInclude.include = [ accountInclude ]
350 }
351
352 query.include.push(videoChannelInclude)
244e76a5
RK
353 }
354
4e74e803 355 if (options.followerActorId) {
687d638c
C
356 let localVideosReq = ''
357 if (options.includeLocalVideos === true) {
358 localVideosReq = ' UNION ALL ' +
359 'SELECT "video"."id" AS "id" FROM "video" ' +
360 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
361 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
362 'INNER JOIN "actor" ON "account"."actorId" = "actor"."id" ' +
363 'WHERE "actor"."serverId" IS NULL'
364 }
365
366 // Force actorId to be a number to avoid SQL injections
4e74e803 367 const actorIdNumber = parseInt(options.followerActorId.toString(), 10)
8ea6f49a 368 query.where[ 'id' ][ Sequelize.Op.and ].push({
b6314e3c
C
369 [ Sequelize.Op.in ]: Sequelize.literal(
370 '(' +
8ea6f49a
C
371 'SELECT "videoShare"."videoId" AS "id" FROM "videoShare" ' +
372 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
373 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
374 ' UNION ALL ' +
375 'SELECT "video"."id" AS "id" FROM "video" ' +
376 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
377 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
378 'INNER JOIN "actor" ON "account"."actorId" = "actor"."id" ' +
379 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "actor"."id" ' +
380 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
381 localVideosReq +
b6314e3c
C
382 ')'
383 )
384 })
687d638c
C
385 }
386
48dce1c9 387 if (options.withFiles === true) {
8ea6f49a 388 query.where[ 'id' ][ Sequelize.Op.and ].push({
b6314e3c
C
389 [ Sequelize.Op.in ]: Sequelize.literal(
390 '(SELECT "videoId" FROM "videoFile")'
391 )
244e76a5
RK
392 })
393 }
394
d525fc39
C
395 // FIXME: issues with sequelize count when making a join on n:m relation, so we just make a IN()
396 if (options.tagsAllOf || options.tagsOneOf) {
397 const createTagsIn = (tags: string[]) => {
398 return tags.map(t => VideoModel.sequelize.escape(t))
399 .join(', ')
400 }
401
402 if (options.tagsOneOf) {
8ea6f49a
C
403 query.where[ 'id' ][ Sequelize.Op.and ].push({
404 [ Sequelize.Op.in ]: Sequelize.literal(
b6314e3c 405 '(' +
d525fc39
C
406 'SELECT "videoId" FROM "videoTag" ' +
407 'INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
408 'WHERE "tag"."name" IN (' + createTagsIn(options.tagsOneOf) + ')' +
b6314e3c
C
409 ')'
410 )
411 })
d525fc39
C
412 }
413
414 if (options.tagsAllOf) {
8ea6f49a
C
415 query.where[ 'id' ][ Sequelize.Op.and ].push({
416 [ Sequelize.Op.in ]: Sequelize.literal(
d525fc39 417 '(' +
b6314e3c
C
418 'SELECT "videoId" FROM "videoTag" ' +
419 'INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
420 'WHERE "tag"."name" IN (' + createTagsIn(options.tagsAllOf) + ')' +
421 'GROUP BY "videoTag"."videoId" HAVING COUNT(*) = ' + options.tagsAllOf.length +
d525fc39 422 ')'
b6314e3c
C
423 )
424 })
d525fc39
C
425 }
426 }
427
428 if (options.nsfw === true || options.nsfw === false) {
8ea6f49a 429 query.where[ 'nsfw' ] = options.nsfw
d525fc39
C
430 }
431
432 if (options.categoryOneOf) {
8ea6f49a
C
433 query.where[ 'category' ] = {
434 [ Sequelize.Op.or ]: options.categoryOneOf
d525fc39
C
435 }
436 }
437
438 if (options.licenceOneOf) {
8ea6f49a
C
439 query.where[ 'licence' ] = {
440 [ Sequelize.Op.or ]: options.licenceOneOf
d525fc39 441 }
0883b324
C
442 }
443
d525fc39 444 if (options.languageOneOf) {
8ea6f49a
C
445 query.where[ 'language' ] = {
446 [ Sequelize.Op.or ]: options.languageOneOf
d525fc39 447 }
61b909b9
P
448 }
449
9a629c6e 450 if (options.trendingDays) {
b36f41ca 451 query.include.push(VideoModel.buildTrendingQuery(options.trendingDays))
9a629c6e
C
452
453 query.subQuery = false
454 }
455
8b9a525a
C
456 if (options.historyOfUser) {
457 query.include.push({
458 model: UserVideoHistoryModel,
459 required: true,
460 where: {
461 userId: options.historyOfUser.id
462 }
463 })
80bfd33c
C
464
465 // Even if the relation is n:m, we know that a user only have 0..1 video history
466 // So we won't have multiple rows for the same video
467 // Without this, we would not be able to sort on "updatedAt" column of UserVideoHistoryModel
468 query.subQuery = false
8b9a525a
C
469 }
470
244e76a5
RK
471 return query
472 },
09209296
C
473 [ ScopeNames.WITH_USER_ID ]: {
474 include: [
475 {
476 attributes: [ 'accountId' ],
477 model: () => VideoChannelModel.unscoped(),
478 required: true,
479 include: [
480 {
481 attributes: [ 'userId' ],
482 model: () => AccountModel.unscoped(),
483 required: true
484 }
485 ]
486 }
487 ]
488 },
8ea6f49a 489 [ ScopeNames.WITH_ACCOUNT_DETAILS ]: {
d48ff09d
C
490 include: [
491 {
6120941f 492 model: () => VideoChannelModel.unscoped(),
d48ff09d
C
493 required: true,
494 include: [
6120941f
C
495 {
496 attributes: {
497 exclude: [ 'privateKey', 'publicKey' ]
498 },
3e500247
C
499 model: () => ActorModel.unscoped(),
500 required: true,
501 include: [
502 {
503 attributes: [ 'host' ],
504 model: () => ServerModel.unscoped(),
505 required: false
52d9f792
C
506 },
507 {
508 model: () => AvatarModel.unscoped(),
509 required: false
3e500247
C
510 }
511 ]
6120941f 512 },
d48ff09d 513 {
3e500247 514 model: () => AccountModel.unscoped(),
d48ff09d
C
515 required: true,
516 include: [
517 {
3e500247 518 model: () => ActorModel.unscoped(),
6120941f
C
519 attributes: {
520 exclude: [ 'privateKey', 'publicKey' ]
521 },
50d6de9c
C
522 required: true,
523 include: [
524 {
3e500247
C
525 attributes: [ 'host' ],
526 model: () => ServerModel.unscoped(),
50d6de9c 527 required: false
b6a4fd6b
C
528 },
529 {
530 model: () => AvatarModel.unscoped(),
531 required: false
50d6de9c
C
532 }
533 ]
d48ff09d
C
534 }
535 ]
536 }
537 ]
538 }
539 ]
540 },
8ea6f49a 541 [ ScopeNames.WITH_TAGS ]: {
d48ff09d
C
542 include: [ () => TagModel ]
543 },
8ea6f49a 544 [ ScopeNames.WITH_BLACKLISTED ]: {
191764f3
C
545 include: [
546 {
547 attributes: [ 'id', 'reason' ],
548 model: () => VideoBlacklistModel,
549 required: false
550 }
551 ]
552 },
09209296
C
553 [ ScopeNames.WITH_FILES ]: (withRedundancies = false) => {
554 let subInclude: any[] = []
555
556 if (withRedundancies === true) {
557 subInclude = [
558 {
559 attributes: [ 'fileUrl' ],
560 model: VideoRedundancyModel.unscoped(),
561 required: false
562 }
563 ]
564 }
565
566 return {
567 include: [
568 {
569 model: VideoFileModel.unscoped(),
570 // FIXME: typings
571 [ 'separate' as any ]: true, // We may have multiple files, having multiple redundancies so let's separate this join
572 required: false,
573 include: subInclude
574 }
575 ]
576 }
577 },
578 [ ScopeNames.WITH_STREAMING_PLAYLISTS ]: (withRedundancies = false) => {
579 let subInclude: any[] = []
580
581 if (withRedundancies === true) {
582 subInclude = [
583 {
584 attributes: [ 'fileUrl' ],
585 model: VideoRedundancyModel.unscoped(),
586 required: false
587 }
588 ]
589 }
590
591 return {
592 include: [
593 {
594 model: VideoStreamingPlaylistModel.unscoped(),
595 // FIXME: typings
596 [ 'separate' as any ]: true, // We may have multiple streaming playlists, having multiple redundancies so let's separate this join
597 required: false,
598 include: subInclude
599 }
600 ]
601 }
bbe0f064 602 },
8ea6f49a 603 [ ScopeNames.WITH_SCHEDULED_UPDATE ]: {
bbe0f064
C
604 include: [
605 {
606 model: () => ScheduleVideoUpdateModel.unscoped(),
607 required: false
608 }
609 ]
6e46de09
C
610 },
611 [ ScopeNames.WITH_USER_HISTORY ]: (userId: number) => {
612 return {
613 include: [
614 {
615 attributes: [ 'currentTime' ],
616 model: UserVideoHistoryModel.unscoped(),
617 required: false,
618 where: {
619 userId
620 }
621 }
622 ]
623 }
d48ff09d
C
624 }
625})
3fd3ab2d
C
626@Table({
627 tableName: 'video',
57c36b27 628 indexes
3fd3ab2d
C
629})
630export class VideoModel extends Model<VideoModel> {
631
632 @AllowNull(false)
633 @Default(DataType.UUIDV4)
634 @IsUUID(4)
635 @Column(DataType.UUID)
636 uuid: string
637
638 @AllowNull(false)
639 @Is('VideoName', value => throwIfNotValid(value, isVideoNameValid, 'name'))
640 @Column
641 name: string
642
643 @AllowNull(true)
644 @Default(null)
645 @Is('VideoCategory', value => throwIfNotValid(value, isVideoCategoryValid, 'category'))
646 @Column
647 category: number
648
649 @AllowNull(true)
650 @Default(null)
651 @Is('VideoLicence', value => throwIfNotValid(value, isVideoLicenceValid, 'licence'))
652 @Column
653 licence: number
654
655 @AllowNull(true)
656 @Default(null)
657 @Is('VideoLanguage', value => throwIfNotValid(value, isVideoLanguageValid, 'language'))
9d3ef9fe
C
658 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.LANGUAGE.max))
659 language: string
3fd3ab2d
C
660
661 @AllowNull(false)
662 @Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
663 @Column
664 privacy: number
665
666 @AllowNull(false)
47564bbe 667 @Is('VideoNSFW', value => throwIfNotValid(value, isBooleanValid, 'NSFW boolean'))
3fd3ab2d
C
668 @Column
669 nsfw: boolean
670
671 @AllowNull(true)
672 @Default(null)
673 @Is('VideoDescription', value => throwIfNotValid(value, isVideoDescriptionValid, 'description'))
674 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max))
675 description: string
676
2422c46b
C
677 @AllowNull(true)
678 @Default(null)
679 @Is('VideoSupport', value => throwIfNotValid(value, isVideoSupportValid, 'support'))
680 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.SUPPORT.max))
681 support: string
682
3fd3ab2d
C
683 @AllowNull(false)
684 @Is('VideoDuration', value => throwIfNotValid(value, isVideoDurationValid, 'duration'))
685 @Column
686 duration: number
687
688 @AllowNull(false)
689 @Default(0)
690 @IsInt
691 @Min(0)
692 @Column
693 views: number
694
695 @AllowNull(false)
696 @Default(0)
697 @IsInt
698 @Min(0)
699 @Column
700 likes: number
701
702 @AllowNull(false)
703 @Default(0)
704 @IsInt
705 @Min(0)
706 @Column
707 dislikes: number
708
709 @AllowNull(false)
710 @Column
711 remote: boolean
712
713 @AllowNull(false)
714 @Is('VideoUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
715 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
716 url: string
717
47564bbe
C
718 @AllowNull(false)
719 @Column
720 commentsEnabled: boolean
721
156c50af
LD
722 @AllowNull(false)
723 @Column
7f2cfe3a 724 downloadEnabled: boolean
156c50af 725
2186386c
C
726 @AllowNull(false)
727 @Column
728 waitTranscoding: boolean
729
730 @AllowNull(false)
731 @Default(null)
732 @Is('VideoState', value => throwIfNotValid(value, isVideoStateValid, 'state'))
733 @Column
734 state: VideoState
735
3fd3ab2d
C
736 @CreatedAt
737 createdAt: Date
738
739 @UpdatedAt
740 updatedAt: Date
741
2922e048
JLB
742 @AllowNull(false)
743 @Default(Sequelize.NOW)
744 @Column
745 publishedAt: Date
746
7519127b
C
747 @AllowNull(true)
748 @Default(null)
c8034165 749 @Column
750 originallyPublishedAt: Date
751
3fd3ab2d
C
752 @ForeignKey(() => VideoChannelModel)
753 @Column
754 channelId: number
755
756 @BelongsTo(() => VideoChannelModel, {
feb4bdfd 757 foreignKey: {
50d6de9c 758 allowNull: true
feb4bdfd 759 },
6b738c7a 760 hooks: true
feb4bdfd 761 })
3fd3ab2d 762 VideoChannel: VideoChannelModel
7920c273 763
3fd3ab2d 764 @BelongsToMany(() => TagModel, {
7920c273 765 foreignKey: 'videoId',
3fd3ab2d
C
766 through: () => VideoTagModel,
767 onDelete: 'CASCADE'
7920c273 768 })
3fd3ab2d 769 Tags: TagModel[]
55fa55a9 770
418d092a
C
771 @HasMany(() => VideoPlaylistElementModel, {
772 foreignKey: {
773 name: 'videoId',
774 allowNull: false
775 },
776 onDelete: 'cascade'
777 })
778 VideoPlaylistElements: VideoPlaylistElementModel[]
779
3fd3ab2d 780 @HasMany(() => VideoAbuseModel, {
55fa55a9
C
781 foreignKey: {
782 name: 'videoId',
783 allowNull: false
784 },
785 onDelete: 'cascade'
786 })
3fd3ab2d 787 VideoAbuses: VideoAbuseModel[]
93e1258c 788
3fd3ab2d 789 @HasMany(() => VideoFileModel, {
93e1258c
C
790 foreignKey: {
791 name: 'videoId',
792 allowNull: false
793 },
c48e82b5 794 hooks: true,
93e1258c
C
795 onDelete: 'cascade'
796 })
3fd3ab2d 797 VideoFiles: VideoFileModel[]
e71bcc0f 798
09209296
C
799 @HasMany(() => VideoStreamingPlaylistModel, {
800 foreignKey: {
801 name: 'videoId',
802 allowNull: false
803 },
804 hooks: true,
805 onDelete: 'cascade'
806 })
807 VideoStreamingPlaylists: VideoStreamingPlaylistModel[]
808
3fd3ab2d 809 @HasMany(() => VideoShareModel, {
e71bcc0f
C
810 foreignKey: {
811 name: 'videoId',
812 allowNull: false
813 },
814 onDelete: 'cascade'
815 })
3fd3ab2d 816 VideoShares: VideoShareModel[]
16b90975 817
3fd3ab2d 818 @HasMany(() => AccountVideoRateModel, {
16b90975
C
819 foreignKey: {
820 name: 'videoId',
821 allowNull: false
822 },
823 onDelete: 'cascade'
824 })
3fd3ab2d 825 AccountVideoRates: AccountVideoRateModel[]
f285faa0 826
da854ddd
C
827 @HasMany(() => VideoCommentModel, {
828 foreignKey: {
829 name: 'videoId',
830 allowNull: false
831 },
f05a1c30
C
832 onDelete: 'cascade',
833 hooks: true
da854ddd
C
834 })
835 VideoComments: VideoCommentModel[]
836
9a629c6e
C
837 @HasMany(() => VideoViewModel, {
838 foreignKey: {
839 name: 'videoId',
840 allowNull: false
841 },
6e46de09 842 onDelete: 'cascade'
9a629c6e
C
843 })
844 VideoViews: VideoViewModel[]
845
6e46de09
C
846 @HasMany(() => UserVideoHistoryModel, {
847 foreignKey: {
848 name: 'videoId',
849 allowNull: false
850 },
851 onDelete: 'cascade'
852 })
853 UserVideoHistories: UserVideoHistoryModel[]
854
2baea0c7
C
855 @HasOne(() => ScheduleVideoUpdateModel, {
856 foreignKey: {
857 name: 'videoId',
858 allowNull: false
859 },
860 onDelete: 'cascade'
861 })
862 ScheduleVideoUpdate: ScheduleVideoUpdateModel
863
26b7305a
C
864 @HasOne(() => VideoBlacklistModel, {
865 foreignKey: {
866 name: 'videoId',
867 allowNull: false
868 },
869 onDelete: 'cascade'
870 })
871 VideoBlacklist: VideoBlacklistModel
872
dc133480
C
873 @HasOne(() => VideoImportModel, {
874 foreignKey: {
875 name: 'videoId',
876 allowNull: true
877 },
878 onDelete: 'set null'
879 })
880 VideoImport: VideoImportModel
881
40e87e9e
C
882 @HasMany(() => VideoCaptionModel, {
883 foreignKey: {
884 name: 'videoId',
885 allowNull: false
886 },
887 onDelete: 'cascade',
888 hooks: true,
8ea6f49a 889 [ 'separate' as any ]: true
40e87e9e
C
890 })
891 VideoCaptions: VideoCaptionModel[]
892
f05a1c30
C
893 @BeforeDestroy
894 static async sendDelete (instance: VideoModel, options) {
895 if (instance.isOwned()) {
896 if (!instance.VideoChannel) {
897 instance.VideoChannel = await instance.$get('VideoChannel', {
898 include: [
899 {
900 model: AccountModel,
901 include: [ ActorModel ]
902 }
903 ],
904 transaction: options.transaction
905 }) as VideoChannelModel
906 }
907
f05a1c30
C
908 return sendDeleteVideo(instance, options.transaction)
909 }
910
911 return undefined
912 }
913
6b738c7a 914 @BeforeDestroy
40e87e9e 915 static async removeFiles (instance: VideoModel) {
f05a1c30 916 const tasks: Promise<any>[] = []
f285faa0 917
8e0fd45e 918 logger.info('Removing files of video %s.', instance.url)
6b738c7a 919
f05a1c30 920 tasks.push(instance.removeThumbnail())
93e1258c 921
3fd3ab2d 922 if (instance.isOwned()) {
f05a1c30
C
923 if (!Array.isArray(instance.VideoFiles)) {
924 instance.VideoFiles = await instance.$get('VideoFiles') as VideoFileModel[]
925 }
926
927 tasks.push(instance.removePreview())
40298b02 928
3fd3ab2d
C
929 // Remove physical files and torrents
930 instance.VideoFiles.forEach(file => {
931 tasks.push(instance.removeFile(file))
932 tasks.push(instance.removeTorrent(file))
933 })
09209296
C
934
935 // Remove playlists file
936 tasks.push(instance.removeStreamingPlaylist())
3fd3ab2d 937 }
40298b02 938
6b738c7a
C
939 // Do not wait video deletion because we could be in a transaction
940 Promise.all(tasks)
8ea6f49a
C
941 .catch(err => {
942 logger.error('Some errors when removing files of video %s in before destroy hook.', instance.uuid, { err })
943 })
6b738c7a
C
944
945 return undefined
3fd3ab2d 946 }
f285faa0 947
9f1ddd24
C
948 static listLocal () {
949 const query = {
950 where: {
951 remote: false
952 }
953 }
954
09209296 955 return VideoModel.scope([ ScopeNames.WITH_FILES, ScopeNames.WITH_STREAMING_PLAYLISTS ]).findAll(query)
9f1ddd24
C
956 }
957
50d6de9c 958 static listAllAndSharedByActorForOutbox (actorId: number, start: number, count: number) {
3fd3ab2d
C
959 function getRawQuery (select: string) {
960 const queryVideo = 'SELECT ' + select + ' FROM "video" AS "Video" ' +
961 'INNER JOIN "videoChannel" AS "VideoChannel" ON "VideoChannel"."id" = "Video"."channelId" ' +
50d6de9c
C
962 'INNER JOIN "account" AS "Account" ON "Account"."id" = "VideoChannel"."accountId" ' +
963 'WHERE "Account"."actorId" = ' + actorId
3fd3ab2d
C
964 const queryVideoShare = 'SELECT ' + select + ' FROM "videoShare" AS "VideoShare" ' +
965 'INNER JOIN "video" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
50d6de9c 966 'WHERE "VideoShare"."actorId" = ' + actorId
558d7c23 967
3fd3ab2d
C
968 return `(${queryVideo}) UNION (${queryVideoShare})`
969 }
aaf61f38 970
3fd3ab2d
C
971 const rawQuery = getRawQuery('"Video"."id"')
972 const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
973
974 const query = {
975 distinct: true,
976 offset: start,
977 limit: count,
9a629c6e 978 order: getVideoSort('createdAt', [ 'Tags', 'name', 'ASC' ]),
3fd3ab2d
C
979 where: {
980 id: {
8ea6f49a 981 [ Sequelize.Op.in ]: Sequelize.literal('(' + rawQuery + ')')
3c75ce12 982 },
8ea6f49a 983 [ Sequelize.Op.or ]: [
3c75ce12
C
984 { privacy: VideoPrivacy.PUBLIC },
985 { privacy: VideoPrivacy.UNLISTED }
986 ]
3fd3ab2d
C
987 },
988 include: [
40e87e9e
C
989 {
990 attributes: [ 'language' ],
991 model: VideoCaptionModel.unscoped(),
992 required: false
993 },
3fd3ab2d 994 {
1d230c44 995 attributes: [ 'id', 'url' ],
2c897999 996 model: VideoShareModel.unscoped(),
3fd3ab2d 997 required: false,
e3d5ea4f
C
998 // We only want videos shared by this actor
999 where: {
8ea6f49a 1000 [ Sequelize.Op.and ]: [
e3d5ea4f
C
1001 {
1002 id: {
8ea6f49a 1003 [ Sequelize.Op.not ]: null
e3d5ea4f
C
1004 }
1005 },
1006 {
1007 actorId
1008 }
1009 ]
1010 },
50d6de9c
C
1011 include: [
1012 {
2c897999
C
1013 attributes: [ 'id', 'url' ],
1014 model: ActorModel.unscoped()
50d6de9c
C
1015 }
1016 ]
3fd3ab2d
C
1017 },
1018 {
2c897999 1019 model: VideoChannelModel.unscoped(),
3fd3ab2d
C
1020 required: true,
1021 include: [
1022 {
2c897999
C
1023 attributes: [ 'name' ],
1024 model: AccountModel.unscoped(),
1025 required: true,
1026 include: [
1027 {
e3d5ea4f 1028 attributes: [ 'id', 'url', 'followersUrl' ],
2c897999
C
1029 model: ActorModel.unscoped(),
1030 required: true
1031 }
1032 ]
1033 },
1034 {
e3d5ea4f 1035 attributes: [ 'id', 'url', 'followersUrl' ],
2c897999 1036 model: ActorModel.unscoped(),
3fd3ab2d
C
1037 required: true
1038 }
1039 ]
1040 },
3fd3ab2d 1041 VideoFileModel,
2c897999 1042 TagModel
3fd3ab2d
C
1043 ]
1044 }
164174a6 1045
3fd3ab2d
C
1046 return Bluebird.all([
1047 // FIXME: typing issue
1048 VideoModel.findAll(query as any),
1049 VideoModel.sequelize.query(rawCountQuery, { type: Sequelize.QueryTypes.SELECT })
1050 ]).then(([ rows, totals ]) => {
1051 // totals: totalVideos + totalVideoShares
1052 let totalVideos = 0
1053 let totalVideoShares = 0
8ea6f49a
C
1054 if (totals[ 0 ]) totalVideos = parseInt(totals[ 0 ].total, 10)
1055 if (totals[ 1 ]) totalVideoShares = parseInt(totals[ 1 ].total, 10)
3fd3ab2d
C
1056
1057 const total = totalVideos + totalVideoShares
1058 return {
1059 data: rows,
1060 total: total
1061 }
1062 })
1063 }
93e1258c 1064
26b7305a 1065 static listUserVideosForApi (accountId: number, start: number, count: number, sort: string, withFiles = false) {
244e76a5 1066 const query: IFindOptions<VideoModel> = {
3fd3ab2d
C
1067 offset: start,
1068 limit: count,
9a629c6e 1069 order: getVideoSort(sort),
3fd3ab2d
C
1070 include: [
1071 {
1072 model: VideoChannelModel,
1073 required: true,
1074 include: [
1075 {
1076 model: AccountModel,
1077 where: {
7b87d2d5 1078 id: accountId
3fd3ab2d
C
1079 },
1080 required: true
1081 }
1082 ]
2baea0c7
C
1083 },
1084 {
1085 model: ScheduleVideoUpdateModel,
1086 required: false
26b7305a
C
1087 },
1088 {
1089 model: VideoBlacklistModel,
1090 required: false
d48ff09d 1091 }
3fd3ab2d
C
1092 ]
1093 }
d8755eed 1094
244e76a5
RK
1095 if (withFiles === true) {
1096 query.include.push({
1097 model: VideoFileModel.unscoped(),
1098 required: true
1099 })
1100 }
1101
3fd3ab2d
C
1102 return VideoModel.findAndCountAll(query).then(({ rows, count }) => {
1103 return {
1104 data: rows,
1105 total: count
1106 }
1107 })
1108 }
93e1258c 1109
48dce1c9 1110 static async listForApi (options: {
0626e7af
C
1111 start: number,
1112 count: number,
1113 sort: string,
d525fc39 1114 nsfw: boolean,
06a05d5f 1115 includeLocalVideos: boolean,
48dce1c9 1116 withFiles: boolean,
d525fc39
C
1117 categoryOneOf?: number[],
1118 licenceOneOf?: number[],
1119 languageOneOf?: string[],
1120 tagsOneOf?: string[],
1121 tagsAllOf?: string[],
0626e7af 1122 filter?: VideoFilter,
48dce1c9 1123 accountId?: number,
06a05d5f 1124 videoChannelId?: number,
4e74e803 1125 followerActorId?: number
418d092a 1126 videoPlaylistId?: number,
6e46de09 1127 trendingDays?: number,
8b9a525a
C
1128 user?: UserModel,
1129 historyOfUser?: UserModel
7348b1fd 1130 }, countVideos = true) {
7ad9b984
C
1131 if (options.filter && options.filter === 'all-local' && !options.user.hasRight(UserRight.SEE_ALL_VIDEOS)) {
1132 throw new Error('Try to filter all-local but no user has not the see all videos right')
1cd3facc
C
1133 }
1134
9a629c6e 1135 const query: IFindOptions<VideoModel> = {
48dce1c9
C
1136 offset: options.start,
1137 limit: options.count,
9a629c6e
C
1138 order: getVideoSort(options.sort)
1139 }
1140
1141 let trendingDays: number
1142 if (options.sort.endsWith('trending')) {
1143 trendingDays = CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
1144
1145 query.group = 'VideoModel.id'
3fd3ab2d 1146 }
93e1258c 1147
7ad9b984
C
1148 const serverActor = await getServerActor()
1149
4e74e803
C
1150 // followerActorId === null has a meaning, so just check undefined
1151 const followerActorId = options.followerActorId !== undefined ? options.followerActorId : serverActor.id
06a05d5f 1152
afd2cba5 1153 const queryOptions = {
4e74e803 1154 followerActorId,
7ad9b984 1155 serverAccountId: serverActor.Account.id,
afd2cba5
C
1156 nsfw: options.nsfw,
1157 categoryOneOf: options.categoryOneOf,
1158 licenceOneOf: options.licenceOneOf,
1159 languageOneOf: options.languageOneOf,
1160 tagsOneOf: options.tagsOneOf,
1161 tagsAllOf: options.tagsAllOf,
1162 filter: options.filter,
1163 withFiles: options.withFiles,
1164 accountId: options.accountId,
1165 videoChannelId: options.videoChannelId,
418d092a 1166 videoPlaylistId: options.videoPlaylistId,
9a629c6e 1167 includeLocalVideos: options.includeLocalVideos,
7ad9b984 1168 user: options.user,
8b9a525a 1169 historyOfUser: options.historyOfUser,
9a629c6e 1170 trendingDays
48dce1c9
C
1171 }
1172
7348b1fd 1173 return VideoModel.getAvailableForApi(query, queryOptions, countVideos)
93e1258c
C
1174 }
1175
0b18f4aa 1176 static async searchAndPopulateAccountAndServer (options: {
06a05d5f 1177 includeLocalVideos: boolean
d4112450 1178 search?: string
0b18f4aa
C
1179 start?: number
1180 count?: number
1181 sort?: string
1182 startDate?: string // ISO 8601
1183 endDate?: string // ISO 8601
31d065cc
AM
1184 originallyPublishedStartDate?: string
1185 originallyPublishedEndDate?: string
0b18f4aa
C
1186 nsfw?: boolean
1187 categoryOneOf?: number[]
1188 licenceOneOf?: number[]
1189 languageOneOf?: string[]
1190 tagsOneOf?: string[]
1191 tagsAllOf?: string[]
1192 durationMin?: number // seconds
1193 durationMax?: number // seconds
7ad9b984 1194 user?: UserModel,
1cd3facc 1195 filter?: VideoFilter
0b18f4aa 1196 }) {
8ea6f49a 1197 const whereAnd = []
d525fc39
C
1198
1199 if (options.startDate || options.endDate) {
8ea6f49a 1200 const publishedAtRange = {}
d525fc39 1201
8ea6f49a
C
1202 if (options.startDate) publishedAtRange[ Sequelize.Op.gte ] = options.startDate
1203 if (options.endDate) publishedAtRange[ Sequelize.Op.lte ] = options.endDate
d525fc39
C
1204
1205 whereAnd.push({ publishedAt: publishedAtRange })
1206 }
1207
31d065cc
AM
1208 if (options.originallyPublishedStartDate || options.originallyPublishedEndDate) {
1209 const originallyPublishedAtRange = {}
1210
1211 if (options.originallyPublishedStartDate) originallyPublishedAtRange[ Sequelize.Op.gte ] = options.originallyPublishedStartDate
1212 if (options.originallyPublishedEndDate) originallyPublishedAtRange[ Sequelize.Op.lte ] = options.originallyPublishedEndDate
1213
1214 whereAnd.push({ originallyPublishedAt: originallyPublishedAtRange })
1215 }
1216
d525fc39 1217 if (options.durationMin || options.durationMax) {
8ea6f49a 1218 const durationRange = {}
d525fc39 1219
8ea6f49a
C
1220 if (options.durationMin) durationRange[ Sequelize.Op.gte ] = options.durationMin
1221 if (options.durationMax) durationRange[ Sequelize.Op.lte ] = options.durationMax
d525fc39
C
1222
1223 whereAnd.push({ duration: durationRange })
1224 }
1225
d4112450 1226 const attributesInclude = []
dbfd3e9b
C
1227 const escapedSearch = VideoModel.sequelize.escape(options.search)
1228 const escapedLikeSearch = VideoModel.sequelize.escape('%' + options.search + '%')
d4112450
C
1229 if (options.search) {
1230 whereAnd.push(
1231 {
dbfd3e9b
C
1232 id: {
1233 [ Sequelize.Op.in ]: Sequelize.literal(
1234 '(' +
8ea6f49a
C
1235 'SELECT "video"."id" FROM "video" ' +
1236 'WHERE ' +
1237 'lower(immutable_unaccent("video"."name")) % lower(immutable_unaccent(' + escapedSearch + ')) OR ' +
1238 'lower(immutable_unaccent("video"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))' +
1239 'UNION ALL ' +
1240 'SELECT "video"."id" FROM "video" LEFT JOIN "videoTag" ON "videoTag"."videoId" = "video"."id" ' +
1241 'INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
1242 'WHERE "tag"."name" = ' + escapedSearch +
dbfd3e9b
C
1243 ')'
1244 )
1245 }
d4112450
C
1246 }
1247 )
1248
1249 attributesInclude.push(createSimilarityAttribute('VideoModel.name', options.search))
1250 }
1251
1252 // Cannot search on similarity if we don't have a search
1253 if (!options.search) {
1254 attributesInclude.push(
1255 Sequelize.literal('0 as similarity')
1256 )
1257 }
d525fc39 1258
f05a1c30 1259 const query: IFindOptions<VideoModel> = {
57c36b27 1260 attributes: {
d4112450 1261 include: attributesInclude
57c36b27 1262 },
d525fc39
C
1263 offset: options.start,
1264 limit: options.count,
9a629c6e 1265 order: getVideoSort(options.sort),
d525fc39
C
1266 where: {
1267 [ Sequelize.Op.and ]: whereAnd
1268 }
f05a1c30
C
1269 }
1270
1271 const serverActor = await getServerActor()
afd2cba5 1272 const queryOptions = {
4e74e803 1273 followerActorId: serverActor.id,
7ad9b984 1274 serverAccountId: serverActor.Account.id,
afd2cba5
C
1275 includeLocalVideos: options.includeLocalVideos,
1276 nsfw: options.nsfw,
1277 categoryOneOf: options.categoryOneOf,
1278 licenceOneOf: options.licenceOneOf,
1279 languageOneOf: options.languageOneOf,
1280 tagsOneOf: options.tagsOneOf,
6e46de09 1281 tagsAllOf: options.tagsAllOf,
7ad9b984 1282 user: options.user,
1cd3facc 1283 filter: options.filter
48dce1c9 1284 }
f05a1c30 1285
afd2cba5 1286 return VideoModel.getAvailableForApi(query, queryOptions)
f05a1c30
C
1287 }
1288
627621c1 1289 static load (id: number | string, t?: Sequelize.Transaction) {
418d092a 1290 const where = buildWhereIdOrUUID(id)
627621c1
C
1291 const options = {
1292 where,
1293 transaction: t
3fd3ab2d 1294 }
d8755eed 1295
627621c1 1296 return VideoModel.findOne(options)
3fd3ab2d 1297 }
d8755eed 1298
09209296 1299 static loadWithRights (id: number | string, t?: Sequelize.Transaction) {
418d092a 1300 const where = buildWhereIdOrUUID(id)
09209296
C
1301 const options = {
1302 where,
1303 transaction: t
1304 }
1305
1306 return VideoModel.scope([ ScopeNames.WITH_BLACKLISTED, ScopeNames.WITH_USER_ID ]).findOne(options)
1307 }
1308
627621c1 1309 static loadOnlyId (id: number | string, t?: Sequelize.Transaction) {
418d092a 1310 const where = buildWhereIdOrUUID(id)
627621c1 1311
3fd3ab2d 1312 const options = {
627621c1
C
1313 attributes: [ 'id' ],
1314 where,
1315 transaction: t
3fd3ab2d 1316 }
72c7248b 1317
627621c1
C
1318 return VideoModel.findOne(options)
1319 }
1320
09209296
C
1321 static loadWithFiles (id: number, t?: Sequelize.Transaction, logging?: boolean) {
1322 return VideoModel.scope([ ScopeNames.WITH_FILES, ScopeNames.WITH_STREAMING_PLAYLISTS ])
9b39106d 1323 .findByPk(id, { transaction: t, logging })
3fd3ab2d 1324 }
72c7248b 1325
627621c1 1326 static loadByUUIDWithFile (uuid: string) {
8fa5653a
C
1327 const options = {
1328 where: {
1329 uuid
1330 }
1331 }
1332
09209296 1333 return VideoModel.findOne(options)
8fa5653a
C
1334 }
1335
4157cdb1 1336 static loadByUrl (url: string, transaction?: Sequelize.Transaction) {
627621c1
C
1337 const query: IFindOptions<VideoModel> = {
1338 where: {
1339 url
4157cdb1
C
1340 },
1341 transaction
627621c1
C
1342 }
1343
4157cdb1
C
1344 return VideoModel.findOne(query)
1345 }
1346
1347 static loadByUrlAndPopulateAccount (url: string, transaction?: Sequelize.Transaction) {
1348 const query: IFindOptions<VideoModel> = {
1349 where: {
1350 url
1351 },
1352 transaction
1353 }
627621c1 1354
09209296
C
1355 return VideoModel.scope([
1356 ScopeNames.WITH_ACCOUNT_DETAILS,
1357 ScopeNames.WITH_FILES,
1358 ScopeNames.WITH_STREAMING_PLAYLISTS
1359 ]).findOne(query)
627621c1
C
1360 }
1361
6e46de09 1362 static loadAndPopulateAccountAndServerAndTags (id: number | string, t?: Sequelize.Transaction, userId?: number) {
418d092a 1363 const where = buildWhereIdOrUUID(id)
627621c1 1364
3fd3ab2d
C
1365 const options = {
1366 order: [ [ 'Tags', 'name', 'ASC' ] ],
627621c1 1367 where,
2186386c 1368 transaction: t
3fd3ab2d 1369 }
fd45e8f4 1370
6e46de09
C
1371 const scopes = [
1372 ScopeNames.WITH_TAGS,
1373 ScopeNames.WITH_BLACKLISTED,
09209296
C
1374 ScopeNames.WITH_ACCOUNT_DETAILS,
1375 ScopeNames.WITH_SCHEDULED_UPDATE,
6e46de09 1376 ScopeNames.WITH_FILES,
09209296
C
1377 ScopeNames.WITH_STREAMING_PLAYLISTS
1378 ]
1379
1380 if (userId) {
1381 scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] } as any) // FIXME: typings
1382 }
1383
1384 return VideoModel
1385 .scope(scopes)
1386 .findOne(options)
1387 }
1388
1389 static loadForGetAPI (id: number | string, t?: Sequelize.Transaction, userId?: number) {
418d092a 1390 const where = buildWhereIdOrUUID(id)
09209296
C
1391
1392 const options = {
1393 order: [ [ 'Tags', 'name', 'ASC' ] ],
1394 where,
1395 transaction: t
1396 }
1397
1398 const scopes = [
1399 ScopeNames.WITH_TAGS,
1400 ScopeNames.WITH_BLACKLISTED,
6e46de09 1401 ScopeNames.WITH_ACCOUNT_DETAILS,
09209296
C
1402 ScopeNames.WITH_SCHEDULED_UPDATE,
1403 { method: [ ScopeNames.WITH_FILES, true ] } as any, // FIXME: typings
1404 { method: [ ScopeNames.WITH_STREAMING_PLAYLISTS, true ] } as any // FIXME: typings
6e46de09
C
1405 ]
1406
1407 if (userId) {
1408 scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] } as any) // FIXME: typings
1409 }
1410
d48ff09d 1411 return VideoModel
6e46de09 1412 .scope(scopes)
da854ddd
C
1413 .findOne(options)
1414 }
1415
09cababd
C
1416 static async getStats () {
1417 const totalLocalVideos = await VideoModel.count({
1418 where: {
1419 remote: false
1420 }
1421 })
1422 const totalVideos = await VideoModel.count()
1423
1424 let totalLocalVideoViews = await VideoModel.sum('views', {
1425 where: {
1426 remote: false
1427 }
1428 })
1429 // Sequelize could return null...
1430 if (!totalLocalVideoViews) totalLocalVideoViews = 0
1431
1432 return {
1433 totalLocalVideos,
1434 totalLocalVideoViews,
1435 totalVideos
1436 }
1437 }
1438
6b616860
C
1439 static incrementViews (id: number, views: number) {
1440 return VideoModel.increment('views', {
1441 by: views,
1442 where: {
1443 id
1444 }
1445 })
1446 }
1447
8d427346
C
1448 static checkVideoHasInstanceFollow (videoId: number, followerActorId: number) {
1449 // Instances only share videos
1450 const query = 'SELECT 1 FROM "videoShare" ' +
1451 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
1452 'WHERE "actorFollow"."actorId" = $followerActorId AND "videoShare"."videoId" = $videoId ' +
1453 'LIMIT 1'
1454
1455 const options = {
1456 type: Sequelize.QueryTypes.SELECT,
1457 bind: { followerActorId, videoId },
1458 raw: true
1459 }
1460
1461 return VideoModel.sequelize.query(query, options)
1462 .then(results => results.length === 1)
1463 }
1464
2d3741d6 1465 // threshold corresponds to how many video the field should have to be returned
7348b1fd 1466 static async getRandomFieldSamples (field: 'category' | 'channelId', threshold: number, count: number) {
65b21c96 1467 const serverActor = await getServerActor()
4e74e803 1468 const followerActorId = serverActor.id
7348b1fd 1469
65b21c96
C
1470 const scopeOptions: AvailableForListIDsOptions = {
1471 serverAccountId: serverActor.Account.id,
4e74e803 1472 followerActorId,
7348b1fd
C
1473 includeLocalVideos: true
1474 }
1475
2d3741d6
C
1476 const query: IFindOptions<VideoModel> = {
1477 attributes: [ field ],
1478 limit: count,
1479 group: field,
1480 having: Sequelize.where(Sequelize.fn('COUNT', Sequelize.col(field)), {
8ea6f49a 1481 [ Sequelize.Op.gte ]: threshold
2d3741d6 1482 }) as any, // FIXME: typings
2d3741d6
C
1483 order: [ this.sequelize.random() ]
1484 }
1485
7348b1fd
C
1486 return VideoModel.scope({ method: [ ScopeNames.AVAILABLE_FOR_LIST_IDS, scopeOptions ] })
1487 .findAll(query)
8ea6f49a 1488 .then(rows => rows.map(r => r[ field ]))
2d3741d6
C
1489 }
1490
b36f41ca
C
1491 static buildTrendingQuery (trendingDays: number) {
1492 return {
1493 attributes: [],
1494 subQuery: false,
1495 model: VideoViewModel,
1496 required: false,
1497 where: {
1498 startDate: {
1499 [ Sequelize.Op.gte ]: new Date(new Date().getTime() - (24 * 3600 * 1000) * trendingDays)
1500 }
1501 }
1502 }
1503 }
1504
066e94c5 1505 private static buildActorWhereWithFilter (filter?: VideoFilter) {
1cd3facc 1506 if (filter && (filter === 'local' || filter === 'all-local')) {
066e94c5
C
1507 return {
1508 serverId: null
1509 }
1510 }
1511
1512 return {}
1513 }
afd2cba5 1514
6e46de09
C
1515 private static async getAvailableForApi (
1516 query: IFindOptions<VideoModel>,
7ad9b984 1517 options: AvailableForListIDsOptions,
6e46de09
C
1518 countVideos = true
1519 ) {
afd2cba5
C
1520 const idsScope = {
1521 method: [
1522 ScopeNames.AVAILABLE_FOR_LIST_IDS, options
1523 ]
1524 }
1525
8ea6f49a
C
1526 // Remove trending sort on count, because it uses a group by
1527 const countOptions = Object.assign({}, options, { trendingDays: undefined })
1528 const countQuery = Object.assign({}, query, { attributes: undefined, group: undefined })
1529 const countScope = {
1530 method: [
1531 ScopeNames.AVAILABLE_FOR_LIST_IDS, countOptions
1532 ]
1533 }
1534
1535 const [ count, rowsId ] = await Promise.all([
8b9a525a 1536 countVideos ? VideoModel.scope(countScope).count(countQuery) : Promise.resolve<number>(undefined),
8ea6f49a
C
1537 VideoModel.scope(idsScope).findAll(query)
1538 ])
afd2cba5
C
1539 const ids = rowsId.map(r => r.id)
1540
1541 if (ids.length === 0) return { data: [], total: count }
1542
df0b219d 1543 const secondQuery: IFindOptions<VideoModel> = {
b6314e3c
C
1544 offset: 0,
1545 limit: query.limit,
9a629c6e
C
1546 attributes: query.attributes,
1547 order: [ // Keep original order
1548 Sequelize.literal(
1549 ids.map(id => `"VideoModel".id = ${id} DESC`).join(', ')
1550 )
1551 ]
b6314e3c 1552 }
df0b219d
C
1553
1554 // FIXME: typing
1555 const apiScope: any[] = []
1556
1557 if (options.user) {
1558 apiScope.push({ method: [ ScopeNames.WITH_USER_HISTORY, options.user.id ] })
1559
1560 // Even if the relation is n:m, we know that a user only have 0..1 video history
1561 // So we won't have multiple rows for the same video
1562 // A subquery adds some bugs in our query so disable it
1563 secondQuery.subQuery = false
1564 }
1565
1566 apiScope.push({
1567 method: [
1568 ScopeNames.FOR_API, {
1569 ids, withFiles:
1570 options.withFiles,
1571 videoPlaylistId: options.videoPlaylistId
1572 } as ForAPIOptions
1573 ]
1574 })
1575
b6314e3c 1576 const rows = await VideoModel.scope(apiScope).findAll(secondQuery)
afd2cba5
C
1577
1578 return {
1579 data: rows,
1580 total: count
1581 }
1582 }
066e94c5 1583
098eb377 1584 static getCategoryLabel (id: number) {
8ea6f49a 1585 return VIDEO_CATEGORIES[ id ] || 'Misc'
ae5a3dd6
C
1586 }
1587
098eb377 1588 static getLicenceLabel (id: number) {
8ea6f49a 1589 return VIDEO_LICENCES[ id ] || 'Unknown'
ae5a3dd6
C
1590 }
1591
098eb377 1592 static getLanguageLabel (id: string) {
8ea6f49a 1593 return VIDEO_LANGUAGES[ id ] || 'Unknown'
ae5a3dd6
C
1594 }
1595
098eb377 1596 static getPrivacyLabel (id: number) {
8ea6f49a 1597 return VIDEO_PRIVACIES[ id ] || 'Unknown'
2186386c 1598 }
2243730c 1599
098eb377 1600 static getStateLabel (id: number) {
8ea6f49a 1601 return VIDEO_STATES[ id ] || 'Unknown'
2243730c
C
1602 }
1603
3fd3ab2d
C
1604 getOriginalFile () {
1605 if (Array.isArray(this.VideoFiles) === false) return undefined
aaf61f38 1606
3fd3ab2d
C
1607 // The original file is the file that have the higher resolution
1608 return maxBy(this.VideoFiles, file => file.resolution)
e4f97bab 1609 }
aaf61f38 1610
3fd3ab2d
C
1611 getVideoFilename (videoFile: VideoFileModel) {
1612 return this.uuid + '-' + videoFile.resolution + videoFile.extname
1613 }
165cdc75 1614
3fd3ab2d 1615 getThumbnailName () {
3fd3ab2d
C
1616 const extension = '.jpg'
1617 return this.uuid + extension
7b1f49de
C
1618 }
1619
3fd3ab2d
C
1620 getPreviewName () {
1621 const extension = '.jpg'
1622 return this.uuid + extension
1623 }
7b1f49de 1624
3fd3ab2d
C
1625 getTorrentFileName (videoFile: VideoFileModel) {
1626 const extension = '.torrent'
1627 return this.uuid + '-' + videoFile.resolution + extension
1628 }
8e7f08b5 1629
3fd3ab2d
C
1630 isOwned () {
1631 return this.remote === false
9567011b
C
1632 }
1633
3fd3ab2d 1634 createPreview (videoFile: VideoFileModel) {
3fd3ab2d
C
1635 return generateImageFromVideoFile(
1636 this.getVideoFilePath(videoFile),
1637 CONFIG.STORAGE.PREVIEWS_DIR,
1638 this.getPreviewName(),
26670720 1639 PREVIEWS_SIZE
3fd3ab2d
C
1640 )
1641 }
9567011b 1642
3fd3ab2d 1643 createThumbnail (videoFile: VideoFileModel) {
3fd3ab2d
C
1644 return generateImageFromVideoFile(
1645 this.getVideoFilePath(videoFile),
1646 CONFIG.STORAGE.THUMBNAILS_DIR,
1647 this.getThumbnailName(),
26670720 1648 THUMBNAILS_SIZE
3fd3ab2d 1649 )
14d3270f
C
1650 }
1651
02756fbd
C
1652 getTorrentFilePath (videoFile: VideoFileModel) {
1653 return join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1654 }
1655
3fd3ab2d
C
1656 getVideoFilePath (videoFile: VideoFileModel) {
1657 return join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
1658 }
14d3270f 1659
81e504b3 1660 async createTorrentAndSetInfoHash (videoFile: VideoFileModel) {
3fd3ab2d 1661 const options = {
6cced8f9
C
1662 // Keep the extname, it's used by the client to stream the file inside a web browser
1663 name: `${this.name} ${videoFile.resolution}p${videoFile.extname}`,
81e504b3 1664 createdBy: 'PeerTube',
3fd3ab2d 1665 announceList: [
0edf0581
C
1666 [ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ],
1667 [ CONFIG.WEBSERVER.URL + '/tracker/announce' ]
3fd3ab2d 1668 ],
c48e82b5 1669 urlList: [ CONFIG.WEBSERVER.URL + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile) ]
3fd3ab2d 1670 }
14d3270f 1671
3fd3ab2d 1672 const torrent = await createTorrentPromise(this.getVideoFilePath(videoFile), options)
e4f97bab 1673
3fd3ab2d
C
1674 const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1675 logger.info('Creating torrent %s.', filePath)
e4f97bab 1676
62689b94 1677 await writeFile(filePath, torrent)
e4f97bab 1678
3fd3ab2d
C
1679 const parsedTorrent = parseTorrent(torrent)
1680 videoFile.infoHash = parsedTorrent.infoHash
1681 }
e4f97bab 1682
cef534ed
C
1683 getWatchStaticPath () {
1684 return '/videos/watch/' + this.uuid
1685 }
1686
40e87e9e 1687 getEmbedStaticPath () {
3fd3ab2d
C
1688 return '/videos/embed/' + this.uuid
1689 }
e4f97bab 1690
40e87e9e 1691 getThumbnailStaticPath () {
3fd3ab2d 1692 return join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName())
e4f97bab 1693 }
227d02fe 1694
40e87e9e 1695 getPreviewStaticPath () {
3fd3ab2d
C
1696 return join(STATIC_PATHS.PREVIEWS, this.getPreviewName())
1697 }
40298b02 1698
098eb377
C
1699 toFormattedJSON (options?: VideoFormattingJSONOptions): Video {
1700 return videoModelToFormattedJSON(this, options)
14d3270f 1701 }
14d3270f 1702
2422c46b 1703 toFormattedDetailsJSON (): VideoDetails {
098eb377 1704 return videoModelToFormattedDetailsJSON(this)
244e76a5
RK
1705 }
1706
1707 getFormattedVideoFilesJSON (): VideoFile[] {
098eb377 1708 return videoFilesModelToFormattedJSON(this, this.VideoFiles)
3fd3ab2d 1709 }
e4f97bab 1710
3fd3ab2d 1711 toActivityPubObject (): VideoTorrentObject {
098eb377 1712 return videoModelToActivityPubObject(this)
3fd3ab2d
C
1713 }
1714
1715 getTruncatedDescription () {
1716 if (!this.description) return null
93e1258c 1717
bffbebbe 1718 const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
c73e83da 1719 return peertubeTruncate(this.description, maxLength)
93e1258c
C
1720 }
1721
056aa7f2 1722 getOriginalFileResolution () {
3fd3ab2d 1723 const originalFilePath = this.getVideoFilePath(this.getOriginalFile())
0d0e8dd0 1724
056aa7f2 1725 return getVideoFileResolution(originalFilePath)
3fd3ab2d 1726 }
0d0e8dd0 1727
96f29c0f 1728 getDescriptionAPIPath () {
3fd3ab2d 1729 return `/api/${API_VERSION}/videos/${this.uuid}/description`
feb4bdfd
C
1730 }
1731
3fd3ab2d
C
1732 removeThumbnail () {
1733 const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
62689b94 1734 return remove(thumbnailPath)
ed31c059 1735 .catch(err => logger.warn('Cannot delete thumbnail %s.', thumbnailPath, { err }))
feb4bdfd
C
1736 }
1737
3fd3ab2d 1738 removePreview () {
ed31c059 1739 const previewPath = join(CONFIG.STORAGE.PREVIEWS_DIR + this.getPreviewName())
62689b94 1740 return remove(previewPath)
ed31c059 1741 .catch(err => logger.warn('Cannot delete preview %s.', previewPath, { err }))
7920c273
C
1742 }
1743
b9fffa29
C
1744 removeFile (videoFile: VideoFileModel, isRedundancy = false) {
1745 const baseDir = isRedundancy ? CONFIG.STORAGE.REDUNDANCY_DIR : CONFIG.STORAGE.VIDEOS_DIR
1746
1747 const filePath = join(baseDir, this.getVideoFilename(videoFile))
62689b94 1748 return remove(filePath)
ed31c059 1749 .catch(err => logger.warn('Cannot delete file %s.', filePath, { err }))
feb4bdfd
C
1750 }
1751
3fd3ab2d
C
1752 removeTorrent (videoFile: VideoFileModel) {
1753 const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
62689b94 1754 return remove(torrentPath)
ed31c059 1755 .catch(err => logger.warn('Cannot delete torrent %s.', torrentPath, { err }))
aaf61f38
C
1756 }
1757
09209296 1758 removeStreamingPlaylist (isRedundancy = false) {
9c6ca37f 1759 const baseDir = isRedundancy ? HLS_REDUNDANCY_DIRECTORY : HLS_STREAMING_PLAYLIST_DIRECTORY
09209296
C
1760
1761 const filePath = join(baseDir, this.uuid)
1762 return remove(filePath)
1763 .catch(err => logger.warn('Cannot delete playlist directory %s.', filePath, { err }))
1764 }
1765
1297eb5d
C
1766 isOutdated () {
1767 if (this.isOwned()) return false
1768
1769 const now = Date.now()
1770 const createdAtTime = this.createdAt.getTime()
1771 const updatedAtTime = this.updatedAt.getTime()
1772
1773 return (now - createdAtTime) > ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL &&
1774 (now - updatedAtTime) > ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL
1775 }
1776
04b8c3fb
C
1777 setAsRefreshed () {
1778 this.changed('updatedAt', true)
1779
1780 return this.save()
1781 }
1782
c48e82b5 1783 getBaseUrls () {
3fd3ab2d
C
1784 let baseUrlHttp
1785 let baseUrlWs
7920c273 1786
3fd3ab2d
C
1787 if (this.isOwned()) {
1788 baseUrlHttp = CONFIG.WEBSERVER.URL
1789 baseUrlWs = CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
1790 } else {
50d6de9c
C
1791 baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + this.VideoChannel.Account.Actor.Server.host
1792 baseUrlWs = REMOTE_SCHEME.WS + '://' + this.VideoChannel.Account.Actor.Server.host
6fcd19ba 1793 }
aaf61f38 1794
3fd3ab2d 1795 return { baseUrlHttp, baseUrlWs }
15d4ee04 1796 }
a96aed15 1797
c48e82b5
C
1798 generateMagnetUri (videoFile: VideoFileModel, baseUrlHttp: string, baseUrlWs: string) {
1799 const xs = this.getTorrentUrl(videoFile, baseUrlHttp)
09209296 1800 const announce = this.getTrackerUrls(baseUrlHttp, baseUrlWs)
c48e82b5
C
1801 let urlList = [ this.getVideoFileUrl(videoFile, baseUrlHttp) ]
1802
1803 const redundancies = videoFile.RedundancyVideos
1804 if (isArray(redundancies)) urlList = urlList.concat(redundancies.map(r => r.fileUrl))
1805
1806 const magnetHash = {
1807 xs,
1808 announce,
1809 urlList,
1810 infoHash: videoFile.infoHash,
1811 name: this.name
1812 }
1813
1814 return magnetUtil.encode(magnetHash)
1815 }
1816
09209296
C
1817 getTrackerUrls (baseUrlHttp: string, baseUrlWs: string) {
1818 return [ baseUrlWs + '/tracker/socket', baseUrlHttp + '/tracker/announce' ]
1819 }
1820
c48e82b5 1821 getThumbnailUrl (baseUrlHttp: string) {
3fd3ab2d 1822 return baseUrlHttp + STATIC_PATHS.THUMBNAILS + this.getThumbnailName()
a96aed15
C
1823 }
1824
c48e82b5 1825 getTorrentUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
3fd3ab2d
C
1826 return baseUrlHttp + STATIC_PATHS.TORRENTS + this.getTorrentFileName(videoFile)
1827 }
e4f97bab 1828
c48e82b5 1829 getTorrentDownloadUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
02756fbd
C
1830 return baseUrlHttp + STATIC_DOWNLOAD_PATHS.TORRENTS + this.getTorrentFileName(videoFile)
1831 }
1832
c48e82b5 1833 getVideoFileUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
3fd3ab2d
C
1834 return baseUrlHttp + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
1835 }
a96aed15 1836
b9fffa29
C
1837 getVideoRedundancyUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
1838 return baseUrlHttp + STATIC_PATHS.REDUNDANCY + this.getVideoFilename(videoFile)
1839 }
1840
c48e82b5 1841 getVideoFileDownloadUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
02756fbd
C
1842 return baseUrlHttp + STATIC_DOWNLOAD_PATHS.VIDEOS + this.getVideoFilename(videoFile)
1843 }
09209296
C
1844
1845 getBandwidthBits (videoFile: VideoFileModel) {
1846 return Math.ceil((videoFile.size * 8) / this.duration)
1847 }
a96aed15 1848}