]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/users/user-edit/user-update.component.ts
Moderators can only manage users
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-edit / user-update.component.ts
CommitLineData
b426edd4 1import { Component, OnDestroy, OnInit } from '@angular/core'
8094a898 2import { ActivatedRoute, Router } from '@angular/router'
db400f44 3import { Subscription } from 'rxjs'
a95a4cc8 4import { AuthService, Notifier } from '@app/core'
6a84aafd 5import { ServerService } from '../../../core'
8094a898 6import { UserEdit } from './user-edit'
3827c3b3 7import { User, UserUpdate } from '../../../../../../shared'
b1d40cff 8import { I18n } from '@ngx-translate/i18n-polyfill'
d18d6478 9import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
e309822b 10import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
3827c3b3 11import { ConfigService } from '@app/+admin/config/shared/config.service'
e724fa93 12import { UserService } from '@app/shared'
1eddc9a7 13import { UserAdminFlag } from '@shared/models/users/user-flag.model'
8094a898
C
14
15@Component({
16 selector: 'my-user-update',
6a84aafd
C
17 templateUrl: './user-edit.component.html',
18 styleUrls: [ './user-edit.component.scss' ]
8094a898
C
19})
20export class UserUpdateComponent extends UserEdit implements OnInit, OnDestroy {
21 error: string
22 userId: number
328c78bc 23 userEmail: string
8094a898
C
24 username: string
25
8094a898
C
26 private paramsSub: Subscription
27
28 constructor (
d18d6478 29 protected formValidatorService: FormValidatorService,
6a84aafd 30 protected serverService: ServerService,
3827c3b3 31 protected configService: ConfigService,
a95a4cc8 32 protected auth: AuthService,
e309822b 33 private userValidatorsService: UserValidatorsService,
8094a898
C
34 private route: ActivatedRoute,
35 private router: Router,
f8b2c1b4 36 private notifier: Notifier,
b1d40cff
C
37 private userService: UserService,
38 private i18n: I18n
8094a898
C
39 ) {
40 super()
3827c3b3
C
41
42 this.buildQuotaOptions()
8094a898
C
43 }
44
8094a898 45 ngOnInit () {
bee0abff 46 const defaultValues = { videoQuota: '-1', videoQuotaDaily: '-1' }
d18d6478 47 this.buildForm({
e309822b
C
48 email: this.userValidatorsService.USER_EMAIL,
49 role: this.userValidatorsService.USER_ROLE,
bee0abff 50 videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
1eddc9a7
C
51 videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY,
52 byPassAutoBlacklist: null
d18d6478 53 }, defaultValues)
8094a898
C
54
55 this.paramsSub = this.route.params.subscribe(routeParams => {
56 const userId = routeParams['id']
57 this.userService.getUser(userId).subscribe(
58 user => this.onUserFetched(user),
59
f7354483 60 err => this.error = err.message
8094a898
C
61 )
62 })
63 }
64
65 ngOnDestroy () {
66 this.paramsSub.unsubscribe()
67 }
68
69 formValidated () {
70 this.error = undefined
71
72 const userUpdate: UserUpdate = this.form.value
1eddc9a7 73 userUpdate.adminFlags = this.buildAdminFlags(this.form.value)
8094a898
C
74
75 // A select in HTML is always mapped as a string, we convert it to number
76 userUpdate.videoQuota = parseInt(this.form.value['videoQuota'], 10)
bee0abff 77 userUpdate.videoQuotaDaily = parseInt(this.form.value['videoQuotaDaily'], 10)
8094a898
C
78
79 this.userService.updateUser(this.userId, userUpdate).subscribe(
80 () => {
f8b2c1b4 81 this.notifier.success(this.i18n('User {{username}} updated.', { username: this.username }))
8094a898
C
82 this.router.navigate([ '/admin/users/list' ])
83 },
84
f7354483 85 err => this.error = err.message
8094a898
C
86 )
87 }
88
89 isCreation () {
90 return false
91 }
92
93 getFormButtonTitle () {
b1d40cff 94 return this.i18n('Update user')
8094a898
C
95 }
96
328c78bc
RK
97 resetPassword () {
98 this.userService.askResetPassword(this.userEmail).subscribe(
99 () => {
b426edd4 100 this.notifier.success(
328c78bc
RK
101 this.i18n('An email asking for password reset has been sent to {{username}}.', { username: this.username })
102 )
103 },
104
105 err => this.error = err.message
106 )
107 }
108
8094a898
C
109 private onUserFetched (userJson: User) {
110 this.userId = userJson.id
111 this.username = userJson.username
328c78bc 112 this.userEmail = userJson.email
8094a898
C
113
114 this.form.patchValue({
115 email: userJson.email,
954605a8 116 role: userJson.role,
bee0abff 117 videoQuota: userJson.videoQuota,
1eddc9a7
C
118 videoQuotaDaily: userJson.videoQuotaDaily,
119 byPassAutoBlacklist: userJson.adminFlags & UserAdminFlag.BY_PASS_VIDEO_AUTO_BLACKLIST
8094a898
C
120 })
121 }
122}