]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/moderation/user-moderation-dropdown.component.ts
Try to fix auto play on apple devices
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / moderation / user-moderation-dropdown.component.ts
CommitLineData
ba430d75 1import { Component, EventEmitter, Input, OnChanges, OnInit, Output, ViewChild } from '@angular/core'
e724fa93
C
2import { I18n } from '@ngx-translate/i18n-polyfill'
3import { DropdownAction } from '@app/shared/buttons/action-dropdown.component'
e724fa93 4import { UserBanModalComponent } from '@app/shared/moderation/user-ban-modal.component'
79bd2632 5import { UserService } from '@app/shared/users'
f8b2c1b4 6import { AuthService, ConfirmService, Notifier, ServerService } from '@app/core'
79bd2632 7import { User, UserRight } from '../../../../../shared/models/users'
af5767ff
C
8import { Account } from '@app/shared/account/account.model'
9import { BlocklistService } from '@app/shared/blocklist'
ba430d75 10import { ServerConfig } from '@shared/models'
e724fa93
C
11
12@Component({
13 selector: 'my-user-moderation-dropdown',
f421fa06 14 templateUrl: './user-moderation-dropdown.component.html'
e724fa93 15})
ba430d75 16export class UserModerationDropdownComponent implements OnInit, OnChanges {
2f5d2ec5 17 @ViewChild('userBanModal') userBanModal: UserBanModalComponent
e724fa93
C
18
19 @Input() user: User
af5767ff
C
20 @Input() account: Account
21
79bd2632 22 @Input() buttonSize: 'normal' | 'small' = 'normal'
97601690 23 @Input() placement = 'left-top left-bottom auto'
edf1a4e5 24 @Input() label: string
79bd2632 25
e724fa93 26 @Output() userChanged = new EventEmitter()
79bd2632 27 @Output() userDeleted = new EventEmitter()
e724fa93 28
f97c91f7 29 userActions: DropdownAction<{ user: User, account: Account }>[][] = []
e724fa93 30
ba430d75
C
31 private serverConfig: ServerConfig
32
e724fa93
C
33 constructor (
34 private authService: AuthService,
f8b2c1b4 35 private notifier: Notifier,
e724fa93 36 private confirmService: ConfirmService,
fc2ec87a 37 private serverService: ServerService,
e724fa93 38 private userService: UserService,
af5767ff 39 private blocklistService: BlocklistService,
e724fa93
C
40 private i18n: I18n
41 ) { }
42
fc2ec87a 43 get requiresEmailVerification () {
ba430d75
C
44 return this.serverConfig.signup.requiresEmailVerification
45 }
46
47 ngOnInit (): void {
48 this.serverConfig = this.serverService.getTmpConfig()
49 this.serverService.getConfig()
50 .subscribe(config => this.serverConfig = config)
fc2ec87a
JM
51 }
52
af5767ff 53 ngOnChanges () {
79bd2632 54 this.buildActions()
e724fa93
C
55 }
56
e724fa93
C
57 openBanUserModal (user: User) {
58 if (user.username === 'root') {
f8b2c1b4 59 this.notifier.error(this.i18n('You cannot ban root.'))
e724fa93
C
60 return
61 }
62
63 this.userBanModal.openModal(user)
64 }
65
66 onUserBanned () {
67 this.userChanged.emit()
68 }
69
70 async unbanUser (user: User) {
71 const message = this.i18n('Do you really want to unban {{username}}?', { username: user.username })
72 const res = await this.confirmService.confirm(message, this.i18n('Unban'))
73 if (res === false) return
74
791645e6 75 this.userService.unbanUsers(user)
e724fa93
C
76 .subscribe(
77 () => {
f8b2c1b4 78 this.notifier.success(this.i18n('User {{username}} unbanned.', { username: user.username }))
e724fa93
C
79
80 this.userChanged.emit()
81 },
82
f8b2c1b4 83 err => this.notifier.error(err.message)
e724fa93
C
84 )
85 }
86
87 async removeUser (user: User) {
88 if (user.username === 'root') {
f8b2c1b4 89 this.notifier.error(this.i18n('You cannot delete root.'))
e724fa93
C
90 return
91 }
92
93 const message = this.i18n('If you remove this user, you will not be able to create another with the same username!')
94 const res = await this.confirmService.confirm(message, this.i18n('Delete'))
95 if (res === false) return
96
97 this.userService.removeUser(user).subscribe(
98 () => {
f8b2c1b4 99 this.notifier.success(this.i18n('User {{username}} deleted.', { username: user.username }))
79bd2632 100 this.userDeleted.emit()
e724fa93
C
101 },
102
f8b2c1b4 103 err => this.notifier.error(err.message)
e724fa93
C
104 )
105 }
106
fc2ec87a
JM
107 setEmailAsVerified (user: User) {
108 this.userService.updateUser(user.id, { emailVerified: true }).subscribe(
109 () => {
f8b2c1b4 110 this.notifier.success(this.i18n('User {{username}} email set as verified', { username: user.username }))
a99e2d94
C
111
112 this.userChanged.emit()
fc2ec87a
JM
113 },
114
f8b2c1b4 115 err => this.notifier.error(err.message)
fc2ec87a
JM
116 )
117 }
118
af5767ff
C
119 blockAccountByUser (account: Account) {
120 this.blocklistService.blockAccountByUser(account)
121 .subscribe(
122 () => {
f8b2c1b4 123 this.notifier.success(this.i18n('Account {{nameWithHost}} muted.', { nameWithHost: account.nameWithHost }))
af5767ff 124
65b21c96 125 this.account.mutedByUser = true
af5767ff
C
126 this.userChanged.emit()
127 },
128
f8b2c1b4 129 err => this.notifier.error(err.message)
af5767ff
C
130 )
131 }
132
133 unblockAccountByUser (account: Account) {
134 this.blocklistService.unblockAccountByUser(account)
135 .subscribe(
136 () => {
f8b2c1b4 137 this.notifier.success(this.i18n('Account {{nameWithHost}} unmuted.', { nameWithHost: account.nameWithHost }))
af5767ff 138
65b21c96 139 this.account.mutedByUser = false
af5767ff
C
140 this.userChanged.emit()
141 },
142
f8b2c1b4 143 err => this.notifier.error(err.message)
af5767ff
C
144 )
145 }
146
147 blockServerByUser (host: string) {
148 this.blocklistService.blockServerByUser(host)
149 .subscribe(
150 () => {
f8b2c1b4 151 this.notifier.success(this.i18n('Instance {{host}} muted.', { host }))
af5767ff 152
65b21c96 153 this.account.mutedServerByUser = true
af5767ff
C
154 this.userChanged.emit()
155 },
156
f8b2c1b4 157 err => this.notifier.error(err.message)
af5767ff
C
158 )
159 }
160
161 unblockServerByUser (host: string) {
162 this.blocklistService.unblockServerByUser(host)
163 .subscribe(
164 () => {
f8b2c1b4 165 this.notifier.success(this.i18n('Instance {{host}} unmuted.', { host }))
af5767ff 166
65b21c96
C
167 this.account.mutedServerByUser = false
168 this.userChanged.emit()
169 },
170
f8b2c1b4 171 err => this.notifier.error(err.message)
65b21c96
C
172 )
173 }
174
175 blockAccountByInstance (account: Account) {
176 this.blocklistService.blockAccountByInstance(account)
177 .subscribe(
178 () => {
f8b2c1b4 179 this.notifier.success(this.i18n('Account {{nameWithHost}} muted by the instance.', { nameWithHost: account.nameWithHost }))
65b21c96
C
180
181 this.account.mutedByInstance = true
182 this.userChanged.emit()
183 },
184
f8b2c1b4 185 err => this.notifier.error(err.message)
65b21c96
C
186 )
187 }
188
189 unblockAccountByInstance (account: Account) {
190 this.blocklistService.unblockAccountByInstance(account)
191 .subscribe(
192 () => {
f8b2c1b4 193 this.notifier.success(this.i18n('Account {{nameWithHost}} unmuted by the instance.', { nameWithHost: account.nameWithHost }))
65b21c96
C
194
195 this.account.mutedByInstance = false
196 this.userChanged.emit()
197 },
198
f8b2c1b4 199 err => this.notifier.error(err.message)
65b21c96
C
200 )
201 }
202
203 blockServerByInstance (host: string) {
204 this.blocklistService.blockServerByInstance(host)
205 .subscribe(
206 () => {
f8b2c1b4 207 this.notifier.success(this.i18n('Instance {{host}} muted by the instance.', { host }))
65b21c96
C
208
209 this.account.mutedServerByInstance = true
210 this.userChanged.emit()
211 },
212
f8b2c1b4 213 err => this.notifier.error(err.message)
65b21c96
C
214 )
215 }
216
217 unblockServerByInstance (host: string) {
218 this.blocklistService.unblockServerByInstance(host)
219 .subscribe(
220 () => {
f8b2c1b4 221 this.notifier.success(this.i18n('Instance {{host}} unmuted by the instance.', { host }))
65b21c96
C
222
223 this.account.mutedServerByInstance = false
af5767ff
C
224 this.userChanged.emit()
225 },
226
f8b2c1b4 227 err => this.notifier.error(err.message)
af5767ff
C
228 )
229 }
230
e724fa93
C
231 getRouterUserEditLink (user: User) {
232 return [ '/admin', 'users', 'update', user.id ]
233 }
79bd2632
C
234
235 private buildActions () {
236 this.userActions = []
237
238 if (this.authService.isLoggedIn()) {
239 const authUser = this.authService.getUser()
240
af5767ff
C
241 if (this.user && authUser.id === this.user.id) return
242
a95a4cc8 243 if (this.user && authUser.hasRight(UserRight.MANAGE_USERS) && authUser.canManage(this.user)) {
f97c91f7 244 this.userActions.push([
79bd2632 245 {
f0ad4710 246 label: this.i18n('Edit user'),
9b82d49d 247 description: this.i18n('Change quota, role, and more.'),
af5767ff 248 linkBuilder: ({ user }) => this.getRouterUserEditLink(user)
79bd2632
C
249 },
250 {
f0ad4710 251 label: this.i18n('Delete user'),
9b82d49d 252 description: this.i18n('Videos will be deleted, comments will be tombstoned.'),
af5767ff 253 handler: ({ user }) => this.removeUser(user)
79bd2632
C
254 },
255 {
9b82d49d 256 label: this.i18n('Ban'),
f0ad4710 257 description: this.i18n('User won\'t be able to login anymore, but videos and comments will be kept as is.'),
4e74e803
C
258 handler: ({ user }) => this.openBanUserModal(user),
259 isDisplayed: ({ user }) => !user.blocked
79bd2632
C
260 },
261 {
edf1a4e5 262 label: this.i18n('Unban user'),
9b82d49d 263 description: this.i18n('Allow the user to login and create videos/comments again'),
4e74e803
C
264 handler: ({ user }) => this.unbanUser(user),
265 isDisplayed: ({ user }) => user.blocked
fc2ec87a
JM
266 },
267 {
268 label: this.i18n('Set Email as Verified'),
4e74e803
C
269 handler: ({ user }) => this.setEmailAsVerified(user),
270 isDisplayed: ({ user }) => this.requiresEmailVerification && !user.blocked && user.emailVerified === false
af5767ff
C
271 }
272 ])
273 }
274
65b21c96 275 // Actions on accounts/servers
af5767ff 276 if (this.account) {
65b21c96 277 // User actions
f97c91f7 278 this.userActions.push([
af5767ff
C
279 {
280 label: this.i18n('Mute this account'),
9b82d49d 281 description: this.i18n('Hide any content from that user for you.'),
4e74e803
C
282 isDisplayed: ({ account }) => account.mutedByUser === false,
283 handler: ({ account }) => this.blockAccountByUser(account)
af5767ff
C
284 },
285 {
286 label: this.i18n('Unmute this account'),
9b82d49d 287 description: this.i18n('Show back content from that user for you.'),
4e74e803
C
288 isDisplayed: ({ account }) => account.mutedByUser === true,
289 handler: ({ account }) => this.unblockAccountByUser(account)
af5767ff
C
290 },
291 {
292 label: this.i18n('Mute the instance'),
9b82d49d 293 description: this.i18n('Hide any content from that instance for you.'),
4e74e803
C
294 isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === false,
295 handler: ({ account }) => this.blockServerByUser(account.host)
af5767ff
C
296 },
297 {
298 label: this.i18n('Unmute the instance'),
9b82d49d 299 description: this.i18n('Show back content from that instance for you.'),
4e74e803
C
300 isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === true,
301 handler: ({ account }) => this.unblockServerByUser(account.host)
79bd2632
C
302 }
303 ])
65b21c96 304
f97c91f7
C
305 let instanceActions: DropdownAction<{ user: User, account: Account }>[] = []
306
65b21c96
C
307 // Instance actions
308 if (authUser.hasRight(UserRight.MANAGE_ACCOUNTS_BLOCKLIST)) {
f97c91f7 309 instanceActions = instanceActions.concat([
65b21c96
C
310 {
311 label: this.i18n('Mute this account by your instance'),
9b82d49d 312 description: this.i18n('Hide any content from that user for you, your instance and its users.'),
4e74e803
C
313 isDisplayed: ({ account }) => account.mutedByInstance === false,
314 handler: ({ account }) => this.blockAccountByInstance(account)
65b21c96
C
315 },
316 {
317 label: this.i18n('Unmute this account by your instance'),
9b82d49d 318 description: this.i18n('Show back content from that user for you, your instance and its users.'),
4e74e803
C
319 isDisplayed: ({ account }) => account.mutedByInstance === true,
320 handler: ({ account }) => this.unblockAccountByInstance(account)
65b21c96
C
321 }
322 ])
323 }
324
325 // Instance actions
326 if (authUser.hasRight(UserRight.MANAGE_SERVERS_BLOCKLIST)) {
f97c91f7 327 instanceActions = instanceActions.concat([
65b21c96
C
328 {
329 label: this.i18n('Mute the instance by your instance'),
9b82d49d 330 description: this.i18n('Hide any content from that instance for you, your instance and its users.'),
4e74e803
C
331 isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === false,
332 handler: ({ account }) => this.blockServerByInstance(account.host)
65b21c96
C
333 },
334 {
335 label: this.i18n('Unmute the instance by your instance'),
9b82d49d 336 description: this.i18n('Show back content from that instance for you, your instance and its users.'),
4e74e803
C
337 isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === true,
338 handler: ({ account }) => this.unblockServerByInstance(account.host)
65b21c96
C
339 }
340 ])
341 }
f97c91f7
C
342
343 if (instanceActions.length !== 0) {
344 this.userActions.push(instanceActions)
345 }
79bd2632
C
346 }
347 }
348 }
e724fa93 349}