1
0
Fork 0

Server: little refractoring when listing videos

This commit is contained in:
Chocobozzz 2017-05-01 19:09:55 +02:00
parent 843aa7ba03
commit 15d4ee04a9
1 changed files with 12 additions and 10 deletions

View File

@ -544,11 +544,7 @@ function listForApi (start, count, sort, callback) {
this.sequelize.models.Tag
],
where: {
id: { $notIn: this.sequelize.literal(
'(SELECT "BlacklistedVideos"."videoId" FROM "BlacklistedVideos")'
)}
}
where: createBaseVideosWhere.call(this)
}
return this.findAndCountAll(query).asCallback(function (err, result) {
@ -656,11 +652,7 @@ function searchAndPopulateAuthorAndPodAndTags (value, field, start, count, sort,
}
const query = {
where: {
id: { $notIn: this.sequelize.literal(
'(SELECT "BlacklistedVideos"."videoId" FROM "BlacklistedVideos")'
)}
},
where: createBaseVideosWhere.call(this),
offset: start,
limit: count,
distinct: true, // For the count, a video can have many tags
@ -715,6 +707,16 @@ function searchAndPopulateAuthorAndPodAndTags (value, field, start, count, sort,
// ---------------------------------------------------------------------------
function createBaseVideosWhere () {
return {
id: {
$notIn: this.sequelize.literal(
'(SELECT "BlacklistedVideos"."videoId" FROM "BlacklistedVideos")'
)
}
}
}
function removeThumbnail (video, callback) {
const thumbnailPath = pathUtils.join(constants.CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName())
fs.unlink(thumbnailPath, callback)