definma-ui/src/app/services/login.service.ts

73 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-05-20 10:07:34 +02:00
import { Injectable } from '@angular/core';
import {ApiService} from './api.service';
import {ActivatedRouteSnapshot, CanActivate, RouterStateSnapshot} from '@angular/router';
import {LocalStorageService} from 'angular-2-local-storage';
import {Observable} from 'rxjs';
2020-05-20 10:07:34 +02:00
@Injectable({
providedIn: 'root'
})
export class LoginService implements CanActivate {
private loggedIn;
2020-05-20 10:07:34 +02:00
constructor(
private api: ApiService,
private storage: LocalStorageService
2020-05-22 12:52:17 +02:00
) {
2020-05-22 12:52:17 +02:00
}
2020-05-20 10:07:34 +02:00
2020-05-22 12:52:17 +02:00
login(username = '', password = '') {
2020-05-20 10:07:34 +02:00
return new Promise(resolve => {
2020-05-22 12:52:17 +02:00
if (username !== '') {
this.storage.set('basicAuth', btoa(username + ':' + password));
}
this.api.get('/authorized', (data: any, error) => {
if (!error) {
2020-05-20 10:07:34 +02:00
if (data.status === 'Authorization successful') {
this.loggedIn = true;
resolve(true);
} else {
2020-05-20 10:07:34 +02:00
this.loggedIn = false;
this.storage.remove('basicAuth');
resolve(false);
}
} else {
2020-05-20 10:07:34 +02:00
this.loggedIn = false;
this.storage.remove('basicAuth');
resolve(false);
}
});
2020-05-20 10:07:34 +02:00
});
}
logout() {
this.storage.remove('basicAuth');
this.loggedIn = false;
}
canActivate(route: ActivatedRouteSnapshot = null, state: RouterStateSnapshot = null): Observable<boolean> {
return new Observable<boolean>(observer => {
if (this.loggedIn === undefined) {
this.login().then(res => {
observer.next(res as any);
observer.complete();
});
}
else {
observer.next(this.loggedIn);
observer.complete();
}
});
2020-05-20 10:07:34 +02:00
}
2020-07-13 10:52:10 +02:00
get isLoggedIn() {
return this.loggedIn;
}
get username() {
return atob(this.storage.get('basicAuth')).split(':')[0];
}
2020-05-20 10:07:34 +02:00
}