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