Moderators can only manage users
[oweals/peertube.git] / client / src / app / +admin / users / user-edit / user-update.component.ts
1 import { Component, OnDestroy, OnInit } from '@angular/core'
2 import { ActivatedRoute, Router } from '@angular/router'
3 import { Subscription } from 'rxjs'
4 import { AuthService, Notifier } from '@app/core'
5 import { ServerService } from '../../../core'
6 import { UserEdit } from './user-edit'
7 import { User, UserUpdate } from '../../../../../../shared'
8 import { I18n } from '@ngx-translate/i18n-polyfill'
9 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
10 import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
11 import { ConfigService } from '@app/+admin/config/shared/config.service'
12 import { UserService } from '@app/shared'
13 import { UserAdminFlag } from '@shared/models/users/user-flag.model'
14
15 @Component({
16   selector: 'my-user-update',
17   templateUrl: './user-edit.component.html',
18   styleUrls: [ './user-edit.component.scss' ]
19 })
20 export class UserUpdateComponent extends UserEdit implements OnInit, OnDestroy {
21   error: string
22   userId: number
23   userEmail: string
24   username: string
25
26   private paramsSub: Subscription
27
28   constructor (
29     protected formValidatorService: FormValidatorService,
30     protected serverService: ServerService,
31     protected configService: ConfigService,
32     protected auth: AuthService,
33     private userValidatorsService: UserValidatorsService,
34     private route: ActivatedRoute,
35     private router: Router,
36     private notifier: Notifier,
37     private userService: UserService,
38     private i18n: I18n
39   ) {
40     super()
41
42     this.buildQuotaOptions()
43   }
44
45   ngOnInit () {
46     const defaultValues = { videoQuota: '-1', videoQuotaDaily: '-1' }
47     this.buildForm({
48       email: this.userValidatorsService.USER_EMAIL,
49       role: this.userValidatorsService.USER_ROLE,
50       videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
51       videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY,
52       byPassAutoBlacklist: null
53     }, defaultValues)
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
60         err => this.error = err.message
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
73     userUpdate.adminFlags = this.buildAdminFlags(this.form.value)
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)
77     userUpdate.videoQuotaDaily = parseInt(this.form.value['videoQuotaDaily'], 10)
78
79     this.userService.updateUser(this.userId, userUpdate).subscribe(
80       () => {
81         this.notifier.success(this.i18n('User {{username}} updated.', { username: this.username }))
82         this.router.navigate([ '/admin/users/list' ])
83       },
84
85       err => this.error = err.message
86     )
87   }
88
89   isCreation () {
90     return false
91   }
92
93   getFormButtonTitle () {
94     return this.i18n('Update user')
95   }
96
97   resetPassword () {
98     this.userService.askResetPassword(this.userEmail).subscribe(
99       () => {
100         this.notifier.success(
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
109   private onUserFetched (userJson: User) {
110     this.userId = userJson.id
111     this.username = userJson.username
112     this.userEmail = userJson.email
113
114     this.form.patchValue({
115       email: userJson.email,
116       role: userJson.role,
117       videoQuota: userJson.videoQuota,
118       videoQuotaDaily: userJson.videoQuotaDaily,
119       byPassAutoBlacklist: userJson.adminFlags & UserAdminFlag.BY_PASS_VIDEO_AUTO_BLACKLIST
120     })
121   }
122 }