aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts
blob: 577c5b102c459e12df8969f9c00e9cc03aa4ef5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { Component, OnInit } from '@angular/core'
import { AuthService, Notifier, ServerService } 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 { User } from '../../../../../../shared'
import { switchMap, tap } from 'rxjs/operators'

@Component({
  selector: 'my-account-change-email',
  templateUrl: './my-account-change-email.component.html',
  styleUrls: [ './my-account-change-email.component.scss' ]
})
export class MyAccountChangeEmailComponent extends FormReactive implements OnInit {
  error: string = null
  success: string = null
  user: User = null

  constructor (
    protected formValidatorService: FormValidatorService,
    private userValidatorsService: UserValidatorsService,
    private notifier: Notifier,
    private authService: AuthService,
    private userService: UserService,
    private serverService: ServerService,
    private i18n: I18n
  ) {
    super()
  }

  ngOnInit () {
    this.buildForm({
      'new-email': this.userValidatorsService.USER_EMAIL,
      'password': this.userValidatorsService.USER_PASSWORD
    })

    this.user = this.authService.getUser()
  }

  changeEmail () {
    this.error = null
    this.success = null

    const password = this.form.value[ 'password' ]
    const email = this.form.value[ 'new-email' ]

    this.userService.changeEmail(password, email)
        .pipe(
          tap(() => this.authService.refreshUserInformation())
        )
        .subscribe(
          () => {
            this.form.reset()

            if (this.serverService.getConfig().signup.requiresEmailVerification) {
              this.success = this.i18n('Please check your emails to verify your new email.')
            } else {
              this.success = this.i18n('Email updated.')
            }
          },

          err => {
            if (err.status === 401) {
              this.error = this.i18n('You current password is invalid.')
              return
            }

            this.error = err.message
          }
        )
  }
}