]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/reset-password/reset-password.component.ts
Fix player progress bar when changing resolution
[github/Chocobozzz/PeerTube.git] / client / src / app / reset-password / reset-password.component.ts
CommitLineData
ecb4e35f 1import { Component, OnInit } from '@angular/core'
ecb4e35f 2import { ActivatedRoute, Router } from '@angular/router'
e309822b 3import { UserService, UserValidatorsService } from '@app/shared'
ecb4e35f 4import { NotificationsService } from 'angular2-notifications'
ecb4e35f 5import { FormReactive } from '../shared'
b1d40cff 6import { I18n } from '@ngx-translate/i18n-polyfill'
d18d6478 7import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
e309822b 8import { ResetPasswordValidatorsService } from '@app/shared/forms/form-validators/reset-password-validators.service'
ecb4e35f
C
9
10@Component({
11 selector: 'my-login',
12 templateUrl: './reset-password.component.html',
13 styleUrls: [ './reset-password.component.scss' ]
14})
15
16export class ResetPasswordComponent extends FormReactive implements OnInit {
ecb4e35f
C
17 private userId: number
18 private verificationString: string
19
20 constructor (
d18d6478 21 protected formValidatorService: FormValidatorService,
e309822b
C
22 private resetPasswordValidatorsService: ResetPasswordValidatorsService,
23 private userValidatorsService: UserValidatorsService,
ecb4e35f
C
24 private userService: UserService,
25 private notificationsService: NotificationsService,
ecb4e35f 26 private router: Router,
b1d40cff
C
27 private route: ActivatedRoute,
28 private i18n: I18n
ecb4e35f
C
29 ) {
30 super()
31 }
32
ecb4e35f 33 ngOnInit () {
d18d6478 34 this.buildForm({
e309822b
C
35 password: this.userValidatorsService.USER_PASSWORD,
36 'password-confirm': this.resetPasswordValidatorsService.RESET_PASSWORD_CONFIRM
d18d6478 37 })
ecb4e35f
C
38
39 this.userId = this.route.snapshot.queryParams['userId']
40 this.verificationString = this.route.snapshot.queryParams['verificationString']
41
42 if (!this.userId || !this.verificationString) {
b1d40cff 43 this.notificationsService.error(this.i18n('Error'), this.i18n('Unable to find user id or verification string.'))
ecb4e35f
C
44 this.router.navigate([ '/' ])
45 }
46 }
47
48 resetPassword () {
49 this.userService.resetPassword(this.userId, this.verificationString, this.form.value.password)
50 .subscribe(
51 () => {
b1d40cff 52 this.notificationsService.success(this.i18n('Success'), this.i18n('Your password has been successfully reset!'))
ecb4e35f
C
53 this.router.navigate([ '/login' ])
54 },
55
56 err => this.notificationsService.error('Error', err.message)
57 )
58 }
59
60 isConfirmedPasswordValid () {
61 const values = this.form.value
62 return values.password === values['password-confirm']
63 }
64}