]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video-playlist.ts
Fix video update transaction
[github/Chocobozzz/PeerTube.git] / server / models / video / video-playlist.ts
CommitLineData
2650d6d4 1import { join } from 'path'
37a44fc9 2import { FindOptions, literal, Op, ScopeOptions, Sequelize, Transaction, WhereOptions } from 'sequelize'
418d092a
C
3import {
4 AllowNull,
418d092a
C
5 BelongsTo,
6 Column,
7 CreatedAt,
8 DataType,
9 Default,
10 ForeignKey,
11 HasMany,
e8bafea3 12 HasOne,
418d092a
C
13 Is,
14 IsUUID,
15 Model,
16 Scopes,
17 Table,
822c7e61 18 UpdatedAt
418d092a 19} from 'sequelize-typescript'
d4a8e7a6 20import { buildUUID, uuidToShort } from '@server/helpers/uuid'
2650d6d4 21import { MAccountId, MChannelId } from '@server/types/models'
9c9a236b 22import { AttributesOnly, buildPlaylistEmbedPath, buildPlaylistWatchPath, pick } from '@shared/core-utils'
2650d6d4
C
23import { ActivityIconObject } from '../../../shared/models/activitypub/objects'
24import { PlaylistObject } from '../../../shared/models/activitypub/objects/playlist-object'
418d092a 25import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
2650d6d4
C
26import { VideoPlaylistType } from '../../../shared/models/videos/playlist/video-playlist-type.model'
27import { VideoPlaylist } from '../../../shared/models/videos/playlist/video-playlist.model'
28import { activityPubCollectionPagination } from '../../helpers/activitypub'
29import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
418d092a
C
30import {
31 isVideoPlaylistDescriptionValid,
32 isVideoPlaylistNameValid,
33 isVideoPlaylistPrivacyValid
34} from '../../helpers/custom-validators/video-playlists'
df0b219d 35import {
9f79ade6 36 ACTIVITY_PUB,
df0b219d
C
37 CONSTRAINTS_FIELDS,
38 STATIC_PATHS,
39 THUMBNAILS_SIZE,
40 VIDEO_PLAYLIST_PRIVACIES,
6dd9de95
C
41 VIDEO_PLAYLIST_TYPES,
42 WEBSERVER
74dc3bca 43} from '../../initializers/constants'
2650d6d4 44import { MThumbnail } from '../../types/models/video/thumbnail'
453e83ea 45import {
822c7e61
C
46 MVideoPlaylistAccountThumbnail,
47 MVideoPlaylistAP,
1ca9f7c3 48 MVideoPlaylistFormattable,
453e83ea
C
49 MVideoPlaylistFull,
50 MVideoPlaylistFullSummary,
51 MVideoPlaylistIdWithElements
26d6bf65 52} from '../../types/models/video/video-playlist'
2650d6d4 53import { AccountModel, ScopeNames as AccountScopeNames, SummaryOptions } from '../account/account'
7d9ba5c0 54import { ActorModel } from '../actor/actor'
fa47956e 55import { setAsUpdated } from '../shared'
37a44fc9
C
56import {
57 buildServerIdsFollowedBy,
58 buildTrigramSearchIndex,
59 buildWhereIdOrUUID,
60 createSimilarityAttribute,
61 getPlaylistSort,
62 isOutdated,
63 throwIfNotValid
64} from '../utils'
2650d6d4
C
65import { ThumbnailModel } from './thumbnail'
66import { ScopeNames as VideoChannelScopeNames, VideoChannelModel } from './video-channel'
67import { VideoPlaylistElementModel } from './video-playlist-element'
418d092a
C
68
69enum ScopeNames {
70 AVAILABLE_FOR_LIST = 'AVAILABLE_FOR_LIST',
71 WITH_VIDEOS_LENGTH = 'WITH_VIDEOS_LENGTH',
df0b219d 72 WITH_ACCOUNT_AND_CHANNEL_SUMMARY = 'WITH_ACCOUNT_AND_CHANNEL_SUMMARY',
09979f89 73 WITH_ACCOUNT = 'WITH_ACCOUNT',
e8bafea3 74 WITH_THUMBNAIL = 'WITH_THUMBNAIL',
09979f89 75 WITH_ACCOUNT_AND_CHANNEL = 'WITH_ACCOUNT_AND_CHANNEL'
418d092a
C
76}
77
78type AvailableForListOptions = {
fe19f600 79 followerActorId?: number
df0b219d
C
80 type?: VideoPlaylistType
81 accountId?: number
418d092a 82 videoChannelId?: number
a1587156 83 listMyPlaylists?: boolean
c06af501 84 search?: string
fa47956e 85 host?: string
fbd67e7f 86 uuids?: string[]
37a44fc9
C
87 withVideos?: boolean
88}
89
90function getVideoLengthSelect () {
91 return 'SELECT COUNT("id") FROM "videoPlaylistElement" WHERE "videoPlaylistId" = "VideoPlaylistModel"."id"'
418d092a
C
92}
93
3acc5084 94@Scopes(() => ({
a1587156 95 [ScopeNames.WITH_THUMBNAIL]: {
e8bafea3
C
96 include: [
97 {
3acc5084 98 model: ThumbnailModel,
e8bafea3
C
99 required: false
100 }
101 ]
102 },
a1587156 103 [ScopeNames.WITH_VIDEOS_LENGTH]: {
418d092a
C
104 attributes: {
105 include: [
1735c825 106 [
37a44fc9 107 literal(`(${getVideoLengthSelect()})`),
418d092a
C
108 'videosLength'
109 ]
110 ]
111 }
3acc5084 112 } as FindOptions,
a1587156 113 [ScopeNames.WITH_ACCOUNT]: {
df0b219d
C
114 include: [
115 {
3acc5084 116 model: AccountModel,
df0b219d
C
117 required: true
118 }
119 ]
120 },
a1587156 121 [ScopeNames.WITH_ACCOUNT_AND_CHANNEL_SUMMARY]: {
418d092a
C
122 include: [
123 {
3acc5084 124 model: AccountModel.scope(AccountScopeNames.SUMMARY),
418d092a
C
125 required: true
126 },
127 {
3acc5084 128 model: VideoChannelModel.scope(VideoChannelScopeNames.SUMMARY),
418d092a
C
129 required: false
130 }
131 ]
132 },
a1587156 133 [ScopeNames.WITH_ACCOUNT_AND_CHANNEL]: {
09979f89
C
134 include: [
135 {
3acc5084 136 model: AccountModel,
09979f89
C
137 required: true
138 },
139 {
3acc5084 140 model: VideoChannelModel,
09979f89
C
141 required: false
142 }
143 ]
144 },
a1587156 145 [ScopeNames.AVAILABLE_FOR_LIST]: (options: AvailableForListOptions) => {
fa47956e
C
146 const whereAnd: WhereOptions[] = []
147
148 const whereServer = options.host && options.host !== WEBSERVER.HOST
149 ? { host: options.host }
150 : undefined
151
6b0c3c7c 152 let whereActor: WhereOptions = {}
418d092a 153
fa47956e
C
154 if (options.host === WEBSERVER.HOST) {
155 whereActor = {
156 [Op.and]: [ { serverId: null } ]
157 }
158 }
418d092a 159
6b0c3c7c 160 if (options.listMyPlaylists !== true) {
418d092a
C
161 whereAnd.push({
162 privacy: VideoPlaylistPrivacy.PUBLIC
163 })
6b0c3c7c 164
fe19f600
RK
165 // Only list local playlists
166 const whereActorOr: WhereOptions[] = [
167 {
168 serverId: null
169 }
170 ]
6b0c3c7c 171
fe19f600
RK
172 // … OR playlists that are on an instance followed by actorId
173 if (options.followerActorId) {
174 const inQueryInstanceFollow = buildServerIdsFollowedBy(options.followerActorId)
175
176 whereActorOr.push({
177 serverId: {
178 [Op.in]: literal(inQueryInstanceFollow)
6b0c3c7c 179 }
fe19f600
RK
180 })
181 }
182
fa47956e 183 Object.assign(whereActor, { [Op.or]: whereActorOr })
418d092a
C
184 }
185
186 if (options.accountId) {
187 whereAnd.push({
188 ownerAccountId: options.accountId
189 })
190 }
191
192 if (options.videoChannelId) {
193 whereAnd.push({
194 videoChannelId: options.videoChannelId
195 })
196 }
197
df0b219d
C
198 if (options.type) {
199 whereAnd.push({
200 type: options.type
201 })
202 }
203
fbd67e7f
C
204 if (options.uuids) {
205 whereAnd.push({
206 uuid: {
207 [Op.in]: options.uuids
208 }
209 })
210 }
211
37a44fc9
C
212 if (options.withVideos === true) {
213 whereAnd.push(
214 literal(`(${getVideoLengthSelect()}) != 0`)
215 )
216 }
217
fbd67e7f 218 let attributesInclude: any[] = [ literal('0 as similarity') ]
37a44fc9 219
c06af501 220 if (options.search) {
37a44fc9
C
221 const escapedSearch = VideoPlaylistModel.sequelize.escape(options.search)
222 const escapedLikeSearch = VideoPlaylistModel.sequelize.escape('%' + options.search + '%')
fbd67e7f 223 attributesInclude = [ createSimilarityAttribute('VideoPlaylistModel.name', options.search) ]
37a44fc9 224
c06af501 225 whereAnd.push({
37a44fc9
C
226 [Op.or]: [
227 Sequelize.literal(
228 'lower(immutable_unaccent("VideoPlaylistModel"."name")) % lower(immutable_unaccent(' + escapedSearch + '))'
229 ),
230 Sequelize.literal(
231 'lower(immutable_unaccent("VideoPlaylistModel"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))'
232 )
233 ]
c06af501
RK
234 })
235 }
236
418d092a 237 const where = {
1735c825 238 [Op.and]: whereAnd
418d092a
C
239 }
240
418d092a 241 return {
37a44fc9
C
242 attributes: {
243 include: attributesInclude
244 },
418d092a
C
245 where,
246 include: [
247 {
b49f22d8 248 model: AccountModel.scope({
fa47956e 249 method: [ AccountScopeNames.SUMMARY, { whereActor, whereServer } as SummaryOptions ]
b49f22d8 250 }),
418d092a
C
251 required: true
252 },
253 {
254 model: VideoChannelModel.scope(VideoChannelScopeNames.SUMMARY),
255 required: false
256 }
257 ]
3acc5084 258 } as FindOptions
418d092a 259 }
3acc5084 260}))
418d092a
C
261
262@Table({
263 tableName: 'videoPlaylist',
264 indexes: [
37a44fc9
C
265 buildTrigramSearchIndex('video_playlist_name_trigram', 'name'),
266
418d092a
C
267 {
268 fields: [ 'ownerAccountId' ]
269 },
270 {
271 fields: [ 'videoChannelId' ]
272 },
273 {
274 fields: [ 'url' ],
275 unique: true
276 }
277 ]
278})
16c016e8 279export class VideoPlaylistModel extends Model<Partial<AttributesOnly<VideoPlaylistModel>>> {
418d092a
C
280 @CreatedAt
281 createdAt: Date
282
283 @UpdatedAt
284 updatedAt: Date
285
286 @AllowNull(false)
287 @Is('VideoPlaylistName', value => throwIfNotValid(value, isVideoPlaylistNameValid, 'name'))
288 @Column
289 name: string
290
291 @AllowNull(true)
1735c825 292 @Is('VideoPlaylistDescription', value => throwIfNotValid(value, isVideoPlaylistDescriptionValid, 'description', true))
1c320673 293 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.DESCRIPTION.max))
418d092a
C
294 description: string
295
296 @AllowNull(false)
297 @Is('VideoPlaylistPrivacy', value => throwIfNotValid(value, isVideoPlaylistPrivacyValid, 'privacy'))
298 @Column
299 privacy: VideoPlaylistPrivacy
300
301 @AllowNull(false)
302 @Is('VideoPlaylistUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
303 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.URL.max))
304 url: string
305
306 @AllowNull(false)
307 @Default(DataType.UUIDV4)
308 @IsUUID(4)
309 @Column(DataType.UUID)
310 uuid: string
311
df0b219d
C
312 @AllowNull(false)
313 @Default(VideoPlaylistType.REGULAR)
314 @Column
315 type: VideoPlaylistType
316
418d092a
C
317 @ForeignKey(() => AccountModel)
318 @Column
319 ownerAccountId: number
320
321 @BelongsTo(() => AccountModel, {
322 foreignKey: {
323 allowNull: false
324 },
325 onDelete: 'CASCADE'
326 })
327 OwnerAccount: AccountModel
328
329 @ForeignKey(() => VideoChannelModel)
330 @Column
331 videoChannelId: number
332
333 @BelongsTo(() => VideoChannelModel, {
334 foreignKey: {
07b1a18a 335 allowNull: true
418d092a
C
336 },
337 onDelete: 'CASCADE'
338 })
339 VideoChannel: VideoChannelModel
340
341 @HasMany(() => VideoPlaylistElementModel, {
342 foreignKey: {
343 name: 'videoPlaylistId',
344 allowNull: false
345 },
df0b219d 346 onDelete: 'CASCADE'
418d092a
C
347 })
348 VideoPlaylistElements: VideoPlaylistElementModel[]
349
e8bafea3
C
350 @HasOne(() => ThumbnailModel, {
351 foreignKey: {
352 name: 'videoPlaylistId',
353 allowNull: true
354 },
355 onDelete: 'CASCADE',
356 hooks: true
357 })
358 Thumbnail: ThumbnailModel
418d092a 359
9c9a236b 360 static listForApi (options: AvailableForListOptions & {
a1587156
C
361 start: number
362 count: number
363 sort: string
418d092a
C
364 }) {
365 const query = {
366 offset: options.start,
367 limit: options.count,
49cff3a4 368 order: getPlaylistSort(options.sort)
418d092a
C
369 }
370
3acc5084 371 const scopes: (string | ScopeOptions)[] = [
418d092a
C
372 {
373 method: [
374 ScopeNames.AVAILABLE_FOR_LIST,
375 {
9c9a236b
C
376 ...pick(options, [ 'type', 'followerActorId', 'accountId', 'videoChannelId', 'listMyPlaylists', 'search', 'host', 'uuids' ]),
377
37a44fc9 378 withVideos: options.withVideos || false
418d092a
C
379 } as AvailableForListOptions
380 ]
3acc5084 381 },
e8bafea3
C
382 ScopeNames.WITH_VIDEOS_LENGTH,
383 ScopeNames.WITH_THUMBNAIL
418d092a
C
384 ]
385
386 return VideoPlaylistModel
387 .scope(scopes)
388 .findAndCountAll(query)
389 .then(({ rows, count }) => {
390 return { total: count, data: rows }
391 })
392 }
393
9c9a236b 394 static searchForApi (options: Pick<AvailableForListOptions, 'followerActorId' | 'search'| 'host'| 'uuids'> & {
37a44fc9
C
395 start: number
396 count: number
397 sort: string
37a44fc9
C
398 }) {
399 return VideoPlaylistModel.listForApi({
400 ...options,
9c9a236b 401
37a44fc9
C
402 type: VideoPlaylistType.REGULAR,
403 listMyPlaylists: false,
404 withVideos: true
405 })
406 }
407
7405b6ba
C
408 static listPublicUrlsOfForAP (options: { account?: MAccountId, channel?: MChannelId }, start: number, count: number) {
409 const where = {
410 privacy: VideoPlaylistPrivacy.PUBLIC
411 }
412
413 if (options.account) {
414 Object.assign(where, { ownerAccountId: options.account.id })
415 }
416
417 if (options.channel) {
418 Object.assign(where, { videoChannelId: options.channel.id })
419 }
420
418d092a
C
421 const query = {
422 attributes: [ 'url' ],
423 offset: start,
424 limit: count,
7405b6ba 425 where
418d092a
C
426 }
427
428 return VideoPlaylistModel.findAndCountAll(query)
429 .then(({ rows, count }) => {
430 return { total: count, data: rows.map(p => p.url) }
431 })
432 }
433
b49f22d8 434 static listPlaylistIdsOf (accountId: number, videoIds: number[]): Promise<MVideoPlaylistIdWithElements[]> {
f0a39880
C
435 const query = {
436 attributes: [ 'id' ],
437 where: {
438 ownerAccountId: accountId
439 },
440 include: [
441 {
bfbd9128 442 attributes: [ 'id', 'videoId', 'startTimestamp', 'stopTimestamp' ],
f0a39880
C
443 model: VideoPlaylistElementModel.unscoped(),
444 where: {
445 videoId: {
0374b6b5 446 [Op.in]: videoIds
f0a39880
C
447 }
448 },
449 required: true
450 }
451 ]
452 }
453
454 return VideoPlaylistModel.findAll(query)
455 }
456
418d092a
C
457 static doesPlaylistExist (url: string) {
458 const query = {
b49f22d8 459 attributes: [ 'id' ],
418d092a
C
460 where: {
461 url
462 }
463 }
464
465 return VideoPlaylistModel
466 .findOne(query)
467 .then(e => !!e)
468 }
469
b49f22d8 470 static loadWithAccountAndChannelSummary (id: number | string, transaction: Transaction): Promise<MVideoPlaylistFullSummary> {
418d092a
C
471 const where = buildWhereIdOrUUID(id)
472
473 const query = {
474 where,
475 transaction
476 }
477
478 return VideoPlaylistModel
e8bafea3 479 .scope([ ScopeNames.WITH_ACCOUNT_AND_CHANNEL_SUMMARY, ScopeNames.WITH_VIDEOS_LENGTH, ScopeNames.WITH_THUMBNAIL ])
09979f89
C
480 .findOne(query)
481 }
482
b49f22d8 483 static loadWithAccountAndChannel (id: number | string, transaction: Transaction): Promise<MVideoPlaylistFull> {
09979f89
C
484 const where = buildWhereIdOrUUID(id)
485
486 const query = {
487 where,
488 transaction
489 }
490
491 return VideoPlaylistModel
e8bafea3 492 .scope([ ScopeNames.WITH_ACCOUNT_AND_CHANNEL, ScopeNames.WITH_VIDEOS_LENGTH, ScopeNames.WITH_THUMBNAIL ])
418d092a
C
493 .findOne(query)
494 }
495
b49f22d8 496 static loadByUrlAndPopulateAccount (url: string): Promise<MVideoPlaylistAccountThumbnail> {
df0b219d
C
497 const query = {
498 where: {
499 url
500 }
501 }
502
e8bafea3 503 return VideoPlaylistModel.scope([ ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_THUMBNAIL ]).findOne(query)
df0b219d
C
504 }
505
37a44fc9
C
506 static loadByUrlWithAccountAndChannelSummary (url: string): Promise<MVideoPlaylistFullSummary> {
507 const query = {
508 where: {
509 url
510 }
511 }
512
513 return VideoPlaylistModel
514 .scope([ ScopeNames.WITH_ACCOUNT_AND_CHANNEL_SUMMARY, ScopeNames.WITH_VIDEOS_LENGTH, ScopeNames.WITH_THUMBNAIL ])
515 .findOne(query)
516 }
517
418d092a
C
518 static getPrivacyLabel (privacy: VideoPlaylistPrivacy) {
519 return VIDEO_PLAYLIST_PRIVACIES[privacy] || 'Unknown'
520 }
521
df0b219d
C
522 static getTypeLabel (type: VideoPlaylistType) {
523 return VIDEO_PLAYLIST_TYPES[type] || 'Unknown'
524 }
525
1735c825 526 static resetPlaylistsOfChannel (videoChannelId: number, transaction: Transaction) {
df0b219d
C
527 const query = {
528 where: {
529 videoChannelId
530 },
531 transaction
532 }
533
534 return VideoPlaylistModel.update({ privacy: VideoPlaylistPrivacy.PRIVATE, videoChannelId: null }, query)
535 }
536
453e83ea 537 async setAndSaveThumbnail (thumbnail: MThumbnail, t: Transaction) {
3acc5084 538 thumbnail.videoPlaylistId = this.id
e8bafea3 539
3acc5084 540 this.Thumbnail = await thumbnail.save({ transaction: t })
e8bafea3
C
541 }
542
543 hasThumbnail () {
544 return !!this.Thumbnail
545 }
546
65af03a2
C
547 hasGeneratedThumbnail () {
548 return this.hasThumbnail() && this.Thumbnail.automaticallyGenerated === true
549 }
550
e8bafea3 551 generateThumbnailName () {
418d092a
C
552 const extension = '.jpg'
553
d4a8e7a6 554 return 'playlist-' + buildUUID() + extension
418d092a
C
555 }
556
557 getThumbnailUrl () {
e8bafea3
C
558 if (!this.hasThumbnail()) return null
559
3acc5084 560 return WEBSERVER.URL + STATIC_PATHS.THUMBNAILS + this.Thumbnail.filename
418d092a
C
561 }
562
563 getThumbnailStaticPath () {
e8bafea3 564 if (!this.hasThumbnail()) return null
418d092a 565
3acc5084 566 return join(STATIC_PATHS.THUMBNAILS, this.Thumbnail.filename)
418d092a
C
567 }
568
15a7eafb
C
569 getWatchStaticPath () {
570 return buildPlaylistWatchPath({ shortUUID: uuidToShort(this.uuid) })
8d987ec6
K
571 }
572
6fad8e51 573 getEmbedStaticPath () {
15a7eafb 574 return buildPlaylistEmbedPath(this)
6fad8e51
C
575 }
576
fe19f600
RK
577 static async getStats () {
578 const totalLocalPlaylists = await VideoPlaylistModel.count({
579 include: [
580 {
581 model: AccountModel,
582 required: true,
583 include: [
584 {
585 model: ActorModel,
586 required: true,
587 where: {
588 serverId: null
589 }
590 }
591 ]
592 }
593 ],
594 where: {
595 privacy: VideoPlaylistPrivacy.PUBLIC
596 }
597 })
598
599 return {
600 totalLocalPlaylists
601 }
602 }
603
9f79ade6 604 setAsRefreshed () {
49af5ac8 605 return setAsUpdated('videoPlaylist', this.id)
9f79ade6
C
606 }
607
37a44fc9
C
608 setVideosLength (videosLength: number) {
609 this.set('videosLength' as any, videosLength, { raw: true })
610 }
611
418d092a
C
612 isOwned () {
613 return this.OwnerAccount.isOwned()
614 }
615
9f79ade6
C
616 isOutdated () {
617 if (this.isOwned()) return false
618
619 return isOutdated(this, ACTIVITY_PUB.VIDEO_PLAYLIST_REFRESH_INTERVAL)
620 }
621
1ca9f7c3 622 toFormattedJSON (this: MVideoPlaylistFormattable): VideoPlaylist {
418d092a
C
623 return {
624 id: this.id,
625 uuid: this.uuid,
d4a8e7a6
C
626 shortUUID: uuidToShort(this.uuid),
627
418d092a
C
628 isLocal: this.isOwned(),
629
37a44fc9
C
630 url: this.url,
631
418d092a
C
632 displayName: this.name,
633 description: this.description,
634 privacy: {
635 id: this.privacy,
636 label: VideoPlaylistModel.getPrivacyLabel(this.privacy)
637 },
638
639 thumbnailPath: this.getThumbnailStaticPath(),
951b582f 640 embedPath: this.getEmbedStaticPath(),
418d092a 641
df0b219d
C
642 type: {
643 id: this.type,
644 label: VideoPlaylistModel.getTypeLabel(this.type)
645 },
646
1735c825 647 videosLength: this.get('videosLength') as number,
418d092a
C
648
649 createdAt: this.createdAt,
650 updatedAt: this.updatedAt,
651
652 ownerAccount: this.OwnerAccount.toFormattedSummaryJSON(),
c1843150
C
653 videoChannel: this.VideoChannel
654 ? this.VideoChannel.toFormattedSummaryJSON()
655 : null
418d092a
C
656 }
657 }
658
b5fecbf4 659 toActivityPubObject (this: MVideoPlaylistAP, page: number, t: Transaction): Promise<PlaylistObject> {
418d092a 660 const handler = (start: number, count: number) => {
df0b219d 661 return VideoPlaylistElementModel.listUrlsOfForAP(this.id, start, count, t)
418d092a
C
662 }
663
e8bafea3
C
664 let icon: ActivityIconObject
665 if (this.hasThumbnail()) {
666 icon = {
667 type: 'Image' as 'Image',
668 url: this.getThumbnailUrl(),
669 mediaType: 'image/jpeg' as 'image/jpeg',
670 width: THUMBNAILS_SIZE.width,
671 height: THUMBNAILS_SIZE.height
672 }
673 }
674
df0b219d 675 return activityPubCollectionPagination(this.url, handler, page)
418d092a
C
676 .then(o => {
677 return Object.assign(o, {
678 type: 'Playlist' as 'Playlist',
679 name: this.name,
680 content: this.description,
681 uuid: this.uuid,
df0b219d
C
682 published: this.createdAt.toISOString(),
683 updated: this.updatedAt.toISOString(),
418d092a 684 attributedTo: this.VideoChannel ? [ this.VideoChannel.Actor.url ] : [],
e8bafea3 685 icon
418d092a
C
686 })
687 })
688 }
689}