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.
main
${ noResults }
25 lines
718 B
TypeScript
25 lines
718 B
TypeScript
import { JOB_PRIORITY } from '@server/initializers/constants.js'
|
|||
import { VideoModel } from '@server/models/video/video.js'
|
|||
import { MUserId } from '@server/types/models/index.js'
|
|||
|
|||
export async function getTranscodingJobPriority (options: {
|
|||
user: MUserId
|
|||
fallback: number
|
|||
type: 'vod' | 'studio'
|
|||
}) {
|
|||
const { user, fallback, type } = options
|
|||
|
|||
if (!user) return fallback
|
|||
|
|||
const now = new Date()
|
|||
const lastWeek = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 7)
|
|||
|
|||
const videoUploadedByUser = await VideoModel.countVideosUploadedByUserSince(user.id, lastWeek)
|
|||
|
|||
const base = type === 'vod'
|
|||
? JOB_PRIORITY.TRANSCODING
|
|||
: JOB_PRIORITY.VIDEO_STUDIO
|
|||
|
|||
return base + videoUploadedByUser
|
|||
}
|