Fix user video quota with webtorrent disabled
This commit is contained in:
parent
437e8e06eb
commit
5600def4c8
|
@ -1,4 +1,4 @@
|
||||||
import { FindOptions, literal, Op, QueryTypes, where, fn, col, WhereOptions } from 'sequelize'
|
import { col, FindOptions, fn, literal, Op, QueryTypes, where, WhereOptions } from 'sequelize'
|
||||||
import {
|
import {
|
||||||
AfterDestroy,
|
AfterDestroy,
|
||||||
AfterUpdate,
|
AfterUpdate,
|
||||||
|
@ -19,7 +19,7 @@ import {
|
||||||
Table,
|
Table,
|
||||||
UpdatedAt
|
UpdatedAt
|
||||||
} from 'sequelize-typescript'
|
} from 'sequelize-typescript'
|
||||||
import { hasUserRight, MyUser, USER_ROLE_LABELS, UserRight, VideoPlaylistType, VideoPrivacy, VideoAbuseState } from '../../../shared'
|
import { hasUserRight, MyUser, USER_ROLE_LABELS, UserRight, VideoAbuseState, VideoPlaylistType, VideoPrivacy } from '../../../shared'
|
||||||
import { User, UserRole } from '../../../shared/models/users'
|
import { User, UserRole } from '../../../shared/models/users'
|
||||||
import {
|
import {
|
||||||
isNoInstanceConfigWarningModal,
|
isNoInstanceConfigWarningModal,
|
||||||
|
@ -70,22 +70,6 @@ import {
|
||||||
MVideoFullLight
|
MVideoFullLight
|
||||||
} from '@server/typings/models'
|
} from '@server/typings/models'
|
||||||
|
|
||||||
const literalVideoQuotaUsed: any = [
|
|
||||||
literal(
|
|
||||||
'(' +
|
|
||||||
'SELECT COALESCE(SUM("size"), 0) ' +
|
|
||||||
'FROM (' +
|
|
||||||
'SELECT MAX("videoFile"."size") AS "size" FROM "videoFile" ' +
|
|
||||||
'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
|
|
||||||
'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
|
|
||||||
'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
|
|
||||||
'WHERE "account"."userId" = "UserModel"."id" GROUP BY "video"."id"' +
|
|
||||||
') t' +
|
|
||||||
')'
|
|
||||||
),
|
|
||||||
'videoQuotaUsed'
|
|
||||||
]
|
|
||||||
|
|
||||||
enum ScopeNames {
|
enum ScopeNames {
|
||||||
FOR_ME_API = 'FOR_ME_API',
|
FOR_ME_API = 'FOR_ME_API',
|
||||||
WITH_VIDEOCHANNELS = 'WITH_VIDEOCHANNELS',
|
WITH_VIDEOCHANNELS = 'WITH_VIDEOCHANNELS',
|
||||||
|
@ -156,7 +140,17 @@ enum ScopeNames {
|
||||||
[ScopeNames.WITH_STATS]: {
|
[ScopeNames.WITH_STATS]: {
|
||||||
attributes: {
|
attributes: {
|
||||||
include: [
|
include: [
|
||||||
literalVideoQuotaUsed,
|
[
|
||||||
|
literal(
|
||||||
|
'(' +
|
||||||
|
UserModel.generateUserQuotaBaseSQL({
|
||||||
|
withSelect: false,
|
||||||
|
whereUserId: '"UserModel"."id"'
|
||||||
|
}) +
|
||||||
|
')'
|
||||||
|
),
|
||||||
|
'videoQuotaUsed'
|
||||||
|
],
|
||||||
[
|
[
|
||||||
literal(
|
literal(
|
||||||
'(' +
|
'(' +
|
||||||
|
@ -430,7 +424,19 @@ export class UserModel extends Model<UserModel> {
|
||||||
|
|
||||||
const query: FindOptions = {
|
const query: FindOptions = {
|
||||||
attributes: {
|
attributes: {
|
||||||
include: [ literalVideoQuotaUsed ]
|
include: [
|
||||||
|
[
|
||||||
|
literal(
|
||||||
|
'(' +
|
||||||
|
UserModel.generateUserQuotaBaseSQL({
|
||||||
|
withSelect: false,
|
||||||
|
whereUserId: '"UserModel"."id"'
|
||||||
|
}) +
|
||||||
|
')'
|
||||||
|
),
|
||||||
|
'videoQuotaUsed'
|
||||||
|
] as any // FIXME: typings
|
||||||
|
]
|
||||||
},
|
},
|
||||||
offset: start,
|
offset: start,
|
||||||
limit: count,
|
limit: count,
|
||||||
|
@ -659,7 +665,10 @@ export class UserModel extends Model<UserModel> {
|
||||||
|
|
||||||
static getOriginalVideoFileTotalFromUser (user: MUserId) {
|
static getOriginalVideoFileTotalFromUser (user: MUserId) {
|
||||||
// Don't use sequelize because we need to use a sub query
|
// Don't use sequelize because we need to use a sub query
|
||||||
const query = UserModel.generateUserQuotaBaseSQL()
|
const query = UserModel.generateUserQuotaBaseSQL({
|
||||||
|
withSelect: true,
|
||||||
|
whereUserId: '$userId'
|
||||||
|
})
|
||||||
|
|
||||||
return UserModel.getTotalRawQuery(query, user.id)
|
return UserModel.getTotalRawQuery(query, user.id)
|
||||||
}
|
}
|
||||||
|
@ -667,7 +676,11 @@ export class UserModel extends Model<UserModel> {
|
||||||
// Returns cumulative size of all video files uploaded in the last 24 hours.
|
// Returns cumulative size of all video files uploaded in the last 24 hours.
|
||||||
static getOriginalVideoFileTotalDailyFromUser (user: MUserId) {
|
static getOriginalVideoFileTotalDailyFromUser (user: MUserId) {
|
||||||
// Don't use sequelize because we need to use a sub query
|
// Don't use sequelize because we need to use a sub query
|
||||||
const query = UserModel.generateUserQuotaBaseSQL('"video"."createdAt" > now() - interval \'24 hours\'')
|
const query = UserModel.generateUserQuotaBaseSQL({
|
||||||
|
withSelect: true,
|
||||||
|
whereUserId: '$userId',
|
||||||
|
where: '"video"."createdAt" > now() - interval \'24 hours\''
|
||||||
|
})
|
||||||
|
|
||||||
return UserModel.getTotalRawQuery(query, user.id)
|
return UserModel.getTotalRawQuery(query, user.id)
|
||||||
}
|
}
|
||||||
|
@ -835,18 +848,33 @@ export class UserModel extends Model<UserModel> {
|
||||||
return uploadedTotal < this.videoQuota && uploadedDaily < this.videoQuotaDaily
|
return uploadedTotal < this.videoQuota && uploadedDaily < this.videoQuotaDaily
|
||||||
}
|
}
|
||||||
|
|
||||||
private static generateUserQuotaBaseSQL (where?: string) {
|
private static generateUserQuotaBaseSQL (options: {
|
||||||
const andWhere = where ? 'AND ' + where : ''
|
whereUserId: '$userId' | '"UserModel"."id"'
|
||||||
|
withSelect: boolean
|
||||||
|
where?: string
|
||||||
|
}) {
|
||||||
|
const andWhere = options.where
|
||||||
|
? 'AND ' + options.where
|
||||||
|
: ''
|
||||||
|
|
||||||
return 'SELECT SUM("size") AS "total" ' +
|
const videoChannelJoin = 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
|
||||||
'FROM (' +
|
|
||||||
'SELECT MAX("videoFile"."size") AS "size" FROM "videoFile" ' +
|
|
||||||
'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
|
|
||||||
'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
|
|
||||||
'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
|
'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
|
||||||
'WHERE "account"."userId" = $userId ' + andWhere +
|
`WHERE "account"."userId" = ${options.whereUserId} ${andWhere}`
|
||||||
'GROUP BY "video"."id"' +
|
|
||||||
') t'
|
const webtorrentFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
|
||||||
|
'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
|
||||||
|
videoChannelJoin
|
||||||
|
|
||||||
|
const hlsFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
|
||||||
|
'INNER JOIN "videoStreamingPlaylist" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id ' +
|
||||||
|
'INNER JOIN "video" ON "videoStreamingPlaylist"."videoId" = "video"."id" ' +
|
||||||
|
videoChannelJoin
|
||||||
|
|
||||||
|
return 'SELECT COALESCE(SUM("size"), 0) AS "total" ' +
|
||||||
|
'FROM (' +
|
||||||
|
`SELECT MAX("t1"."size") AS "size" FROM (${webtorrentFiles} UNION ${hlsFiles}) t1 ` +
|
||||||
|
'GROUP BY "t1"."videoId"' +
|
||||||
|
') t2'
|
||||||
}
|
}
|
||||||
|
|
||||||
private static getTotalRawQuery (query: string, userId: number) {
|
private static getTotalRawQuery (query: string, userId: number) {
|
||||||
|
|
|
@ -37,12 +37,13 @@ import {
|
||||||
reportVideoAbuse,
|
reportVideoAbuse,
|
||||||
addVideoCommentThread,
|
addVideoCommentThread,
|
||||||
updateVideoAbuse,
|
updateVideoAbuse,
|
||||||
getVideoAbusesList
|
getVideoAbusesList, updateCustomSubConfig, getCustomConfig, waitJobs
|
||||||
} from '../../../../shared/extra-utils'
|
} from '../../../../shared/extra-utils'
|
||||||
import { follow } from '../../../../shared/extra-utils/server/follows'
|
import { follow } from '../../../../shared/extra-utils/server/follows'
|
||||||
import { setAccessTokensToServers } from '../../../../shared/extra-utils/users/login'
|
import { setAccessTokensToServers } from '../../../../shared/extra-utils/users/login'
|
||||||
import { getMyVideos } from '../../../../shared/extra-utils/videos/videos'
|
import { getMyVideos } from '../../../../shared/extra-utils/videos/videos'
|
||||||
import { UserAdminFlag } from '../../../../shared/models/users/user-flag.model'
|
import { UserAdminFlag } from '../../../../shared/models/users/user-flag.model'
|
||||||
|
import { CustomConfig } from '@shared/models/server'
|
||||||
|
|
||||||
const expect = chai.expect
|
const expect = chai.expect
|
||||||
|
|
||||||
|
@ -293,7 +294,7 @@ describe('Test users', function () {
|
||||||
describe('My videos & quotas', function () {
|
describe('My videos & quotas', function () {
|
||||||
|
|
||||||
it('Should be able to upload a video with this user', async function () {
|
it('Should be able to upload a video with this user', async function () {
|
||||||
this.timeout(5000)
|
this.timeout(10000)
|
||||||
|
|
||||||
const videoAttributes = {
|
const videoAttributes = {
|
||||||
name: 'super user video',
|
name: 'super user video',
|
||||||
|
@ -345,6 +346,36 @@ describe('Test users', function () {
|
||||||
expect(videos).to.have.lengthOf(0)
|
expect(videos).to.have.lengthOf(0)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('Should disable webtorrent, enable HLS, and update my quota', async function () {
|
||||||
|
this.timeout(60000)
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await getCustomConfig(server.url, server.accessToken)
|
||||||
|
const config = res.body as CustomConfig
|
||||||
|
config.transcoding.webtorrent.enabled = false
|
||||||
|
config.transcoding.hls.enabled = true
|
||||||
|
config.transcoding.enabled = true
|
||||||
|
await updateCustomSubConfig(server.url, server.accessToken, config)
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const videoAttributes = {
|
||||||
|
name: 'super user video 2',
|
||||||
|
fixture: 'video_short.webm'
|
||||||
|
}
|
||||||
|
await uploadVideo(server.url, accessTokenUser, videoAttributes)
|
||||||
|
|
||||||
|
await waitJobs([ server ])
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await getMyUserVideoQuotaUsed(server.url, accessTokenUser)
|
||||||
|
const data = res.body
|
||||||
|
|
||||||
|
expect(data.videoQuotaUsed).to.be.greaterThan(220000)
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('Users listing', function () {
|
describe('Users listing', function () {
|
||||||
|
|
Loading…
Reference in New Issue