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.
 
 
 
 
 

85 lines
2.5 KiB

import MTTransport from './transports/transport';
import { Modes } from './mtproto_config';
/// #if !MTPROTO_HTTP
import Socket from './transports/websocket';
/// #else
import HTTP from './transports/http';
/// #endif
type Servers = {
[dcID: number]: MTTransport[]
};
export class DcConfigurator {
private sslSubdomains = ['pluto', 'venus', 'aurora', 'vesta', 'flora'];
private dcOptions = Modes.test
? [
{id: 1, host: '149.154.175.10', port: 80},
{id: 2, host: '149.154.167.40', port: 80},
{id: 3, host: '149.154.175.117', port: 80}
]
: [
{id: 1, host: '149.154.175.50', port: 80},
{id: 2, host: '149.154.167.50', port: 80},
{id: 3, host: '149.154.175.100', port: 80},
{id: 4, host: '149.154.167.91', port: 80},
{id: 5, host: '149.154.171.5', port: 80}
];
private chosenServers: Servers = {};
private chosenUploadServers: Servers = {};
public chooseServer(dcID: number, upload?: boolean) {
const servers = upload && Modes.multipleConnections
? this.chosenUploadServers
: this.chosenServers;
if(!(dcID in servers)) {
servers[dcID] = [];
}
const transports = servers[dcID];
if(!transports.length || (upload && transports.length < 1)) {
let transport: MTTransport;
/// #if !MTPROTO_HTTP
//if(transportType == 'websocket') {
const subdomain = this.sslSubdomains[dcID - 1];
const path = Modes.test ? 'apiws_test' : 'apiws';
const chosenServer = 'wss://' + subdomain + '.web.telegram.org/' + path;
transport = new Socket(dcID, chosenServer, upload ? '-U' : '');
//} else
/// #else
// @ts-ignore
if(Modes.ssl || !Modes.http) {
const subdomain = this.sslSubdomains[dcID - 1] + (upload ? '-1' : '');
const path = Modes.test ? 'apiw_test1' : 'apiw1';
const chosenServer = 'https://' + subdomain + '.web.telegram.org/' + path;
transport = new HTTP(dcID, chosenServer);
} else {
for(let dcOption of this.dcOptions) {
if(dcOption.id == dcID) {
const chosenServer = 'http://' + dcOption.host + (dcOption.port != 80 ? ':' + dcOption.port : '') + '/apiw1';
transport = new HTTP(dcID, chosenServer);
break;
}
}
}
/// #endif
if(!transport) {
console.error('No chosenServer!', dcID);
return null;
}
transports.push(transport);
return transport;
}
return transports[0];
}
}
export default new DcConfigurator();