32 lines
885 B
TypeScript
32 lines
885 B
TypeScript
|
import throat from 'throat';
|
||
|
import Bluebird from 'bluebird';
|
||
|
import { IpcMainEvent } from 'electron';
|
||
|
import log from 'electron-log'; //tslint:disable-line:match-default-export-name
|
||
|
|
||
|
const adCoordinatorThroat = throat(1);
|
||
|
|
||
|
|
||
|
export class AdCoordinatorHost {
|
||
|
static readonly MIN_DISTANCE = 5000;
|
||
|
private lastPost = Date.now();
|
||
|
|
||
|
async processAdRequest(event: IpcMainEvent, adId: string) {
|
||
|
await adCoordinatorThroat(
|
||
|
async() => {
|
||
|
const sinceLastPost = Date.now() - this.lastPost;
|
||
|
const waitTime = Math.max(0, AdCoordinatorHost.MIN_DISTANCE - sinceLastPost);
|
||
|
|
||
|
log.debug('adid.request.host', {adId, sinceLastPost, waitTime});
|
||
|
|
||
|
await Bluebird.delay(waitTime);
|
||
|
|
||
|
log.debug('adid.request.host.grant', {adId, sinceLastPost, waitTime});
|
||
|
|
||
|
event.reply('grant-send-ad', adId);
|
||
|
|
||
|
this.lastPost = Date.now();
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
}
|