OpenSlides/client/src/app/core/ui-services/count-users.service.ts
Sean c2406fcc03 Remove counting of IndexedDB and LocalStore
Mainly simplify the user counting component.

It seems that counting IndexedDB has no value anymore,
since even Firefox ESR uses IndexedDB just fine and the LS fallback
proves to be reliable enough
2020-03-25 12:18:57 +01:00

111 lines
3.5 KiB
TypeScript

import { Injectable } from '@angular/core';
import { Observable, Subject } from 'rxjs';
import { NotifyService } from '../core-services/notify.service';
import { OperatorService } from '../core-services/operator.service';
interface CountUserRequest {
token: string;
}
export interface CountUserData {
userId: number;
}
interface CountUserResponse extends CountUserRequest {
data: CountUserData;
}
const REQUEST_NAME = 'count-user-request';
const RESPONSE_NAME = 'count-user-response';
/**
* Provides functionality to count users with notify.
* Sends requests to all active instances, which (hopefully) respond to this message.
* Here, the answers will be collected and aggegated.
*/
@Injectable({
providedIn: 'root'
})
export class CountUsersService {
private activeCounts: { [token: string]: Subject<CountUserData> } = {};
private currentUserId: number;
/**
* Sets up all listeners
*
* @param notifyService
* @param operator
*/
public constructor(private notifyService: NotifyService, operator: OperatorService) {
// Listen for requests to send an answer.
this.notifyService.getMessageObservable<CountUserRequest>(REQUEST_NAME).subscribe(request => {
if (request.content.token) {
this.notifyService.sendToChannels<CountUserResponse>(
RESPONSE_NAME,
{
token: request.content.token,
data: {
userId: this.currentUserId
}
},
request.senderChannelName
);
}
});
// Listen for responses and distribute them through `activeCounts`
this.notifyService.getMessageObservable<CountUserResponse>(RESPONSE_NAME).subscribe(response => {
if (response.content.data && response.content.token && this.activeCounts[response.content.token]) {
this.activeCounts[response.content.token].next(response.content.data);
}
});
// Look for the current user.
operator.getUserObservable().subscribe(user => (this.currentUserId = user ? user.id : null));
}
/**
* @returns a generated track token to keep track of the counting.
*/
private generateTrackToken(): string {
let token = '';
const characters = '0123456789abcdef';
for (let i = 0; i < 32; i++) {
token += characters.charAt(Math.floor(Math.random() * characters.length));
}
return token;
}
/**
* Starts the counting process
*
* @returns a tuple: the first entry is a token, which can be used to stop the
* counting with `stopCounting`. The second entry is an observable, where all user
* ids will be published.
*/
public countUsers(): [string, Observable<CountUserData>] {
const trackToken = this.generateTrackToken();
const subject = new Subject<CountUserData>();
this.activeCounts[trackToken] = subject;
this.notifyService.sendToAllUsers<CountUserRequest>(REQUEST_NAME, {
token: trackToken
});
return [trackToken, this.activeCounts[trackToken].asObservable()];
}
/**
* Stops an active counting by the provided token
*
* @param token The count to stop
*/
public stopCounting(trackToken: string): void {
if (this.activeCounts[trackToken]) {
this.activeCounts[trackToken].complete();
delete this.activeCounts[trackToken];
}
}
}