import fetch from "flumm-fetch-cookies"; import EventEmitter from "events"; export default class tg extends EventEmitter { constructor(options) { super(); this.options = options || {}; this.token = options.token || null; this.options.pollrate = options.pollrate || 1000; this.set = this.options.set || "all"; this.network = "Telegram"; this.api = `https://api.telegram.org/bot${this.token}`; this.lastUpdate = 0; this.lastMessage = 0; this.poller = null; this.server = { set: this.set, channel: new Map(), user: new Map(), me: {} }; return (async () => { await this.connect(); await this.poll(); return this; })(); } async connect() { const res = await (await fetch(`${this.api}/getMe`)).json(); if (!res.ok) throw this.emit("data", ["error", res.description]); // more infos this.me = res.result; this.server.me = { nickname: res.result.first_name, username: res.result.username, account: res.result.id.toString(), prefix: `${res.result.username}!${res.result.id.toString()}`, id: res.result.id.toString() }; } async poll() { try { let res = await (await fetch(`${this.api}/getUpdates?offset=${this.lastUpdate}&allowed_updates=message`)).json(); if (!res.ok) return this.emit("data", ["error", res.description]); if (res.result.length === 0) return; res = res.result[res.result.length - 1]; this.lastUpdate = res.update_id + 1; if (res.message.date >= ~~(Date.now() / 1000) - 10 && res.message.message_id !== this.lastMessage) { this.lastMessage = res.message.message_id; if (!this.server.user.has(res.message.from.username || res.message.from.first_name)) { this.server.user.set(res.message.from.username || res.message.from.first_name, { nick: res.message.from.first_name, username: res.message.from.username, account: res.message.from.id.toString(), prefix: `${res.message.from.username}!${res.message.from.id.toString()}`, id: res.message.from.id }); } return this.emit("data", ["message", this.reply(res.message)]); } } catch { return this.emit("data", ["error", "tg timed out lol"]); } finally { setTimeout(async () => { await this.poll(); }, this.options.pollrate); } } async send(chatid, msg, reply = null) { if (msg.length === 0 || msg.length > 2048) return this.emit("data", ["error", "msg to short or to long lol"]); const opts = { method: "POST", body: { chat_id: chatid, text: msg.split("\n").length > 1 ? `${msg}` : msg, parse_mode: "HTML" } }; if (reply) opts.body.reply_to_message_id = reply; await fetch(`${this.api}/sendMessage`, opts); } async sendmsg(mode, recipient, msg) { await this.send(recipient, msg); } reply(tmp) { return { type: "tg", network: "Telegram", channel: tmp.chat.title, channelid: tmp.chat.id, user: { prefix: `${tmp.from.username}!${tmp.from.id}`, nick: tmp.from.first_name, username: tmp.from.username, account: tmp.from.id.toString() }, self: this.server, message: tmp.text, time: tmp.date, raw: tmp, reply: msg => this.send(tmp.chat.id, this.format(msg), tmp.message_id), replyAction: msg => this.send(tmp.chat.id, this.format(`Uwe ${msg}`), tmp.message_id), replyNotice: msg => this.send(tmp.chat.id, this.format(msg), tmp.message_id), _user: this.server.user }; } format(msg) { return msg.toString() .split("<").join("<") .split(">").join(">") .replace(/\[b\](.*?)\[\/b\]/g, "$1") // bold .replace(/\[i\](.*?)\[\/i\]/g, "$1") // italic .replace(/\[color=(.*?)](.*?)\[\/color\]/g, "$2") ; } }