Fix blacklist sort
This commit is contained in:
parent
b9dde7d96b
commit
ac3d2e0569
|
@ -1,11 +1,12 @@
|
||||||
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
||||||
import { getSortOnModel, SortType, throwIfNotValid } from '../utils'
|
import { getSortOnModel, SortType, throwIfNotValid } from '../utils'
|
||||||
import { VideoModel, ScopeNames as VideoModelScopeNames } from './video'
|
import { ScopeNames as VideoModelScopeNames, VideoModel } from './video'
|
||||||
import { ScopeNames as VideoChannelScopeNames, VideoChannelModel } from './video-channel'
|
import { ScopeNames as VideoChannelScopeNames, VideoChannelModel } from './video-channel'
|
||||||
import { isVideoBlacklistReasonValid, isVideoBlacklistTypeValid } from '../../helpers/custom-validators/video-blacklist'
|
import { isVideoBlacklistReasonValid, isVideoBlacklistTypeValid } from '../../helpers/custom-validators/video-blacklist'
|
||||||
import { VideoBlacklist, VideoBlacklistType } from '../../../shared/models/videos'
|
import { VideoBlacklist, VideoBlacklistType } from '../../../shared/models/videos'
|
||||||
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
|
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
|
||||||
import { FindOptions } from 'sequelize'
|
import { FindOptions } from 'sequelize'
|
||||||
|
import { ThumbnailModel } from './thumbnail'
|
||||||
|
|
||||||
@Table({
|
@Table({
|
||||||
tableName: 'videoBlacklist',
|
tableName: 'videoBlacklist',
|
||||||
|
@ -52,35 +53,50 @@ export class VideoBlacklistModel extends Model<VideoBlacklistModel> {
|
||||||
Video: VideoModel
|
Video: VideoModel
|
||||||
|
|
||||||
static listForApi (start: number, count: number, sort: SortType, type?: VideoBlacklistType) {
|
static listForApi (start: number, count: number, sort: SortType, type?: VideoBlacklistType) {
|
||||||
const query: FindOptions = {
|
function buildBaseQuery (): FindOptions {
|
||||||
offset: start,
|
return {
|
||||||
limit: count,
|
offset: start,
|
||||||
order: getSortOnModel(sort.sortModel, sort.sortValue),
|
limit: count,
|
||||||
include: [
|
order: getSortOnModel(sort.sortModel, sort.sortValue)
|
||||||
{
|
}
|
||||||
model: VideoModel.scope(VideoModelScopeNames.WITH_THUMBNAILS),
|
|
||||||
required: true,
|
|
||||||
include: [
|
|
||||||
{
|
|
||||||
model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, true ] }),
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const countQuery = buildBaseQuery()
|
||||||
|
|
||||||
|
const findQuery = buildBaseQuery()
|
||||||
|
findQuery.subQuery = false
|
||||||
|
findQuery.include = [
|
||||||
|
{
|
||||||
|
model: VideoModel,
|
||||||
|
required: true,
|
||||||
|
include: [
|
||||||
|
{
|
||||||
|
model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, true ] }),
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
model: ThumbnailModel,
|
||||||
|
attributes: [ 'type', 'filename' ],
|
||||||
|
required: false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
if (type) {
|
if (type) {
|
||||||
query.where = { type }
|
countQuery.where = { type }
|
||||||
|
findQuery.where = { type }
|
||||||
}
|
}
|
||||||
|
|
||||||
return VideoBlacklistModel.findAndCountAll(query)
|
return Promise.all([
|
||||||
.then(({ rows, count }) => {
|
VideoBlacklistModel.count(countQuery),
|
||||||
return {
|
VideoBlacklistModel.findAll(findQuery)
|
||||||
data: rows,
|
]).then(([ count, rows ]) => {
|
||||||
total: count
|
return {
|
||||||
}
|
data: rows,
|
||||||
})
|
total: count
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
static loadByVideoId (id: number) {
|
static loadByVideoId (id: number) {
|
||||||
|
|
Loading…
Reference in New Issue