1
0
Fork 0
peertube/client/src/app/shared/shared-moderation/user-moderation-dropdown.co...

422 lines
15 KiB
TypeScript
Raw Normal View History

2019-12-18 14:31:54 +00:00
import { Component, EventEmitter, Input, OnChanges, OnInit, Output, ViewChild } from '@angular/core'
2022-01-21 10:03:25 +00:00
import { AuthService, ConfirmService, Notifier, ServerService } from '@app/core'
2020-06-23 12:10:17 +00:00
import { Account, DropdownAction } from '@app/shared/shared-main'
2021-06-04 11:31:41 +00:00
import { BulkRemoveCommentsOfBody, User, UserRight } from '@shared/models'
2022-01-21 10:03:25 +00:00
import { UserAdminService } from '../shared-users'
2020-06-23 12:10:17 +00:00
import { BlocklistService } from './blocklist.service'
import { BulkService } from './bulk.service'
import { UserBanModalComponent } from './user-ban-modal.component'
2022-02-28 09:41:23 +00:00
export type AccountMutedStatus =
Pick<Account, 'id' | 'nameWithHost' | 'host' | 'userId' |
'mutedByInstance' | 'mutedByUser' | 'mutedServerByInstance' | 'mutedServerByUser'>
export type UserModerationDisplayType = {
myAccount?: boolean
instanceAccount?: boolean
instanceUser?: boolean
}
@Component({
selector: 'my-user-moderation-dropdown',
2019-04-02 15:39:21 +00:00
templateUrl: './user-moderation-dropdown.component.html'
})
2019-12-18 14:31:54 +00:00
export class UserModerationDropdownComponent implements OnInit, OnChanges {
2020-02-07 09:00:34 +00:00
@ViewChild('userBanModal') userBanModal: UserBanModalComponent
@Input() user: User
2022-02-28 09:41:23 +00:00
@Input() account: AccountMutedStatus
@Input() prependActions: DropdownAction<{ user: User, account: AccountMutedStatus }>[]
@Input() buttonSize: 'normal' | 'small' = 'normal'
2021-04-15 09:38:24 +00:00
@Input() buttonStyled = true
@Input() placement = 'right-top right-bottom auto'
@Input() label: string
2020-05-11 16:05:16 +00:00
@Input() container: 'body' | undefined = undefined
2022-02-28 09:41:23 +00:00
@Input() displayOptions: UserModerationDisplayType = {
myAccount: true,
instanceAccount: true,
instanceUser: true
}
@Output() userChanged = new EventEmitter()
@Output() userDeleted = new EventEmitter()
2022-02-28 09:41:23 +00:00
userActions: DropdownAction<{ user: User, account: AccountMutedStatus }>[][] = []
2021-06-04 11:31:41 +00:00
requiresEmailVerification = false
2019-12-18 14:31:54 +00:00
constructor (
private authService: AuthService,
private notifier: Notifier,
private confirmService: ConfirmService,
private serverService: ServerService,
2022-01-21 10:03:25 +00:00
private userAdminService: UserAdminService,
private blocklistService: BlocklistService,
private bulkService: BulkService
) { }
2021-06-04 11:31:41 +00:00
ngOnInit () {
2019-12-18 14:31:54 +00:00
this.serverService.getConfig()
2021-06-04 11:31:41 +00:00
.subscribe(config => this.requiresEmailVerification = config.signup.requiresEmailVerification)
}
ngOnChanges () {
this.buildActions()
}
openBanUserModal (user: User) {
if (user.username === 'root') {
this.notifier.error($localize`You cannot ban root.`)
return
}
this.userBanModal.openModal(user)
}
onUserBanned () {
this.userChanged.emit()
}
async unbanUser (user: User) {
const res = await this.confirmService.confirm($localize`Do you really want to unban ${user.username}?`, $localize`Unban`)
if (res === false) return
2022-01-21 10:03:25 +00:00
this.userAdminService.unbanUsers(user)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`User ${user.username} unbanned.`)
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
async removeUser (user: User) {
if (user.username === 'root') {
this.notifier.error($localize`You cannot delete root.`)
return
}
2022-05-24 14:29:01 +00:00
// eslint-disable-next-line max-len
const message = $localize`If you remove this user, you won't be able to create another user or channel with <strong>${user.username}</strong> username!`
2021-11-12 08:09:09 +00:00
const res = await this.confirmService.confirm(message, $localize`Delete ${user.username}`)
if (res === false) return
this.userAdminService.removeUsers(user)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`User ${user.username} deleted.`)
this.userDeleted.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
setEmailAsVerified (user: User) {
2022-01-21 10:03:25 +00:00
this.userAdminService.updateUser(user.id, { emailVerified: true })
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`User ${user.username} email set as verified`)
this.userChanged.emit()
},
error: err => this.notifier.error(err.message)
})
}
2022-02-28 09:41:23 +00:00
blockAccountByUser (account: AccountMutedStatus) {
this.blocklistService.blockAccountByUser(account)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Account ${account.nameWithHost} muted.`)
this.account.mutedByUser = true
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
2022-02-28 09:41:23 +00:00
unblockAccountByUser (account: AccountMutedStatus) {
this.blocklistService.unblockAccountByUser(account)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Account ${account.nameWithHost} unmuted.`)
this.account.mutedByUser = false
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
blockServerByUser (host: string) {
this.blocklistService.blockServerByUser(host)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Instance ${host} muted.`)
this.account.mutedServerByUser = true
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
unblockServerByUser (host: string) {
this.blocklistService.unblockServerByUser(host)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Instance ${host} unmuted.`)
this.account.mutedServerByUser = false
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
2022-02-28 09:41:23 +00:00
blockAccountByInstance (account: AccountMutedStatus) {
this.blocklistService.blockAccountByInstance(account)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Account ${account.nameWithHost} muted by the instance.`)
this.account.mutedByInstance = true
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
2022-02-28 09:41:23 +00:00
unblockAccountByInstance (account: AccountMutedStatus) {
this.blocklistService.unblockAccountByInstance(account)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Account ${account.nameWithHost} unmuted by the instance.`)
this.account.mutedByInstance = false
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
blockServerByInstance (host: string) {
this.blocklistService.blockServerByInstance(host)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Instance ${host} muted by the instance.`)
this.account.mutedServerByInstance = true
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
unblockServerByInstance (host: string) {
this.blocklistService.unblockServerByInstance(host)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Instance ${host} unmuted by the instance.`)
this.account.mutedServerByInstance = false
this.userChanged.emit()
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
async bulkRemoveCommentsOf (body: BulkRemoveCommentsOfBody) {
const message = $localize`Are you sure you want to remove all the comments of this account?`
const res = await this.confirmService.confirm(message, $localize`Delete account comments`)
if (res === false) return
this.bulkService.removeCommentsOf(body)
2021-08-17 09:27:47 +00:00
.subscribe({
next: () => {
this.notifier.success($localize`Will remove comments of this account (may take several minutes).`)
},
2021-08-17 09:27:47 +00:00
error: err => this.notifier.error(err.message)
})
}
getRouterUserEditLink (user: User) {
return [ '/admin', 'users', 'update', user.id ]
}
2021-10-21 08:19:42 +00:00
private isMyUser (user: User) {
return user && this.authService.getUser().id === user.id
}
2022-02-28 09:41:23 +00:00
private isMyAccount (account: AccountMutedStatus) {
2021-10-21 08:19:42 +00:00
return account && this.authService.getUser().account.id === account.id
}
private buildActions () {
this.userActions = []
2021-10-21 08:19:42 +00:00
if (this.prependActions && this.prependActions.length !== 0) {
this.userActions = [
this.prependActions
]
}
2021-10-21 08:19:42 +00:00
const myAccountModerationActions = this.buildMyAccountModerationActions()
const instanceModerationActions = this.buildInstanceModerationActions()
2021-10-21 08:19:42 +00:00
if (myAccountModerationActions.length !== 0) this.userActions.push(myAccountModerationActions)
if (instanceModerationActions.length !== 0) this.userActions.push(instanceModerationActions)
}
2021-10-21 08:19:42 +00:00
private buildMyAccountModerationActions () {
2022-02-28 09:41:23 +00:00
if (!this.account || !this.displayOptions.myAccount || !this.authService.isLoggedIn()) return []
2021-10-21 08:19:42 +00:00
2022-02-28 09:41:23 +00:00
const myAccountActions: DropdownAction<{ user: User, account: AccountMutedStatus }>[] = [
2021-10-21 08:19:42 +00:00
{
2021-11-02 10:51:23 +00:00
label: $localize`My account moderation`,
2021-10-21 08:19:42 +00:00
class: [ 'red' ],
isHeader: true
},
{
label: $localize`Mute this account`,
description: $localize`Hide any content from that user from you.`,
isDisplayed: ({ account }) => !this.isMyAccount(account) && account.mutedByUser === false,
handler: ({ account }) => this.blockAccountByUser(account)
},
{
label: $localize`Unmute this account`,
description: $localize`Show back content from that user for you.`,
isDisplayed: ({ account }) => !this.isMyAccount(account) && account.mutedByUser === true,
handler: ({ account }) => this.unblockAccountByUser(account)
},
{
label: $localize`Mute the instance`,
description: $localize`Hide any content from that instance for you.`,
isDisplayed: ({ account }) => !account.userId && account.mutedServerByUser === false,
2021-10-21 08:19:42 +00:00
handler: ({ account }) => this.blockServerByUser(account.host)
},
{
label: $localize`Unmute the instance`,
description: $localize`Show back content from that instance for you.`,
isDisplayed: ({ account }) => !account.userId && account.mutedServerByUser === true,
2021-10-21 08:19:42 +00:00
handler: ({ account }) => this.unblockServerByUser(account.host)
},
{
label: $localize`Remove comments from your videos`,
description: $localize`Remove comments made by this account on your videos.`,
isDisplayed: ({ account }) => !this.isMyAccount(account),
handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'my-videos' })
}
2021-10-21 08:19:42 +00:00
]
2021-10-21 08:19:42 +00:00
return myAccountActions
}
private buildInstanceModerationActions () {
if (!this.authService.isLoggedIn()) return []
const authUser = this.authService.getUser()
2022-02-28 09:41:23 +00:00
let instanceActions: DropdownAction<{ user: User, account: AccountMutedStatus }>[] = []
2021-10-21 08:19:42 +00:00
2022-02-28 09:41:23 +00:00
if (this.user && this.displayOptions.instanceUser && authUser.hasRight(UserRight.MANAGE_USERS) && authUser.canManage(this.user)) {
2021-10-21 08:19:42 +00:00
instanceActions = instanceActions.concat([
{
label: $localize`Edit user`,
description: $localize`Change quota, role, and more.`,
linkBuilder: ({ user }) => this.getRouterUserEditLink(user)
},
{
label: $localize`Delete user`,
description: $localize`Videos will be deleted, comments will be tombstoned.`,
isDisplayed: ({ user }) => !this.isMyUser(user),
handler: ({ user }) => this.removeUser(user)
},
{
label: $localize`Ban`,
description: $localize`User won't be able to login anymore, but videos and comments will be kept as is.`,
handler: ({ user }) => this.openBanUserModal(user),
isDisplayed: ({ user }) => !this.isMyUser(user) && !user.blocked
},
{
label: $localize`Unban user`,
description: $localize`Allow the user to login and create videos/comments again`,
handler: ({ user }) => this.unbanUser(user),
isDisplayed: ({ user }) => !this.isMyUser(user) && user.blocked
},
{
label: $localize`Set Email as Verified`,
handler: ({ user }) => this.setEmailAsVerified(user),
isDisplayed: ({ user }) => this.requiresEmailVerification && !user.blocked && user.emailVerified === false
}
2021-10-21 08:19:42 +00:00
])
}
2021-10-21 08:19:42 +00:00
// Instance actions on account blocklists
2022-02-28 09:41:23 +00:00
if (this.account && this.displayOptions.instanceAccount && authUser.hasRight(UserRight.MANAGE_ACCOUNTS_BLOCKLIST)) {
2021-10-21 08:19:42 +00:00
instanceActions = instanceActions.concat([
{
label: $localize`Mute this account`,
description: $localize`Hide any content from that user from you, your instance and its users.`,
isDisplayed: ({ account }) => !this.isMyAccount(account) && account.mutedByInstance === false,
handler: ({ account }) => this.blockAccountByInstance(account)
},
{
label: $localize`Unmute this account`,
description: $localize`Show this user's content to the users of this instance again.`,
isDisplayed: ({ account }) => !this.isMyAccount(account) && account.mutedByInstance === true,
handler: ({ account }) => this.unblockAccountByInstance(account)
}
2021-10-21 08:19:42 +00:00
])
}
2021-10-21 08:19:42 +00:00
// Instance actions on server blocklists
2022-02-28 09:41:23 +00:00
if (this.account && this.displayOptions.instanceAccount && authUser.hasRight(UserRight.MANAGE_SERVERS_BLOCKLIST)) {
2021-10-21 08:19:42 +00:00
instanceActions = instanceActions.concat([
{
label: $localize`Mute the instance`,
description: $localize`Hide any content from that instance from you, your instance and its users.`,
isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === false,
handler: ({ account }) => this.blockServerByInstance(account.host)
},
{
label: $localize`Unmute the instance by your instance`,
description: $localize`Show back content from that instance for you, your instance and its users.`,
isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === true,
handler: ({ account }) => this.unblockServerByInstance(account.host)
}
2021-10-21 08:19:42 +00:00
])
}
2022-02-28 09:41:23 +00:00
if (this.account && this.displayOptions.instanceAccount && authUser.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT)) {
2021-10-21 08:19:42 +00:00
instanceActions = instanceActions.concat([
{
label: $localize`Remove comments from your instance`,
description: $localize`Remove comments made by this account from your instance.`,
isDisplayed: ({ account }) => !this.isMyAccount(account),
handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'instance' })
}
2021-10-21 08:19:42 +00:00
])
}
2021-10-21 08:19:42 +00:00
if (instanceActions.length === 0) return []
return [ { label: $localize`Instance moderation`, isHeader: true }, ...instanceActions ]
}
}