]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+admin/users/user-edit/user-update.component.ts
Lazy load static objects
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-edit / user-update.component.ts
... / ...
CommitLineData
1import { Component, OnDestroy, OnInit } from '@angular/core'
2import { ActivatedRoute, Router } from '@angular/router'
3import { Subscription } from 'rxjs'
4import { AuthService, Notifier } from '@app/core'
5import { ServerService } from '../../../core'
6import { UserEdit } from './user-edit'
7import { User, UserUpdate } from '../../../../../../shared'
8import { I18n } from '@ngx-translate/i18n-polyfill'
9import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
10import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
11import { ConfigService } from '@app/+admin/config/shared/config.service'
12import { UserService } from '@app/shared'
13import { 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})
20export 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 super.ngOnInit()
47
48 const defaultValues = { videoQuota: '-1', videoQuotaDaily: '-1' }
49 this.buildForm({
50 email: this.userValidatorsService.USER_EMAIL,
51 role: this.userValidatorsService.USER_ROLE,
52 videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
53 videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY,
54 byPassAutoBlacklist: null
55 }, defaultValues)
56
57 this.paramsSub = this.route.params.subscribe(routeParams => {
58 const userId = routeParams['id']
59 this.userService.getUser(userId).subscribe(
60 user => this.onUserFetched(user),
61
62 err => this.error = err.message
63 )
64 })
65 }
66
67 ngOnDestroy () {
68 this.paramsSub.unsubscribe()
69 }
70
71 formValidated () {
72 this.error = undefined
73
74 const userUpdate: UserUpdate = this.form.value
75 userUpdate.adminFlags = this.buildAdminFlags(this.form.value)
76
77 // A select in HTML is always mapped as a string, we convert it to number
78 userUpdate.videoQuota = parseInt(this.form.value['videoQuota'], 10)
79 userUpdate.videoQuotaDaily = parseInt(this.form.value['videoQuotaDaily'], 10)
80
81 this.userService.updateUser(this.userId, userUpdate).subscribe(
82 () => {
83 this.notifier.success(this.i18n('User {{username}} updated.', { username: this.username }))
84 this.router.navigate([ '/admin/users/list' ])
85 },
86
87 err => this.error = err.message
88 )
89 }
90
91 isCreation () {
92 return false
93 }
94
95 getFormButtonTitle () {
96 return this.i18n('Update user')
97 }
98
99 resetPassword () {
100 this.userService.askResetPassword(this.userEmail).subscribe(
101 () => {
102 this.notifier.success(
103 this.i18n('An email asking for password reset has been sent to {{username}}.', { username: this.username })
104 )
105 },
106
107 err => this.error = err.message
108 )
109 }
110
111 private onUserFetched (userJson: User) {
112 this.userId = userJson.id
113 this.username = userJson.username
114 this.userEmail = userJson.email
115
116 this.form.patchValue({
117 email: userJson.email,
118 role: userJson.role,
119 videoQuota: userJson.videoQuota,
120 videoQuotaDaily: userJson.videoQuotaDaily,
121 byPassAutoBlacklist: userJson.adminFlags & UserAdminFlag.BY_PASS_VIDEO_AUTO_BLACKLIST
122 })
123 }
124}