]> 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
Refractor notification service
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-change-password / my-account-change-password.component.ts
index 1a88aa82e38afaef4f87386943fe80c51346cd87..cbb068c7ce76575380bfef8f6558cb1a983279d0 100644 (file)
@@ -1,8 +1,11 @@
 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 { AuthService, Notifier } from '@app/core'
+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 { User } from '../../../../../../shared'
 
 @Component({
   selector: 'my-account-change-password',
@@ -11,54 +14,55 @@ import { I18n } from '@ngx-translate/i18n-polyfill'
 })
 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,
-    private notificationsService: NotificationsService,
+    protected formValidatorService: FormValidatorService,
+    private userValidatorsService: UserValidatorsService,
+    private notifier: Notifier,
+    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({
+      'current-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')
+
+    confirmPasswordControl.valueChanges
+                          .pipe(filter(v => v !== this.form.value[ 'new-password' ]))
+                          .subscribe(() => confirmPasswordControl.setErrors({ matchPassword: true }))
   }
 
   changePassword () {
-    const newPassword = this.form.value['new-password']
-    const newConfirmedPassword = this.form.value['new-confirmed-password']
+    const currentPassword = this.form.value[ 'current-password' ]
+    const newPassword = this.form.value[ 'new-password' ]
 
-    this.error = null
+    this.userService.changePassword(currentPassword, newPassword).subscribe(
+      () => {
+        this.notifier.success(this.i18n('Password updated.'))
 
-    if (newPassword !== newConfirmedPassword) {
-      this.error = this.i18n('The new password and the confirmed password do not correspond.')
-      return
-    }
+        this.form.reset()
+        this.error = null
+      },
 
-    this.userService.changePassword(newPassword).subscribe(
-      () => this.notificationsService.success(this.i18n('Success'), this.i18n('Password updated.')),
+      err => {
+        if (err.status === 401) {
+          this.error = this.i18n('You current password is invalid.')
+          return
+        }
 
-      err => this.error = err.message
+        this.error = err.message
+      }
     )
   }
 }