]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+admin/overview/users/user-list/user-list.component.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / overview / users / user-list / user-list.component.ts
... / ...
CommitLineData
1import { SortMeta } from 'primeng/api'
2import { Component, OnInit, ViewChild } from '@angular/core'
3import { ActivatedRoute, Router } from '@angular/router'
4import { AuthService, ConfirmService, LocalStorageService, Notifier, RestPagination, RestTable, ServerService } from '@app/core'
5import { getAPIHost, prepareIcu } from '@app/helpers'
6import { AdvancedInputFilter } from '@app/shared/shared-forms'
7import { Actor, DropdownAction } from '@app/shared/shared-main'
8import { AccountMutedStatus, BlocklistService, UserBanModalComponent, UserModerationDisplayType } from '@app/shared/shared-moderation'
9import { UserAdminService } from '@app/shared/shared-users'
10import { logger } from '@root-helpers/logger'
11import { User, UserRole } from '@shared/models'
12
13type UserForList = User & {
14 rawVideoQuota: number
15 rawVideoQuotaUsed: number
16 rawVideoQuotaDaily: number
17 rawVideoQuotaUsedDaily: number
18}
19
20@Component({
21 selector: 'my-user-list',
22 templateUrl: './user-list.component.html',
23 styleUrls: [ './user-list.component.scss' ]
24})
25export class UserListComponent extends RestTable <User> implements OnInit {
26 private static readonly LOCAL_STORAGE_SELECTED_COLUMNS_KEY = 'admin-user-list-selected-columns'
27
28 @ViewChild('userBanModal', { static: true }) userBanModal: UserBanModalComponent
29
30 users: (User & { accountMutedStatus: AccountMutedStatus })[] = []
31
32 totalRecords = 0
33 sort: SortMeta = { field: 'createdAt', order: 1 }
34 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
35
36 highlightBannedUsers = false
37
38 bulkActions: DropdownAction<User[]>[][] = []
39 columns: { id: string, label: string }[]
40
41 inputFilters: AdvancedInputFilter[] = [
42 {
43 title: $localize`Advanced filters`,
44 children: [
45 {
46 value: 'banned:true',
47 label: $localize`Banned users`
48 }
49 ]
50 }
51 ]
52
53 userModerationDisplayOptions: UserModerationDisplayType = {
54 instanceAccount: true,
55 instanceUser: true,
56 myAccount: false
57 }
58
59 requiresEmailVerification = false
60
61 private _selectedColumns: string[] = []
62
63 constructor (
64 protected route: ActivatedRoute,
65 protected router: Router,
66 private notifier: Notifier,
67 private confirmService: ConfirmService,
68 private serverService: ServerService,
69 private auth: AuthService,
70 private blocklist: BlocklistService,
71 private userAdminService: UserAdminService,
72 private peertubeLocalStorage: LocalStorageService
73 ) {
74 super()
75 }
76
77 get authUser () {
78 return this.auth.getUser()
79 }
80
81 get selectedColumns () {
82 return this._selectedColumns || []
83 }
84
85 set selectedColumns (val: string[]) {
86 this._selectedColumns = val
87
88 this.saveSelectedColumns()
89 }
90
91 ngOnInit () {
92 this.serverService.getConfig()
93 .subscribe(config => this.requiresEmailVerification = config.signup.requiresEmailVerification)
94
95 this.initialize()
96
97 this.bulkActions = [
98 [
99 {
100 label: $localize`Delete`,
101 description: $localize`Videos will be deleted, comments will be tombstoned.`,
102 handler: users => this.removeUsers(users),
103 isDisplayed: users => users.every(u => this.authUser.canManage(u))
104 },
105 {
106 label: $localize`Ban`,
107 description: $localize`User won't be able to login anymore, but videos and comments will be kept as is.`,
108 handler: users => this.openBanUserModal(users),
109 isDisplayed: users => users.every(u => this.authUser.canManage(u) && u.blocked === false)
110 },
111 {
112 label: $localize`Unban`,
113 handler: users => this.unbanUsers(users),
114 isDisplayed: users => users.every(u => this.authUser.canManage(u) && u.blocked === true)
115 }
116 ],
117 [
118 {
119 label: $localize`Set Email as Verified`,
120 handler: users => this.setEmailsAsVerified(users),
121 isDisplayed: users => {
122 return this.requiresEmailVerification &&
123 users.every(u => this.authUser.canManage(u) && !u.blocked && u.emailVerified === false)
124 }
125 }
126 ]
127 ]
128
129 this.columns = [
130 { id: 'username', label: $localize`Username` },
131 { id: 'role', label: $localize`Role` },
132 { id: 'email', label: $localize`Email` },
133 { id: 'quota', label: $localize`Video quota` },
134 { id: 'createdAt', label: $localize`Created` },
135 { id: 'lastLoginDate', label: $localize`Last login` },
136
137 { id: 'quotaDaily', label: $localize`Daily quota` },
138 { id: 'pluginAuth', label: $localize`Auth plugin` }
139 ]
140
141 this.loadSelectedColumns()
142 }
143
144 loadSelectedColumns () {
145 const result = this.peertubeLocalStorage.getItem(UserListComponent.LOCAL_STORAGE_SELECTED_COLUMNS_KEY)
146
147 if (result) {
148 try {
149 this.selectedColumns = JSON.parse(result)
150 return
151 } catch (err) {
152 logger.error('Cannot load selected columns.', err)
153 }
154 }
155
156 // Default behaviour
157 this.selectedColumns = [ 'username', 'role', 'email', 'quota', 'createdAt', 'lastLoginDate' ]
158 return
159 }
160
161 saveSelectedColumns () {
162 this.peertubeLocalStorage.setItem(UserListComponent.LOCAL_STORAGE_SELECTED_COLUMNS_KEY, JSON.stringify(this.selectedColumns))
163 }
164
165 getIdentifier () {
166 return 'UserListComponent'
167 }
168
169 getRoleClass (role: UserRole) {
170 switch (role) {
171 case UserRole.ADMINISTRATOR:
172 return 'badge-purple'
173 case UserRole.MODERATOR:
174 return 'badge-blue'
175 default:
176 return 'badge-yellow'
177 }
178 }
179
180 isSelected (id: string) {
181 return this.selectedColumns.find(c => c === id)
182 }
183
184 getColumn (id: string) {
185 return this.columns.find(c => c.id === id)
186 }
187
188 getUserVideoQuotaPercentage (user: UserForList) {
189 return user.rawVideoQuotaUsed * 100 / user.rawVideoQuota
190 }
191
192 getUserVideoQuotaDailyPercentage (user: UserForList) {
193 return user.rawVideoQuotaUsedDaily * 100 / user.rawVideoQuotaDaily
194 }
195
196 openBanUserModal (users: User[]) {
197 for (const user of users) {
198 if (user.username === 'root') {
199 this.notifier.error($localize`You cannot ban root.`)
200 return
201 }
202 }
203
204 this.userBanModal.openModal(users)
205 }
206
207 onUserChanged () {
208 this.reloadData()
209 }
210
211 async unbanUsers (users: User[]) {
212 const res = await this.confirmService.confirm(
213 prepareIcu($localize`Do you really want to unban {count, plural, =1 {1 user} other {{count} users}}?`)(
214 { count: users.length },
215 $localize`Do you really want to unban ${users.length} users?`
216 ),
217 $localize`Unban`
218 )
219
220 if (res === false) return
221
222 this.userAdminService.unbanUsers(users)
223 .subscribe({
224 next: () => {
225 this.notifier.success(
226 prepareIcu($localize`{count, plural, =1 {1 user unbanned.} other {{count} users unbanned.}}`)(
227 { count: users.length },
228 $localize`${users.length} users unbanned.`
229 )
230 )
231 this.reloadData()
232 },
233
234 error: err => this.notifier.error(err.message)
235 })
236 }
237
238 async removeUsers (users: User[]) {
239 if (users.some(u => u.username === 'root')) {
240 this.notifier.error($localize`You cannot delete root.`)
241 return
242 }
243
244 const message = $localize`<p>You can't create users or channels with a username that already used by a deleted user/channel.</p>` +
245 $localize`It means the following usernames will be permanently deleted and cannot be recovered:` +
246 '<ul>' + users.map(u => '<li>' + u.username + '</li>').join('') + '</ul>'
247
248 const res = await this.confirmService.confirm(message, $localize`Delete`)
249 if (res === false) return
250
251 this.userAdminService.removeUsers(users)
252 .subscribe({
253 next: () => {
254 this.notifier.success(
255 prepareIcu($localize`{count, plural, =1 {1 user deleted.} other {{count} users deleted.}}`)(
256 { count: users.length },
257 $localize`${users.length} users deleted.`
258 )
259 )
260
261 this.reloadData()
262 },
263
264 error: err => this.notifier.error(err.message)
265 })
266 }
267
268 setEmailsAsVerified (users: User[]) {
269 this.userAdminService.updateUsers(users, { emailVerified: true })
270 .subscribe({
271 next: () => {
272 this.notifier.success(
273 prepareIcu($localize`{count, plural, =1 {1 user email set as verified.} other {{count} user emails set as verified.}}`)(
274 { count: users.length },
275 $localize`${users.length} users email set as verified.`
276 )
277 )
278
279 this.reloadData()
280 },
281
282 error: err => this.notifier.error(err.message)
283 })
284 }
285
286 protected reloadDataInternal () {
287 this.userAdminService.getUsers({
288 pagination: this.pagination,
289 sort: this.sort,
290 search: this.search
291 }).subscribe({
292 next: resultList => {
293 this.users = resultList.data.map(u => ({
294 ...u,
295
296 accountMutedStatus: {
297 ...u.account,
298
299 nameWithHost: Actor.CREATE_BY_STRING(u.account.name, u.account.host),
300
301 mutedByInstance: false,
302 mutedByUser: false,
303 mutedServerByInstance: false,
304 mutedServerByUser: false
305 }
306 }))
307 this.totalRecords = resultList.total
308
309 this.loadMutedStatus()
310 },
311
312 error: err => this.notifier.error(err.message)
313 })
314 }
315
316 private loadMutedStatus () {
317 this.blocklist.getStatus({ accounts: this.users.map(u => u.username + '@' + getAPIHost()) })
318 .subscribe(blockStatus => {
319 for (const user of this.users) {
320 user.accountMutedStatus.mutedByInstance = blockStatus.accounts[user.username + '@' + getAPIHost()].blockedByServer
321 }
322 })
323 }
324}