1 import { Component, ElementRef, OnInit, ViewChild, AfterViewInit } from '@angular/core'
2 import { Notifier, RedirectService } from '@app/core'
3 import { UserService } from '@app/shared'
4 import { AuthService } from '../core'
5 import { FormReactive } from '../shared'
6 import { I18n } from '@ngx-translate/i18n-polyfill'
7 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
8 import { LoginValidatorsService } from '@app/shared/forms/form-validators/login-validators.service'
9 import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'
10 import { ActivatedRoute } from '@angular/router'
11 import { ServerConfig, RegisteredExternalAuthConfig } from '@shared/models/server/server-config.model'
12 import { environment } from 'src/environments/environment'
16 templateUrl: './login.component.html',
17 styleUrls: [ './login.component.scss' ]
20 export class LoginComponent extends FormReactive implements OnInit, AfterViewInit {
21 @ViewChild('usernameInput', { static: false }) usernameInput: ElementRef
22 @ViewChild('forgotPasswordModal', { static: true }) forgotPasswordModal: ElementRef
25 forgotPasswordEmail = ''
26 isAuthenticatedWithExternalAuth = false
27 externalLogins: string[] = []
29 private openedForgotPasswordModal: NgbModalRef
30 private serverConfig: ServerConfig
33 protected formValidatorService: FormValidatorService,
34 private route: ActivatedRoute,
35 private modalService: NgbModal,
36 private loginValidatorsService: LoginValidatorsService,
37 private authService: AuthService,
38 private userService: UserService,
39 private redirectService: RedirectService,
40 private notifier: Notifier,
46 get signupAllowed () {
47 return this.serverConfig.signup.allowed === true
51 return this.serverConfig.email.enabled === false
55 const snapshot = this.route.snapshot
57 this.serverConfig = snapshot.data.serverConfig
59 if (snapshot.queryParams.externalAuthToken) {
60 this.loadExternalAuthToken(snapshot.queryParams.username, snapshot.queryParams.externalAuthToken)
65 username: this.loginValidatorsService.LOGIN_USERNAME,
66 password: this.loginValidatorsService.LOGIN_PASSWORD
71 if (this.usernameInput) {
72 this.usernameInput.nativeElement.focus()
76 getExternalLogins () {
77 return this.serverConfig.plugin.registeredExternalAuths
80 getAuthHref (auth: RegisteredExternalAuthConfig) {
81 return environment.apiUrl + `/plugins/${auth.name}/${auth.version}/auth/${auth.authName}`
87 const { username, password } = this.form.value
89 this.authService.login(username, password)
91 () => this.redirectService.redirectToPreviousRoute(),
93 err => this.handleError(err)
98 this.userService.askResetPassword(this.forgotPasswordEmail)
101 const message = this.i18n(
102 'An email with the reset password instructions will be sent to {{email}}. The link will expire within 1 hour.',
103 { email: this.forgotPasswordEmail }
105 this.notifier.success(message)
106 this.hideForgotPasswordModal()
109 err => this.notifier.error(err.message)
113 openForgotPasswordModal () {
114 this.openedForgotPasswordModal = this.modalService.open(this.forgotPasswordModal)
117 hideForgotPasswordModal () {
118 this.openedForgotPasswordModal.close()
121 private loadExternalAuthToken (username: string, token: string) {
122 this.isAuthenticatedWithExternalAuth = true
124 this.authService.login(username, null, token)
126 () => this.redirectService.redirectToPreviousRoute(),
129 this.handleError(err)
130 this.isAuthenticatedWithExternalAuth = false
135 private handleError (err: any) {
136 if (err.message.indexOf('credentials are invalid') !== -1) this.error = this.i18n('Incorrect username or password.')
137 else if (err.message.indexOf('blocked') !== -1) this.error = this.i18n('You account is blocked.')
138 else this.error = err.message