PeerTube/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.com...

70 lines
2.0 KiB
TypeScript
Raw Normal View History

2020-06-23 14:10:17 +02:00
import { forkJoin } from 'rxjs'
import { tap } from 'rxjs/operators'
2019-06-11 14:30:49 +02:00
import { Component, OnInit } from '@angular/core'
2020-06-23 14:10:17 +02:00
import { AuthService, ServerService, UserService } from '@app/core'
import { USER_EMAIL_VALIDATOR, USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators'
import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
2020-06-23 14:10:17 +02:00
import { User } from '@shared/models'
2019-06-11 14:30:49 +02:00
@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 authService: AuthService,
private userService: UserService,
private serverService: ServerService
) {
2019-06-11 14:30:49 +02:00
super()
}
ngOnInit () {
this.buildForm({
'new-email': USER_EMAIL_VALIDATOR,
'password': USER_PASSWORD_VALIDATOR
2019-06-11 14:30:49 +02:00
})
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' ]
2019-12-18 15:31:54 +01:00
forkJoin([
this.serverService.getConfig(),
this.userService.changeEmail(password, email)
]).pipe(tap(() => this.authService.refreshUserInformation()))
2021-08-17 11:27:47 +02:00
.subscribe({
next: ([ config ]) => {
2019-12-18 15:31:54 +01:00
this.form.reset()
2019-06-11 14:30:49 +02:00
2019-12-18 15:31:54 +01:00
if (config.signup.requiresEmailVerification) {
this.success = $localize`Please check your emails to verify your new email.`
2019-12-18 15:31:54 +01:00
} else {
this.success = $localize`Email updated.`
2019-12-18 15:31:54 +01:00
}
},
2019-06-11 14:30:49 +02:00
2021-08-17 11:27:47 +02:00
error: err => {
2019-12-18 15:31:54 +01:00
if (err.status === 401) {
this.error = $localize`You current password is invalid.`
2019-12-18 15:31:54 +01:00
return
2019-06-11 14:30:49 +02:00
}
2019-12-18 15:31:54 +01:00
this.error = err.message
}
2021-08-17 11:27:47 +02:00
})
2019-06-11 14:30:49 +02:00
}
}