]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts
check old password before change
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-change-password / my-account-change-password.component.ts
index 80af668f96c46218e75eee06416f3be7df57cc15..c4837460a948a27f02d716916847717fa3107f04 100644 (file)
@@ -1,7 +1,12 @@
 import { Component, OnInit } from '@angular/core'
-import { FormBuilder, FormGroup } from '@angular/forms'
 import { NotificationsService } from 'angular2-notifications'
-import { FormReactive, USER_PASSWORD, UserService } from '../../../shared'
+import { FormReactive, UserService } from '../../../shared'
+import { I18n } from '@ngx-translate/i18n-polyfill'
+import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
+import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
+import { filter } from 'rxjs/operators'
+import { AuthService } from '@app/core';
+import { User } from '../../../../../../shared';
 
 @Component({
   selector: 'my-account-change-password',
@@ -10,51 +15,58 @@ import { FormReactive, USER_PASSWORD, UserService } from '../../../shared'
 })
 export class MyAccountChangePasswordComponent extends FormReactive implements OnInit {
   error: string = null
-
-  form: FormGroup
-  formErrors = {
-    'new-password': '',
-    'new-confirmed-password': ''
-  }
-  validationMessages = {
-    'new-password': USER_PASSWORD.MESSAGES,
-    'new-confirmed-password': USER_PASSWORD.MESSAGES
-  }
+  user: User = null
 
   constructor (
-    private formBuilder: FormBuilder,
+    protected formValidatorService: FormValidatorService,
+    private userValidatorsService: UserValidatorsService,
     private notificationsService: NotificationsService,
-    private userService: UserService
+    private authService: AuthService,
+    private userService: UserService,
+    private i18n: I18n
   ) {
     super()
   }
 
-  buildForm () {
-    this.form = this.formBuilder.group({
-      'new-password': [ '', USER_PASSWORD.VALIDATORS ],
-      'new-confirmed-password': [ '', USER_PASSWORD.VALIDATORS ]
+  ngOnInit () {
+    this.buildForm({
+      'old-password': this.userValidatorsService.USER_PASSWORD,
+      'new-password': this.userValidatorsService.USER_PASSWORD,
+      'new-confirmed-password': this.userValidatorsService.USER_CONFIRM_PASSWORD
     })
 
-    this.form.valueChanges.subscribe(data => this.onValueChanged(data))
-  }
+    this.user = this.authService.getUser()
 
-  ngOnInit () {
-    this.buildForm()
-  }
+    const confirmPasswordControl = this.form.get('new-confirmed-password')
 
-  changePassword () {
-    const newPassword = this.form.value['new-password']
-    const newConfirmedPassword = this.form.value['new-confirmed-password']
+    confirmPasswordControl.valueChanges
+                          .pipe(filter(v => v !== this.form.value[ 'new-password' ]))
+                          .subscribe(() => confirmPasswordControl.setErrors({ matchPassword: true }))
+  }
 
+  checkPassword () {
     this.error = null
+    const oldPassword = this.form.value[ 'old-password' ];
+
+    // compare old password
+    this.authService.login(this.user.account.name, oldPassword)
+      .subscribe(
+        () => this.changePassword(),
+        err => {
+          if (err.message.indexOf('credentials are invalid') !== -1) this.error = this.i18n('Incorrect old password.')
+          else this.error = err.message
+        }
+      )
+
+  }
 
-    if (newPassword !== newConfirmedPassword) {
-      this.error = 'The new password and the confirmed password do not correspond.'
-      return
-    }
+  private changePassword(){
+    this.userService.changePassword(this.form.value[ 'new-password' ]).subscribe(
+      () => {
+        this.notificationsService.success(this.i18n('Success'), this.i18n('Password updated.'))
 
-    this.userService.changePassword(newPassword).subscribe(
-      () => this.notificationsService.success('Success', 'Password updated.'),
+        this.form.reset()
+      },
 
       err => this.error = err.message
     )