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

74 lines
2.2 KiB
TypeScript
Raw Normal View History

2019-06-11 14:30:49 +02:00
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'
2019-06-12 17:06:28 +02:00
import { tap } from 'rxjs/operators'
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 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
}
)
}
}