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

119 lines
3.4 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, Router, RouterStateSnapshot} from '@angular/router';
2020-05-20 10:07:34 +02:00
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 {
2020-07-29 13:14:29 +02:00
private pathPermissions = [
{path: 'templates', permission: 'dev'},
2020-08-10 16:15:17 +02:00
{path: 'changelog', permission: 'dev'},
2020-07-29 13:14:29 +02:00
{path: 'users', permission: 'admin'}
];
readonly levels = [
'read',
'write',
'dev',
'admin'
];
isLevel: {[level: string]: boolean} = {};
userId = '';
2020-07-27 17:52:03 +02:00
private loggedIn;
2020-05-20 10:07:34 +02:00
constructor(
private api: ApiService,
private storage: LocalStorageService,
private router: Router
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-07-29 13:14:29 +02:00
if (username !== '' || password !== '') { // some credentials given
let credentials: string[];
const credentialString: string = this.storage.get('basicAuth');
if (credentialString) { // found stored credentials
credentials = atob(credentialString).split(':');
}
else {
credentials = ['', ''];
}
if (username !== '' && password !== '') { // all credentials given
this.storage.set('basicAuth', btoa(username + ':' + password));
}
else if (username !== '') { // username given
this.storage.set('basicAuth', btoa(username + ':' + credentials[1]));
}
else if (password !== '') { // password given
this.storage.set('basicAuth', btoa(credentials[0] + ':' + password));
}
2020-05-22 12:52:17 +02:00
}
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;
this.levels.forEach(level => {
this.isLevel[level] = this.levels.indexOf(data.level) >= this.levels.indexOf(level);
});
this.userId = data.user_id;
2020-05-20 10:07:34 +02:00
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;
2020-08-24 12:43:39 +02:00
this.levels.forEach(level => {
this.isLevel[level] = false;
});
}
canActivate(route: ActivatedRouteSnapshot = null, state: RouterStateSnapshot = null): Observable<boolean> {
return new Observable<boolean>(observer => {
new Promise(resolve => {
2020-07-27 17:52:03 +02:00
if (this.loggedIn === undefined) {
this.login().then(res => {
resolve(res);
2020-07-27 17:52:03 +02:00
});
}
else {
resolve(this.loggedIn);
2020-07-27 17:52:03 +02:00
}
}).then(res => {
const pathPermission = this.pathPermissions.find(e => e.path.indexOf(route.url[0].path) >= 0);
const ok = res && (!pathPermission || this.isLevel[pathPermission.permission]); // check if level is permitted for path
observer.next(ok);
observer.complete();
if (!ok) {
this.router.navigate(['/']);
}
});
});
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
}