You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
import { VideoIncludeType } from '@peertube/peertube-models'
|
|||
import { mdToOneLinePlainText, toSafeHtml } from '@server/helpers/markdown.js'
|
|||
import { CONFIG } from '@server/initializers/config.js'
|
|||
import { WEBSERVER } from '@server/initializers/constants.js'
|
|||
import { getServerActor } from '@server/models/application/application.js'
|
|||
import { getCategoryLabel } from '@server/models/video/formatter/index.js'
|
|||
import { DisplayOnlyForFollowerOptions } from '@server/models/video/sql/video/index.js'
|
|||
import { VideoModel } from '@server/models/video/video.js'
|
|||
import { MThumbnail, MUserDefault } from '@server/types/models/index.js'
|
|||
|
|||
export async function getVideosForFeeds (options: {
|
|||
sort: string
|
|||
nsfw: boolean
|
|||
isLocal: boolean
|
|||
include: VideoIncludeType
|
|||
|
|||
accountId?: number
|
|||
videoChannelId?: number
|
|||
displayOnlyForFollower?: DisplayOnlyForFollowerOptions
|
|||
user?: MUserDefault
|
|||
}) {
|
|||
const server = await getServerActor()
|
|||
|
|||
const { data } = await VideoModel.listForApi({
|
|||
start: 0,
|
|||
count: CONFIG.FEEDS.VIDEOS.COUNT,
|
|||
displayOnlyForFollower: {
|
|||
actorId: server.id,
|
|||
orLocalVideos: true
|
|||
},
|
|||
hasFiles: true,
|
|||
countVideos: false,
|
|||
|
|||
...options
|
|||
})
|
|||
|
|||
return data
|
|||
}
|
|||
|
|||
export function getCommonVideoFeedAttributes (video: VideoModel) {
|
|||
const localLink = WEBSERVER.URL + video.getWatchStaticPath()
|
|||
|
|||
const thumbnailModels: MThumbnail[] = []
|
|||
if (video.hasPreview()) thumbnailModels.push(video.getPreview())
|
|||
if (video.hasMiniature()) thumbnailModels.push(video.getMiniature())
|
|||
|
|||
return {
|
|||
title: video.name,
|
|||
link: localLink,
|
|||
description: mdToOneLinePlainText(video.getTruncatedDescription()),
|
|||
content: toSafeHtml(video.description),
|
|||
|
|||
date: video.publishedAt,
|
|||
nsfw: video.nsfw,
|
|||
|
|||
category: video.category
|
|||
? [ { name: getCategoryLabel(video.category) } ]
|
|||
: undefined,
|
|||
|
|||
thumbnails: thumbnailModels.map(t => ({
|
|||
url: WEBSERVER.URL + t.getLocalStaticPath(),
|
|||
width: t.width,
|
|||
height: t.height
|
|||
}))
|
|||
}
|
|||
}
|