X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-moderation%2Fuser-ban-modal.component.ts;h=617408f2a641b389c3138c45702863cc0aac16d5;hb=fba911e2c89708a166636e3a93fcd8fcbc3de7e1;hp=f9a0381c5b0383db1aeeb8df0288fb23ff2c5e70;hpb=66357162f8e1227495f09bd4f68446aad7071c6d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-moderation/user-ban-modal.component.ts b/client/src/app/shared/shared-moderation/user-ban-modal.component.ts index f9a0381c5..617408f2a 100644 --- a/client/src/app/shared/shared-moderation/user-ban-modal.component.ts +++ b/client/src/app/shared/shared-moderation/user-ban-modal.component.ts @@ -1,9 +1,15 @@ +import { forkJoin } from 'rxjs' import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' -import { Notifier, UserService } from '@app/core' -import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' +import { Notifier } from '@app/core' +import { prepareIcu } from '@app/helpers' +import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' import { User } from '@shared/models' +import { USER_BAN_REASON_VALIDATOR } from '../form-validators/user-validators' +import { Account } from '../shared-main' +import { UserAdminService } from '../shared-users' +import { BlocklistService } from './blocklist.service' @Component({ selector: 'my-user-ban-modal', @@ -16,20 +22,22 @@ export class UserBanModalComponent extends FormReactive implements OnInit { private usersToBan: User | User[] private openedModal: NgbModalRef + modalMessage = '' constructor ( protected formValidatorService: FormValidatorService, private modalService: NgbModal, private notifier: Notifier, - private userService: UserService, - private userValidatorsService: UserValidatorsService + private userAdminService: UserAdminService, + private blocklistService: BlocklistService ) { super() } ngOnInit () { this.buildForm({ - reason: this.userValidatorsService.USER_BAN_REASON + reason: USER_BAN_REASON_VALIDATOR, + mute: null }) } @@ -43,24 +51,57 @@ export class UserBanModalComponent extends FormReactive implements OnInit { this.openedModal.close() } - async banUser () { + banUser () { const reason = this.form.value['reason'] || undefined + const mute = this.form.value['mute'] - this.userService.banUsers(this.usersToBan, reason) - .subscribe( - () => { - const message = Array.isArray(this.usersToBan) - ? $localize`${this.usersToBan.length} users banned.` - : $localize`User ${this.usersToBan.username} banned.` + const observables = [ + this.userAdminService.banUsers(this.usersToBan, reason) + ] + + if (mute) observables.push(this.muteAccounts()) + + forkJoin(observables) + .subscribe({ + next: () => { + let message: string + + if (Array.isArray(this.usersToBan)) { + message = prepareIcu($localize`{count, plural, =1 {1 user banned.} other {{count} users banned.}}`)( + { count: this.usersToBan.length }, + $localize`${this.usersToBan.length} users banned.` + ) + } else { + message = $localize`User ${this.usersToBan.username} banned.` + } this.notifier.success(message) this.userBanned.emit(this.usersToBan) + this.hide() }, - err => this.notifier.error(err.message) + error: err => this.notifier.error(err.message) + }) + } + + getModalTitle () { + if (Array.isArray(this.usersToBan)) { + return prepareIcu($localize`Ban {count, plural, =1 {1 user} other {{count} users}}`)( + { count: this.usersToBan.length }, + $localize`Ban ${this.usersToBan.length} users` ) + } + + return $localize`Ban "${this.usersToBan.username}"` } + private muteAccounts () { + const accounts = Array.isArray(this.usersToBan) + ? this.usersToBan.map(u => new Account(u.account)) + : new Account(this.usersToBan.account) + + return this.blocklistService.blockAccountByInstance(accounts) + } }