mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 12:49:57 +00:00
Small updates
This commit is contained in:
parent
05eddc7734
commit
7f93f53cd6
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
|||||||
node_modules
|
node_modules
|
||||||
__pycache__
|
__pycache__
|
||||||
!requirements.txt
|
!requirements.txt
|
||||||
|
props/config.json
|
@ -14,7 +14,7 @@ First, [make a fork of this repo](https://github.com/lucmsilva651/lynx/fork), or
|
|||||||
```
|
```
|
||||||
git clone https://github.com/lucmsilva651/lynx
|
git clone https://github.com/lucmsilva651/lynx
|
||||||
```
|
```
|
||||||
Next, go to the repository directory, create a ``config.env`` file and put the content below:
|
Next, go to the repository directory, create a ``Config.env`` file and put the content below:
|
||||||
```
|
```
|
||||||
TGBOT_TOKEN="0000000000:AAAaaAAaaaaAaAaaAAAaaaAaaaaAAAAAaaa"
|
TGBOT_TOKEN="0000000000:AAAaaAAaaaaAaAaaAAAaaaAaaaaAAAAAaaa"
|
||||||
TGBOT_ADMINS=[0000000000, 1111111111, 2222222222]
|
TGBOT_ADMINS=[0000000000, 1111111111, 2222222222]
|
||||||
|
4
bot.js
4
bot.js
@ -1,7 +1,7 @@
|
|||||||
const { Telegraf } = require('telegraf');
|
const { Telegraf } = require('telegraf');
|
||||||
const config = require('./props/config.json');
|
const Config = require('./props/config.json');
|
||||||
|
|
||||||
const bot = new Telegraf(config.botToken);
|
const bot = new Telegraf(Config.botToken);
|
||||||
|
|
||||||
const loadCommands = () => {
|
const loadCommands = () => {
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
@ -1,5 +1,38 @@
|
|||||||
const Strings = require('../locales/english.json');
|
const Strings = require('../locales/english.json');
|
||||||
|
const Config = require('../props/config.json');
|
||||||
|
const os = require('os');
|
||||||
|
|
||||||
|
function formatUptime(uptime) {
|
||||||
|
const hours = Math.floor(uptime / 3600);
|
||||||
|
const minutes = Math.floor((uptime % 3600) / 60);
|
||||||
|
const seconds = Math.floor(uptime % 60);
|
||||||
|
return `${hours}h ${minutes}m ${seconds}s`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSystemInfo() {
|
||||||
|
const platform = os.platform();
|
||||||
|
const release = os.release();
|
||||||
|
const arch = os.arch();
|
||||||
|
const cpuModel = os.cpus()[0].model;
|
||||||
|
const cpuCores = os.cpus().length;
|
||||||
|
const totalMemory = (os.totalmem() / (1024 ** 3)).toFixed(2) + ' GB';
|
||||||
|
const freeMemory = (os.freemem() / (1024 ** 3)).toFixed(2) + ' GB';
|
||||||
|
const loadAverage = os.loadavg().map(avg => avg.toFixed(2)).join(', ');
|
||||||
|
const uptime = formatUptime(os.uptime());
|
||||||
|
const nodeVersion = process.version;
|
||||||
|
|
||||||
|
return `*Server Stats*\n\n` +
|
||||||
|
`*OS:* \`${platform} ${release}\`\n` +
|
||||||
|
`*Arch:* \`${arch}\`\n` +
|
||||||
|
`*Node.js Version:* \`${nodeVersion}\`\n` +
|
||||||
|
`*CPU:* \`${cpuModel}\`\n` +
|
||||||
|
`*CPU Cores:* \`${cpuCores} cores\`\n` +
|
||||||
|
`*RAM:* \`${freeMemory} / ${totalMemory}\`\n` +
|
||||||
|
`*Load Average:* \`${loadAverage}\`\n` +
|
||||||
|
`*Uptime:* \`${uptime}\`\n\n`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Função para obter informações do usuário
|
||||||
async function getUserInfo(ctx) {
|
async function getUserInfo(ctx) {
|
||||||
let userInfoTemplate = Strings.userInfo;
|
let userInfoTemplate = Strings.userInfo;
|
||||||
|
|
||||||
@ -21,6 +54,7 @@ async function getUserInfo(ctx) {
|
|||||||
return userInfoTemplate;
|
return userInfoTemplate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Função para obter informações do chat
|
||||||
async function getChatInfo(ctx) {
|
async function getChatInfo(ctx) {
|
||||||
if (ctx.chat.type === 'group' || ctx.chat.type === 'supergroup') {
|
if (ctx.chat.type === 'group' || ctx.chat.type === 'supergroup') {
|
||||||
let chatInfoTemplate = Strings.chatInfo;
|
let chatInfoTemplate = Strings.chatInfo;
|
||||||
@ -30,7 +64,6 @@ async function getChatInfo(ctx) {
|
|||||||
const chatHandle = ctx.chat.username ? `@${ctx.chat.username}` : Strings.varNone;
|
const chatHandle = ctx.chat.username ? `@${ctx.chat.username}` : Strings.varNone;
|
||||||
const chatType = ctx.chat.type || Strings.unKnown;
|
const chatType = ctx.chat.type || Strings.unKnown;
|
||||||
|
|
||||||
// Aguarde a contagem de membros ser resolvida
|
|
||||||
const chatMembersCount = await ctx.telegram.getChatMembersCount(chatId);
|
const chatMembersCount = await ctx.telegram.getChatMembersCount(chatId);
|
||||||
const isForum = ctx.chat.is_forum ? Strings.varYes : Strings.varNo;
|
const isForum = ctx.chat.is_forum ? Strings.varYes : Strings.varNo;
|
||||||
|
|
||||||
@ -49,6 +82,20 @@ async function getChatInfo(ctx) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = (bot) => {
|
module.exports = (bot) => {
|
||||||
|
bot.command('stats', (ctx) => {
|
||||||
|
const userId = ctx.from.id || Strings.unKnown;
|
||||||
|
if (Config.admins.includes(userId)) {
|
||||||
|
const machineStats = getSystemInfo();
|
||||||
|
ctx.reply(
|
||||||
|
machineStats, {
|
||||||
|
parse_mode: 'Markdown'
|
||||||
|
}
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
ctx.reply(Strings.noPermission);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
bot.command('chatinfo', async (ctx) => {
|
bot.command('chatinfo', async (ctx) => {
|
||||||
const chatInfo = await getChatInfo(ctx);
|
const chatInfo = await getChatInfo(ctx);
|
||||||
ctx.reply(
|
ctx.reply(
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
"varYes": "Yes",
|
"varYes": "Yes",
|
||||||
"varNo": "No",
|
"varNo": "No",
|
||||||
"varNone": "None",
|
"varNone": "None",
|
||||||
|
"noPermission": "You don't have permissions to run this command.",
|
||||||
"privateOnly": "This command should be used only on private chats, and not on groups.",
|
"privateOnly": "This command should be used only on private chats, and not on groups.",
|
||||||
"groupOnly": "This command should be used only on groups, and not on private chats.",
|
"groupOnly": "This command should be used only on groups, and not on private chats.",
|
||||||
"isGay": "Yes, you are *gay*!",
|
"isGay": "Yes, you are *gay*!",
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
{
|
{
|
||||||
"botToken": ""
|
"botToken": "7082772504:AAGQ8wUsaoLBlhRW62DxgZbhIfMrjbbJBlg",
|
||||||
|
"admins": [6637260427, 6993445432, 6723363421]
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user