37 lines
937 B
TypeScript
Raw Normal View History

2021-04-08 17:52:31 +04: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 20:07:20 +03:00
import type { DcId } from "../types";
2021-06-28 16:41:42 +03:00
export const MAIN_DOMAIN = 'web.telegram.org';
2021-02-13 19:32:10 +04: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 17:16:43 +04:00
build: +process.env.BUILD,
2021-11-13 05:30:37 +04:00
langPackVersion: '0.3.6',
langPack: 'macos',
langPackCode: 'en',
2021-06-28 16:41:42 +03:00
domains: [MAIN_DOMAIN] as string[],
2021-06-20 20:07:20 +03:00
baseDcId: 2 as DcId,
2021-06-28 16:41:42 +03:00
isMainDomain: location.hostname === MAIN_DOMAIN,
2021-06-11 15:15:28 +03:00
suffix: 'K'
2021-02-13 19:32:10 +04:00
};
2021-06-11 15:15:28 +03:00
if(App.isMainDomain) { // use Webogram credentials then
App.id = 2496;
App.hash = '8da85b0d5bfe62527e5b244c209159c3';
}
2021-02-13 19:32:10 +04:00
export default App;