mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
Introduce abuse command
This commit is contained in:
parent
8ef9457fde
commit
0c1a77e9cc
12 changed files with 633 additions and 729 deletions
205
shared/extra-utils/moderation/abuses-command.ts
Normal file
205
shared/extra-utils/moderation/abuses-command.ts
Normal file
|
@ -0,0 +1,205 @@
|
|||
import { pick } from 'lodash'
|
||||
import {
|
||||
AbuseFilter,
|
||||
AbuseMessage,
|
||||
AbusePredefinedReasonsString,
|
||||
AbuseState,
|
||||
AbuseUpdate,
|
||||
AbuseVideoIs,
|
||||
AdminAbuse,
|
||||
ResultList,
|
||||
UserAbuse
|
||||
} from '@shared/models'
|
||||
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
||||
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
||||
import { unwrapBody } from '../requests/requests'
|
||||
|
||||
export class AbusesCommand extends AbstractCommand {
|
||||
|
||||
report (options: OverrideCommandOptions & {
|
||||
reason: string
|
||||
|
||||
accountId?: number
|
||||
videoId?: number
|
||||
commentId?: number
|
||||
|
||||
predefinedReasons?: AbusePredefinedReasonsString[]
|
||||
|
||||
startAt?: number
|
||||
endAt?: number
|
||||
}) {
|
||||
const path = '/api/v1/abuses'
|
||||
|
||||
const video = options.videoId
|
||||
? {
|
||||
id: options.videoId,
|
||||
startAt: options.startAt,
|
||||
endAt: options.endAt
|
||||
}
|
||||
: undefined
|
||||
|
||||
const comment = options.commentId
|
||||
? { id: options.commentId }
|
||||
: undefined
|
||||
|
||||
const account = options.accountId
|
||||
? { id: options.accountId }
|
||||
: undefined
|
||||
|
||||
const body = {
|
||||
account,
|
||||
video,
|
||||
comment,
|
||||
|
||||
reason: options.reason,
|
||||
predefinedReasons: options.predefinedReasons
|
||||
}
|
||||
|
||||
return unwrapBody<{ abuse: { id: number } }>(this.postBodyRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
fields: body,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
}))
|
||||
}
|
||||
|
||||
getAdminList (options: OverrideCommandOptions & {
|
||||
start?: number
|
||||
count?: number
|
||||
sort?: string
|
||||
|
||||
id?: number
|
||||
predefinedReason?: AbusePredefinedReasonsString
|
||||
search?: string
|
||||
filter?: AbuseFilter
|
||||
state?: AbuseState
|
||||
videoIs?: AbuseVideoIs
|
||||
searchReporter?: string
|
||||
searchReportee?: string
|
||||
searchVideo?: string
|
||||
searchVideoChannel?: string
|
||||
} = {}) {
|
||||
const toPick = [
|
||||
'count',
|
||||
'filter',
|
||||
'id',
|
||||
'predefinedReason',
|
||||
'search',
|
||||
'searchReportee',
|
||||
'searchReporter',
|
||||
'searchVideo',
|
||||
'searchVideoChannel',
|
||||
'sort',
|
||||
'start',
|
||||
'state',
|
||||
'videoIs'
|
||||
]
|
||||
|
||||
const path = '/api/v1/abuses'
|
||||
|
||||
const defaultQuery = { sort: 'createdAt' }
|
||||
const query = { ...defaultQuery, ...pick(options, toPick) }
|
||||
|
||||
return this.getRequestBody<ResultList<AdminAbuse>>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
getUserList (options: OverrideCommandOptions & {
|
||||
start?: number
|
||||
count?: number
|
||||
sort?: string
|
||||
|
||||
id?: number
|
||||
search?: string
|
||||
state?: AbuseState
|
||||
}) {
|
||||
const toPick = [
|
||||
'id',
|
||||
'search',
|
||||
'state',
|
||||
'start',
|
||||
'count',
|
||||
'sort'
|
||||
]
|
||||
|
||||
const path = '/api/v1/users/me/abuses'
|
||||
|
||||
const defaultQuery = { sort: 'createdAt' }
|
||||
const query = { ...defaultQuery, ...pick(options, toPick) }
|
||||
|
||||
return this.getRequestBody<ResultList<UserAbuse>>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
update (options: OverrideCommandOptions & {
|
||||
abuseId: number
|
||||
body: AbuseUpdate
|
||||
}) {
|
||||
const { abuseId, body } = options
|
||||
const path = '/api/v1/abuses/' + abuseId
|
||||
|
||||
return this.putBodyRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
fields: body,
|
||||
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||||
})
|
||||
}
|
||||
|
||||
delete (options: OverrideCommandOptions & {
|
||||
abuseId: number
|
||||
}) {
|
||||
const { abuseId } = options
|
||||
const path = '/api/v1/abuses/' + abuseId
|
||||
|
||||
return this.deleteRequest({ ...options, path, defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204 })
|
||||
}
|
||||
|
||||
listMessages (options: OverrideCommandOptions & {
|
||||
abuseId: number
|
||||
}) {
|
||||
const { abuseId } = options
|
||||
const path = '/api/v1/abuses/' + abuseId + '/messages'
|
||||
|
||||
return this.getRequestBody<ResultList<AbuseMessage>>({ ...options, path, defaultExpectedStatus: HttpStatusCode.OK_200 })
|
||||
}
|
||||
|
||||
deleteMessage (options: OverrideCommandOptions & {
|
||||
abuseId: number
|
||||
messageId: number
|
||||
}) {
|
||||
const { abuseId, messageId } = options
|
||||
const path = '/api/v1/abuses/' + abuseId + '/messages/' + messageId
|
||||
|
||||
return this.deleteRequest({ ...options, path, defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204 })
|
||||
}
|
||||
|
||||
addMessage (options: OverrideCommandOptions & {
|
||||
abuseId: number
|
||||
message: string
|
||||
}) {
|
||||
const { abuseId, message } = options
|
||||
const path = '/api/v1/abuses/' + abuseId + '/messages'
|
||||
|
||||
return this.postBodyRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
fields: { message },
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue