tweb/src/config/app.ts

37 lines
937 B
TypeScript
Raw Normal View History

2021-04-08 15:52:31 +02:00
/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*
* Originally from:
* https://github.com/zhukov/webogram
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
* https://github.com/zhukov/webogram/blob/master/LICENSE
*/
2021-06-20 19:07:20 +02:00
import type { DcId } from "../types";
2021-06-28 15:41:42 +02:00
export const MAIN_DOMAIN = 'web.telegram.org';
2021-02-13 16:32:10 +01:00
const App = {
id: +process.env.API_ID,
hash: process.env.API_HASH,
version: process.env.VERSION,
versionFull: process.env.VERSION_FULL,
2021-10-21 15:16:43 +02:00
build: +process.env.BUILD,
langPackVersion: '0.3.5',
langPack: 'macos',
langPackCode: 'en',
2021-06-28 15:41:42 +02:00
domains: [MAIN_DOMAIN] as string[],
2021-06-20 19:07:20 +02:00
baseDcId: 2 as DcId,
2021-06-28 15:41:42 +02:00
isMainDomain: location.hostname === MAIN_DOMAIN,
2021-06-11 14:15:28 +02:00
suffix: 'K'
2021-02-13 16:32:10 +01:00
};
2021-06-11 14:15:28 +02:00
if(App.isMainDomain) { // use Webogram credentials then
App.id = 2496;
App.hash = '8da85b0d5bfe62527e5b244c209159c3';
}
2021-02-13 16:32:10 +01:00
export default App;