2020-08-05 15:39:16 +01:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
import { Router } from '@angular/router';
|
2020-08-06 14:31:07 +01:00
|
|
|
import { AuthService } from 'src/app/services/auth.service';
|
2021-07-01 09:52:36 +01:00
|
|
|
import { UserForm } from 'src/app/models/user.model';
|
2020-08-21 10:44:43 +01:00
|
|
|
import { ToastService } from 'src/app/services/toast.service';
|
2020-08-24 12:55:10 +01:00
|
|
|
import { environment } from 'src/environments/environment';
|
2021-07-01 09:52:36 +01:00
|
|
|
import { AlertController } from '@ionic/angular';
|
2021-11-05 07:49:01 +01:00
|
|
|
import { NotificationsService } from 'src/app/services/notifications.service';
|
2021-08-27 13:39:52 +01:00
|
|
|
import { SessionStore } from 'src/app/store/session.service';
|
2021-09-27 16:23:41 +01:00
|
|
|
import { ClearStoreService } from 'src/app/services/clear-store.service';
|
2021-09-28 11:31:10 +01:00
|
|
|
import { ChangeProfileService } from 'src/app/services/change-profile.service';
|
2021-10-26 15:27:25 +01:00
|
|
|
import { ThemeService } from 'src/app/services/theme.service';
|
2021-11-15 15:29:43 +01:00
|
|
|
import { StorageService } from 'src/app/services/storage.service';
|
2022-03-29 16:49:51 +01:00
|
|
|
import { PermissionService } from 'src/app/services/permission.service';
|
2022-03-30 15:08:23 +01:00
|
|
|
import { PermissionList } from 'src/app/models/permission/permissionList';
|
2022-07-21 18:05:29 +01:00
|
|
|
import { MessageModel, DeleteMessageModel } from '../../models/beast-orm';
|
|
|
|
|
import { WsChatService } from 'src/app/services/chat/ws-chat.service';
|
|
|
|
|
import { Storage } from '@ionic/storage';
|
|
|
|
|
import { WsChatMethodsService } from 'src/app/services/chat/ws-chat-methods.service';
|
2020-08-05 15:39:16 +01:00
|
|
|
@Component({
|
|
|
|
|
selector: 'app-login',
|
|
|
|
|
templateUrl: './login.page.html',
|
|
|
|
|
styleUrls: ['./login.page.scss'],
|
|
|
|
|
})
|
|
|
|
|
export class LoginPage implements OnInit {
|
|
|
|
|
|
2020-08-19 23:47:11 +01:00
|
|
|
logstatus: boolean;
|
2021-09-02 12:17:14 +01:00
|
|
|
username: string = SessionStore.user.Email || environment.defaultuser;
|
2020-08-24 12:55:10 +01:00
|
|
|
password: string = environment.defaultuserpwd;
|
2021-05-10 14:53:46 +01:00
|
|
|
userattempt: UserForm;
|
2021-05-28 14:41:56 +01:00
|
|
|
code = []
|
|
|
|
|
|
2021-07-01 09:52:36 +01:00
|
|
|
hasPin: boolean
|
|
|
|
|
loginPreference: string
|
2021-08-27 13:39:52 +01:00
|
|
|
|
2022-03-29 16:49:51 +01:00
|
|
|
sessionStore = SessionStore;
|
|
|
|
|
permissionList = new PermissionList();
|
2022-05-02 16:19:59 +01:00
|
|
|
showPassword = false;
|
|
|
|
|
passwordIcon = "eye";
|
2020-08-06 14:31:07 +01:00
|
|
|
|
2020-08-11 04:11:42 +01:00
|
|
|
constructor(
|
2021-11-05 07:49:01 +01:00
|
|
|
private notificatinsservice: NotificationsService,
|
2021-01-22 16:03:05 +01:00
|
|
|
private router: Router,
|
2020-08-21 10:44:43 +01:00
|
|
|
private authService: AuthService,
|
2020-08-25 10:37:41 +01:00
|
|
|
private toastService: ToastService,
|
2021-09-21 06:09:41 +01:00
|
|
|
public alertController: AlertController,
|
2021-09-28 11:31:10 +01:00
|
|
|
private clearStoreService: ClearStoreService,
|
2021-10-21 15:47:00 +01:00
|
|
|
private changeProfileService: ChangeProfileService,
|
2021-10-27 07:11:58 +01:00
|
|
|
public ThemeService: ThemeService,
|
2022-03-29 16:49:51 +01:00
|
|
|
private storageservice: StorageService,
|
2022-04-05 17:10:23 +01:00
|
|
|
public p: PermissionService,
|
2022-07-21 18:05:29 +01:00
|
|
|
private WsChatService: WsChatService,
|
|
|
|
|
private storage: Storage,
|
|
|
|
|
public WsChatMethodsService: WsChatMethodsService,
|
2021-10-21 15:47:00 +01:00
|
|
|
) {}
|
2021-07-01 09:52:36 +01:00
|
|
|
|
2021-09-21 06:09:41 +01:00
|
|
|
ngOnInit() {
|
2021-10-26 15:27:25 +01:00
|
|
|
this.storageservice.get('theme').then((theme) =>{
|
2022-04-28 09:32:27 +01:00
|
|
|
|
2021-10-27 07:11:58 +01:00
|
|
|
this.ThemeService.setTheme(theme)
|
2021-10-26 15:27:25 +01:00
|
|
|
})
|
2021-09-21 06:09:41 +01:00
|
|
|
}
|
2021-05-28 14:41:56 +01:00
|
|
|
|
2022-05-02 16:19:59 +01:00
|
|
|
togglePassword() {
|
|
|
|
|
this.showPassword = !this.showPassword;
|
|
|
|
|
|
|
|
|
|
if(this.passwordIcon == "eye") {
|
|
|
|
|
this.passwordIcon = "eye-off";
|
|
|
|
|
} else {
|
|
|
|
|
this.passwordIcon = "eye";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-11-24 13:46:13 +01:00
|
|
|
//Function to validade the login inputs
|
2021-06-09 13:34:55 +01:00
|
|
|
validateUsername() {
|
2020-08-06 14:31:07 +01:00
|
|
|
return (
|
2021-01-22 16:03:05 +01:00
|
|
|
this.username.trim().length > 0
|
2021-06-09 13:34:55 +01:00
|
|
|
);
|
|
|
|
|
}
|
2021-07-22 14:40:29 +01:00
|
|
|
|
2021-06-09 13:34:55 +01:00
|
|
|
validatePassword() {
|
|
|
|
|
return (
|
|
|
|
|
this.password.trim().length > 0
|
2021-01-22 16:03:05 +01:00
|
|
|
);
|
2020-08-07 10:31:33 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-22 16:03:05 +01:00
|
|
|
async presentAlert(message: string) {
|
2020-08-25 10:37:41 +01:00
|
|
|
const alert = await this.alertController.create({
|
|
|
|
|
cssClass: 'my-custom-class',
|
|
|
|
|
header: 'Mensagem do sistema',
|
|
|
|
|
message: message,
|
|
|
|
|
buttons: ['OK']
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await alert.present();
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-09 09:48:14 +01:00
|
|
|
getToken() {
|
2021-11-05 07:49:01 +01:00
|
|
|
this.notificatinsservice.requestPermissions();
|
|
|
|
|
this.notificatinsservice.registrationError();
|
|
|
|
|
this.notificatinsservice.getAndpostToken(this.username);
|
2021-04-09 09:48:14 +01:00
|
|
|
}
|
2021-01-22 16:03:05 +01:00
|
|
|
|
|
|
|
|
async Login() {
|
2021-05-31 14:21:19 +01:00
|
|
|
|
2021-06-09 13:34:55 +01:00
|
|
|
if (this.validateUsername()) {
|
2021-08-20 18:02:50 +01:00
|
|
|
if(this.validatePassword()) {
|
2021-07-01 09:52:36 +01:00
|
|
|
|
2021-06-09 13:34:55 +01:00
|
|
|
this.userattempt = {
|
2022-05-02 16:19:59 +01:00
|
|
|
username: this.username.trim(),
|
|
|
|
|
password: this.password.trim(),
|
2021-06-09 13:34:55 +01:00
|
|
|
domainName: environment.domain,
|
|
|
|
|
BasicAuthKey: ""
|
2021-05-31 14:21:19 +01:00
|
|
|
}
|
2021-12-29 15:48:35 +01:00
|
|
|
|
2021-09-27 16:23:41 +01:00
|
|
|
const loader = this.toastService.loading()
|
2021-09-02 12:17:14 +01:00
|
|
|
|
|
|
|
|
let attempt = await this.authService.login(this.userattempt, {saveSession: false})
|
2021-07-22 14:40:29 +01:00
|
|
|
|
2021-09-27 16:23:41 +01:00
|
|
|
loader.remove()
|
2021-12-29 15:48:35 +01:00
|
|
|
|
2021-06-09 14:00:14 +01:00
|
|
|
if (attempt) {
|
2022-01-14 10:35:54 +01:00
|
|
|
if (attempt.UserId == SessionStore.user.UserId) {
|
2022-03-29 16:49:51 +01:00
|
|
|
|
2021-09-02 12:17:14 +01:00
|
|
|
await this.authService.SetSession(attempt, this.userattempt);
|
2022-04-05 17:10:23 +01:00
|
|
|
|
2022-05-09 15:01:23 +01:00
|
|
|
if(attempt.ChatData) {
|
2022-04-16 19:23:44 +01:00
|
|
|
await this.authService.loginChat(attempt.ChatData.data);
|
2022-04-21 17:00:15 +01:00
|
|
|
|
2022-06-24 16:19:28 +01:00
|
|
|
await this.authService.loginToChatWs();
|
|
|
|
|
|
2022-04-19 16:48:06 +01:00
|
|
|
}
|
2022-04-05 17:10:23 +01:00
|
|
|
|
2021-09-02 12:17:14 +01:00
|
|
|
this.getToken();
|
2021-09-21 06:09:41 +01:00
|
|
|
SessionStore.setInativity(true);
|
2021-12-29 15:48:35 +01:00
|
|
|
|
2022-03-29 16:49:51 +01:00
|
|
|
this.goback();
|
|
|
|
|
|
2021-09-02 12:17:14 +01:00
|
|
|
} else {
|
2021-09-27 16:23:41 +01:00
|
|
|
|
2022-07-21 18:05:29 +01:00
|
|
|
this.WsChatService.logout();
|
2022-03-29 16:49:51 +01:00
|
|
|
this.clearStoreService.clear();
|
2022-07-21 18:05:29 +01:00
|
|
|
this.WsChatMethodsService.clearChat();
|
2022-03-29 16:49:51 +01:00
|
|
|
SessionStore.delete();
|
2021-09-02 12:17:14 +01:00
|
|
|
window.localStorage.clear();
|
2022-04-24 20:05:04 +01:00
|
|
|
await MessageModel.deleteAll()
|
|
|
|
|
await DeleteMessageModel.deleteAll()
|
2021-09-28 11:31:10 +01:00
|
|
|
|
2021-09-02 12:17:14 +01:00
|
|
|
await this.authService.SetSession(attempt, this.userattempt);
|
2021-12-29 15:48:35 +01:00
|
|
|
|
2022-03-29 16:49:51 +01:00
|
|
|
this.changeProfileService.run();
|
2022-04-02 09:40:09 +01:00
|
|
|
|
2022-04-28 09:32:27 +01:00
|
|
|
|
2022-05-09 15:01:23 +01:00
|
|
|
if(attempt.ChatData) {
|
2022-04-16 19:23:44 +01:00
|
|
|
await this.authService.loginChat(attempt.ChatData.data);
|
2022-04-05 17:10:23 +01:00
|
|
|
await this.authService.loginToChatWs();
|
2022-04-19 16:48:06 +01:00
|
|
|
}
|
2022-04-05 17:10:23 +01:00
|
|
|
|
2021-10-13 08:38:11 +01:00
|
|
|
this.getToken();
|
2022-03-29 16:49:51 +01:00
|
|
|
|
2022-04-02 09:40:09 +01:00
|
|
|
this.router.navigateByUrl('/pin', { replaceUrl: true });
|
2021-09-02 12:17:14 +01:00
|
|
|
}
|
2022-02-16 13:52:32 +01:00
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.toastService._badRequest('Ocorreu um problema por favor valide o username e password');
|
2021-06-09 13:34:55 +01:00
|
|
|
}
|
2021-01-22 16:03:05 +01:00
|
|
|
}
|
2021-07-01 09:52:36 +01:00
|
|
|
else {
|
2021-11-09 15:37:59 +01:00
|
|
|
this.toastService._badRequest('Por favor, insira a sua palavra-passe');
|
2021-02-25 10:47:13 +01:00
|
|
|
}
|
2021-01-22 16:03:05 +01:00
|
|
|
}
|
|
|
|
|
else {
|
2021-11-09 15:37:59 +01:00
|
|
|
this.toastService._badRequest('Por favor, insira o seu nome de utilizador');
|
2021-01-22 16:03:05 +01:00
|
|
|
}
|
2022-04-07 14:24:07 +01:00
|
|
|
|
2022-04-07 15:57:22 +01:00
|
|
|
|
2020-08-05 15:39:16 +01:00
|
|
|
}
|
2021-05-28 14:41:56 +01:00
|
|
|
|
2021-09-02 12:17:14 +01:00
|
|
|
goback() {
|
|
|
|
|
const pathName = SessionStore.user.UrlBeforeInactivity
|
|
|
|
|
if(pathName) {
|
|
|
|
|
this.router.navigate([pathName]);
|
|
|
|
|
} else {
|
2022-04-07 15:57:22 +01:00
|
|
|
if(this.p.userPermission(this.p.permissionList.Agenda.access) || this.p.userPermission(this.p.permissionList.Gabinete.access)){
|
2022-04-08 10:57:38 +01:00
|
|
|
//When user has got access to Agenda but does not have their own calendar, goes to Agenda
|
|
|
|
|
if(this.p.userPermission(this.p.permissionList.Agenda.access) && SessionStore.user.OwnerCalendars.length == 0){
|
|
|
|
|
this.router.navigate(['/home/agenda']);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.router.navigate(['/home/events']);
|
|
|
|
|
}
|
2022-03-29 16:49:51 +01:00
|
|
|
}
|
2022-04-08 10:57:38 +01:00
|
|
|
//If user has access permission to both Chat and Action, goes to Chat by default.
|
2022-04-07 17:51:47 +01:00
|
|
|
else if((this.p.userPermission(this.p.permissionList.Chat.access) && this.p.userPermission(this.p.permissionList.Actions.access)) || this.p.userPermission(this.p.permissionList.Chat.access)){
|
2022-03-29 16:49:51 +01:00
|
|
|
this.router.navigate(['/home/chat']);
|
|
|
|
|
}
|
2022-04-07 15:57:22 +01:00
|
|
|
else if(this.p.userPermission(this.p.permissionList.Actions.access)){
|
2022-03-29 16:49:51 +01:00
|
|
|
this.router.navigate(['/home/publications']);
|
|
|
|
|
}
|
2021-09-02 12:17:14 +01:00
|
|
|
}
|
2021-09-02 13:22:10 +01:00
|
|
|
|
2021-09-02 12:17:14 +01:00
|
|
|
}
|
|
|
|
|
|
2021-07-22 14:40:29 +01:00
|
|
|
}
|