Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.6 KiB

import sessionStorage from '../sessionStorage';
import { longFromInts } from './bin_utils';
import { nextRandomInt } from '../../helpers/random';
4 years ago
export class TimeManager {
private lastMessageId = [0, 0];
4 years ago
private timeOffset = 0;
constructor() {
sessionStorage.get('server_time_offset').then((to: any) => {
4 years ago
if(to) {
this.timeOffset = to;
}
});
}
public generateId(): string {
const timeTicks = Date.now(),
4 years ago
timeSec = Math.floor(timeTicks / 1000) + this.timeOffset,
timeMSec = timeTicks % 1000,
random = nextRandomInt(0xFFFF);
let messageId = [timeSec, (timeMSec << 21) | (random << 3) | 4];
if(this.lastMessageId[0] > messageId[0] ||
this.lastMessageId[0] == messageId[0] && this.lastMessageId[1] >= messageId[1]) {
messageId = [this.lastMessageId[0], this.lastMessageId[1] + 4];
4 years ago
}
this.lastMessageId = messageId;
4 years ago
const ret = longFromInts(messageId[0], messageId[1]);
4 years ago
//console.log('[TimeManager]: Generated msg id', messageId, this.timeOffset, ret);
return ret
4 years ago
}
public applyServerTime(serverTime: number, localTime?: number) {
localTime = (localTime || Date.now()) / 1000 | 0;
const newTimeOffset = serverTime - localTime;
const changed = Math.abs(this.timeOffset - newTimeOffset) > 10;
sessionStorage.set({
4 years ago
server_time_offset: newTimeOffset
});
this.lastMessageId = [0, 0];
4 years ago
this.timeOffset = newTimeOffset;
//console.log('[TimeManager]: Apply server time', serverTime, localTime, newTimeOffset, changed);
4 years ago
return changed;
}
}
export default new TimeManager();