* Use null coalescing for comicinfo * Removed Sentry. The integrations were not providing any userful information. * Updated to the latest versions of dependencies
142 lines
4.1 KiB
TypeScript
142 lines
4.1 KiB
TypeScript
import { HttpClient } from '@angular/common/http';
|
|
import { Injectable, OnDestroy } from '@angular/core';
|
|
import { Observable, ReplaySubject, Subject } from 'rxjs';
|
|
import { map, takeUntil } from 'rxjs/operators';
|
|
import { environment } from 'src/environments/environment';
|
|
import { Preferences } from '../_models/preferences/preferences';
|
|
import { User } from '../_models/user';
|
|
import { Router } from '@angular/router';
|
|
import { MessageHubService } from './message-hub.service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class AccountService implements OnDestroy {
|
|
|
|
baseUrl = environment.apiUrl;
|
|
userKey = 'kavita-user';
|
|
public lastLoginKey = 'kavita-lastlogin';
|
|
currentUser: User | undefined;
|
|
|
|
// Stores values, when someone subscribes gives (1) of last values seen.
|
|
private currentUserSource = new ReplaySubject<User>(1);
|
|
currentUser$ = this.currentUserSource.asObservable();
|
|
|
|
private readonly onDestroy = new Subject<void>();
|
|
|
|
constructor(private httpClient: HttpClient, private router: Router,
|
|
private messageHub: MessageHubService) {}
|
|
|
|
ngOnDestroy(): void {
|
|
this.onDestroy.next();
|
|
this.onDestroy.complete();
|
|
}
|
|
|
|
hasAdminRole(user: User) {
|
|
return user && user.roles.includes('Admin');
|
|
}
|
|
|
|
hasDownloadRole(user: User) {
|
|
return user && user.roles.includes('Download');
|
|
}
|
|
|
|
getRoles() {
|
|
return this.httpClient.get<string[]>(this.baseUrl + 'account/roles');
|
|
}
|
|
|
|
login(model: any): Observable<any> {
|
|
return this.httpClient.post<User>(this.baseUrl + 'account/login', model).pipe(
|
|
map((response: User) => {
|
|
const user = response;
|
|
if (user) {
|
|
this.setCurrentUser(user);
|
|
this.messageHub.createHubConnection(user, this.hasAdminRole(user));
|
|
}
|
|
}),
|
|
takeUntil(this.onDestroy)
|
|
);
|
|
}
|
|
|
|
setCurrentUser(user?: User) {
|
|
if (user) {
|
|
user.roles = [];
|
|
const roles = this.getDecodedToken(user.token).role;
|
|
Array.isArray(roles) ? user.roles = roles : user.roles.push(roles);
|
|
|
|
localStorage.setItem(this.userKey, JSON.stringify(user));
|
|
localStorage.setItem(this.lastLoginKey, user.username);
|
|
}
|
|
|
|
this.currentUserSource.next(user);
|
|
this.currentUser = user;
|
|
}
|
|
|
|
logout() {
|
|
localStorage.removeItem(this.userKey);
|
|
this.currentUserSource.next(undefined);
|
|
this.currentUser = undefined;
|
|
// Upon logout, perform redirection
|
|
this.router.navigateByUrl('/login');
|
|
this.messageHub.stopHubConnection();
|
|
}
|
|
|
|
register(model: {username: string, password: string, isAdmin?: boolean}) {
|
|
if (!model.hasOwnProperty('isAdmin')) {
|
|
model.isAdmin = false;
|
|
}
|
|
|
|
return this.httpClient.post<User>(this.baseUrl + 'account/register', model).pipe(
|
|
map((user: User) => {
|
|
return user;
|
|
}),
|
|
takeUntil(this.onDestroy)
|
|
);
|
|
}
|
|
|
|
getDecodedToken(token: string) {
|
|
return JSON.parse(atob(token.split('.')[1]));
|
|
}
|
|
|
|
resetPassword(username: string, password: string) {
|
|
return this.httpClient.post(this.baseUrl + 'account/reset-password', {username, password}, {responseType: 'json' as 'text'});
|
|
}
|
|
|
|
updatePreferences(userPreferences: Preferences) {
|
|
return this.httpClient.post<Preferences>(this.baseUrl + 'users/update-preferences', userPreferences).pipe(map(settings => {
|
|
if (this.currentUser !== undefined || this.currentUser != null) {
|
|
this.currentUser.preferences = settings;
|
|
this.setCurrentUser(this.currentUser);
|
|
}
|
|
return settings;
|
|
}), takeUntil(this.onDestroy));
|
|
}
|
|
|
|
getUserFromLocalStorage(): User | undefined {
|
|
|
|
const userString = localStorage.getItem(this.userKey);
|
|
|
|
if (userString) {
|
|
return JSON.parse(userString)
|
|
};
|
|
|
|
return undefined;
|
|
}
|
|
|
|
resetApiKey() {
|
|
return this.httpClient.post<string>(this.baseUrl + 'account/reset-api-key', {}, {responseType: 'text' as 'json'}).pipe(map(key => {
|
|
const user = this.getUserFromLocalStorage();
|
|
if (user) {
|
|
user.apiKey = key;
|
|
|
|
localStorage.setItem(this.userKey, JSON.stringify(user));
|
|
|
|
this.currentUserSource.next(user);
|
|
this.currentUser = user;
|
|
}
|
|
return key;
|
|
}));
|
|
|
|
|
|
}
|
|
|
|
}
|