]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+admin/users/user-edit/user-update.component.ts
Support short uuid for scripts
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-edit / user-update.component.ts
... / ...
CommitLineData
1import { Subscription } from 'rxjs'
2import { Component, OnDestroy, OnInit } from '@angular/core'
3import { ActivatedRoute, Router } from '@angular/router'
4import { ConfigService } from '@app/+admin/config/shared/config.service'
5import { AuthService, Notifier, ScreenService, ServerService, User, UserService } from '@app/core'
6import {
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'
12import { FormValidatorService } from '@app/shared/shared-forms'
13import { User as UserType, UserAdminFlag, UserRole, UserUpdate } from '@shared/models'
14import { 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})
21export 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 pluginAuth: null
58 }, defaultValues)
59
60 this.paramsSub = this.route.params.subscribe(routeParams => {
61 const userId = routeParams['id']
62 this.userService.getUser(userId, true).subscribe(
63 user => this.onUserFetched(user),
64
65 err => this.error = err.message
66 )
67 })
68 }
69
70 ngOnDestroy () {
71 this.paramsSub.unsubscribe()
72 }
73
74 formValidated () {
75 this.error = undefined
76
77 const userUpdate: UserUpdate = this.form.value
78 userUpdate.adminFlags = this.buildAdminFlags(this.form.value)
79
80 // A select in HTML is always mapped as a string, we convert it to number
81 userUpdate.videoQuota = parseInt(this.form.value['videoQuota'], 10)
82 userUpdate.videoQuotaDaily = parseInt(this.form.value['videoQuotaDaily'], 10)
83
84 if (userUpdate.pluginAuth === 'null') userUpdate.pluginAuth = null
85
86 this.userService.updateUser(this.user.id, userUpdate).subscribe(
87 () => {
88 this.notifier.success($localize`User ${this.user.username} updated.`)
89 this.router.navigate([ '/admin/users/list' ])
90 },
91
92 err => this.error = err.message
93 )
94 }
95
96 isCreation () {
97 return false
98 }
99
100 isPasswordOptional () {
101 return false
102 }
103
104 getFormButtonTitle () {
105 return $localize`Update user`
106 }
107
108 resetPassword () {
109 this.userService.askResetPassword(this.user.email).subscribe(
110 () => {
111 this.notifier.success($localize`An email asking for password reset has been sent to ${this.user.username}.`)
112 },
113
114 err => this.error = err.message
115 )
116 }
117
118 private onUserFetched (userJson: UserType) {
119 this.user = new User(userJson)
120
121 this.form.patchValue({
122 email: userJson.email,
123 role: userJson.role.toString(),
124 videoQuota: userJson.videoQuota,
125 videoQuotaDaily: userJson.videoQuotaDaily,
126 pluginAuth: userJson.pluginAuth,
127 byPassAutoBlock: userJson.adminFlags & UserAdminFlag.BYPASS_VIDEO_AUTO_BLACKLIST
128 })
129 }
130}