├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── audio │ └── tmp │ │ └── temp.txt ├── img │ └── tmp │ │ └── temp.txt └── wordlist.ts ├── docker-compose.yml ├── locales ├── @types │ └── command.interface.ts ├── en │ ├── about.json │ ├── acceptInvite.json │ ├── add.json │ ├── ban.json │ ├── bl.json │ ├── botinfo.json │ ├── demote.json │ ├── dload.json │ ├── fs.json │ ├── general.json │ ├── groupinfo.json │ ├── join.json │ ├── menu.json │ ├── notgroup.json │ ├── promote.json │ ├── recognize.json │ ├── td.json │ ├── toimg.json │ ├── totext.json │ ├── welcome.json │ └── wrongcmd.json └── pt │ ├── @README.md │ ├── about.json │ ├── acceptInvite.json │ ├── add.json │ ├── ban.json │ ├── bl.json │ ├── botinfo.json │ ├── demote.json │ ├── dload.json │ ├── fs.json │ ├── general.json │ ├── groupinfo.json │ ├── join.json │ ├── menu.json │ ├── notgroup.json │ ├── promote.json │ ├── recognize.json │ ├── td.json │ ├── toimg.json │ ├── totext.json │ ├── welcome.json │ └── wrongcmd.json ├── package.json ├── prisma └── schema.prisma ├── src ├── bot │ ├── api │ │ ├── acrcloud.ts │ │ ├── downloader.ts │ │ ├── group │ │ │ ├── checkBlackListOnInit │ │ │ │ └── index.ts │ │ │ ├── createAllGroupsOnReady │ │ │ │ └── index.ts │ │ │ └── updateAllUsers │ │ │ │ └── index.ts │ │ └── sightengine.ts │ ├── cli │ │ └── terminal.ts │ ├── helpers │ │ ├── checkGroup │ │ │ └── index.ts │ │ ├── createEnv │ │ │ └── index.ts │ │ └── messageGetter.ts │ ├── lib │ │ ├── auth │ │ │ └── prisma-query.ts │ │ ├── openai.ts │ │ └── prisma.ts │ ├── modules │ │ ├── about │ │ │ └── index.ts │ │ ├── admin │ │ │ └── index.ts │ │ ├── bemVindo │ │ │ ├── command │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── blacklist │ │ │ └── index.ts │ │ ├── bot │ │ │ ├── botStatusPanel.ts │ │ │ ├── index.ts │ │ │ └── togglePrivateMode.ts │ │ ├── clearChats │ │ │ └── index.ts │ │ ├── convertSticker │ │ │ └── index.ts │ │ ├── downloader │ │ │ └── index.ts │ │ ├── groupInvite │ │ │ ├── commands │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── groupJoin │ │ │ ├── commands │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── groupNotification │ │ │ ├── addNewUser.ts │ │ │ ├── removeFromGroup.ts │ │ │ └── userTypeChanged.ts │ │ ├── groupStatus │ │ │ └── index.ts │ │ ├── leave │ │ │ └── index.ts │ │ ├── linkDetector │ │ │ ├── command │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── maliciousDetector │ │ │ ├── commands │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── menu │ │ │ ├── index.ts │ │ │ └── util.ts │ │ ├── modulesWrapper │ │ │ ├── commandMap.ts │ │ │ └── index.ts │ │ ├── musicRecognition │ │ │ └── index.ts │ │ ├── oneGroup │ │ │ └── index.ts │ │ ├── ping │ │ │ └── index.ts │ │ ├── profanityDetector │ │ │ ├── commands │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── rules │ │ │ └── index.ts │ │ ├── shutdown │ │ │ └── index.ts │ │ ├── sticker │ │ │ ├── command │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── transcription │ │ │ └── index.ts │ │ ├── travaDetector │ │ │ ├── command │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── zapConstructor │ │ │ └── index.ts │ ├── typings │ │ ├── acr.interface.ts │ │ ├── cache │ │ │ └── groupInfo.interface.ts │ │ ├── participant.interface.ts │ │ └── prismaQueryTypes.ts │ └── utils │ │ ├── convertFile.ts │ │ ├── envs.ts │ │ ├── generateRandomName.ts │ │ ├── getVideoFrames.ts │ │ ├── globalVariable.ts │ │ ├── ifExistsLink.ts │ │ ├── profanity.ts │ │ ├── transcriptionFunction.ts │ │ └── uploadImage.ts ├── config │ └── startupConfig.ts └── index.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | session 4 | .wwebjs_cache -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.d.ts -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@rocketseat/eslint-config/node"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/README.md -------------------------------------------------------------------------------- /assets/audio/tmp/temp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/tmp/temp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/wordlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/assets/wordlist.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /locales/@types/command.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/@types/command.interface.ts -------------------------------------------------------------------------------- /locales/en/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/about.json -------------------------------------------------------------------------------- /locales/en/acceptInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/acceptInvite.json -------------------------------------------------------------------------------- /locales/en/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/add.json -------------------------------------------------------------------------------- /locales/en/ban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/ban.json -------------------------------------------------------------------------------- /locales/en/bl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/bl.json -------------------------------------------------------------------------------- /locales/en/botinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/botinfo.json -------------------------------------------------------------------------------- /locales/en/demote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/demote.json -------------------------------------------------------------------------------- /locales/en/dload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/dload.json -------------------------------------------------------------------------------- /locales/en/fs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/fs.json -------------------------------------------------------------------------------- /locales/en/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/general.json -------------------------------------------------------------------------------- /locales/en/groupinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/groupinfo.json -------------------------------------------------------------------------------- /locales/en/join.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/join.json -------------------------------------------------------------------------------- /locales/en/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/menu.json -------------------------------------------------------------------------------- /locales/en/notgroup.json: -------------------------------------------------------------------------------- 1 | { 2 | "error": "I can only respond to this command in groups 😥" 3 | } 4 | -------------------------------------------------------------------------------- /locales/en/promote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/promote.json -------------------------------------------------------------------------------- /locales/en/recognize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/recognize.json -------------------------------------------------------------------------------- /locales/en/td.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/td.json -------------------------------------------------------------------------------- /locales/en/toimg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/toimg.json -------------------------------------------------------------------------------- /locales/en/totext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/totext.json -------------------------------------------------------------------------------- /locales/en/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/welcome.json -------------------------------------------------------------------------------- /locales/en/wrongcmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/en/wrongcmd.json -------------------------------------------------------------------------------- /locales/pt/@README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/@README.md -------------------------------------------------------------------------------- /locales/pt/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/about.json -------------------------------------------------------------------------------- /locales/pt/acceptInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/acceptInvite.json -------------------------------------------------------------------------------- /locales/pt/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/add.json -------------------------------------------------------------------------------- /locales/pt/ban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/ban.json -------------------------------------------------------------------------------- /locales/pt/bl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/bl.json -------------------------------------------------------------------------------- /locales/pt/botinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/botinfo.json -------------------------------------------------------------------------------- /locales/pt/demote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/demote.json -------------------------------------------------------------------------------- /locales/pt/dload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/dload.json -------------------------------------------------------------------------------- /locales/pt/fs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/fs.json -------------------------------------------------------------------------------- /locales/pt/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/general.json -------------------------------------------------------------------------------- /locales/pt/groupinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/groupinfo.json -------------------------------------------------------------------------------- /locales/pt/join.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/join.json -------------------------------------------------------------------------------- /locales/pt/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/menu.json -------------------------------------------------------------------------------- /locales/pt/notgroup.json: -------------------------------------------------------------------------------- 1 | { 2 | "error": "Só posso responder esse comando em grupos 😥" 3 | } 4 | -------------------------------------------------------------------------------- /locales/pt/promote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/promote.json -------------------------------------------------------------------------------- /locales/pt/recognize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/recognize.json -------------------------------------------------------------------------------- /locales/pt/td.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/td.json -------------------------------------------------------------------------------- /locales/pt/toimg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/toimg.json -------------------------------------------------------------------------------- /locales/pt/totext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/totext.json -------------------------------------------------------------------------------- /locales/pt/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/welcome.json -------------------------------------------------------------------------------- /locales/pt/wrongcmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/locales/pt/wrongcmd.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/package.json -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/bot/api/acrcloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/api/acrcloud.ts -------------------------------------------------------------------------------- /src/bot/api/downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/api/downloader.ts -------------------------------------------------------------------------------- /src/bot/api/group/checkBlackListOnInit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/api/group/checkBlackListOnInit/index.ts -------------------------------------------------------------------------------- /src/bot/api/group/createAllGroupsOnReady/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/api/group/createAllGroupsOnReady/index.ts -------------------------------------------------------------------------------- /src/bot/api/group/updateAllUsers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/api/group/updateAllUsers/index.ts -------------------------------------------------------------------------------- /src/bot/api/sightengine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/api/sightengine.ts -------------------------------------------------------------------------------- /src/bot/cli/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/cli/terminal.ts -------------------------------------------------------------------------------- /src/bot/helpers/checkGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/helpers/checkGroup/index.ts -------------------------------------------------------------------------------- /src/bot/helpers/createEnv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/helpers/createEnv/index.ts -------------------------------------------------------------------------------- /src/bot/helpers/messageGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/helpers/messageGetter.ts -------------------------------------------------------------------------------- /src/bot/lib/auth/prisma-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/lib/auth/prisma-query.ts -------------------------------------------------------------------------------- /src/bot/lib/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/lib/openai.ts -------------------------------------------------------------------------------- /src/bot/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/lib/prisma.ts -------------------------------------------------------------------------------- /src/bot/modules/about/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/about/index.ts -------------------------------------------------------------------------------- /src/bot/modules/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/admin/index.ts -------------------------------------------------------------------------------- /src/bot/modules/bemVindo/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/bemVindo/command/index.ts -------------------------------------------------------------------------------- /src/bot/modules/bemVindo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/bemVindo/index.ts -------------------------------------------------------------------------------- /src/bot/modules/blacklist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/blacklist/index.ts -------------------------------------------------------------------------------- /src/bot/modules/bot/botStatusPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/bot/botStatusPanel.ts -------------------------------------------------------------------------------- /src/bot/modules/bot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/bot/index.ts -------------------------------------------------------------------------------- /src/bot/modules/bot/togglePrivateMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/bot/togglePrivateMode.ts -------------------------------------------------------------------------------- /src/bot/modules/clearChats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/clearChats/index.ts -------------------------------------------------------------------------------- /src/bot/modules/convertSticker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/convertSticker/index.ts -------------------------------------------------------------------------------- /src/bot/modules/downloader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/downloader/index.ts -------------------------------------------------------------------------------- /src/bot/modules/groupInvite/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupInvite/commands/index.ts -------------------------------------------------------------------------------- /src/bot/modules/groupInvite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupInvite/index.ts -------------------------------------------------------------------------------- /src/bot/modules/groupJoin/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupJoin/commands/index.ts -------------------------------------------------------------------------------- /src/bot/modules/groupJoin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupJoin/index.ts -------------------------------------------------------------------------------- /src/bot/modules/groupNotification/addNewUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupNotification/addNewUser.ts -------------------------------------------------------------------------------- /src/bot/modules/groupNotification/removeFromGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupNotification/removeFromGroup.ts -------------------------------------------------------------------------------- /src/bot/modules/groupNotification/userTypeChanged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupNotification/userTypeChanged.ts -------------------------------------------------------------------------------- /src/bot/modules/groupStatus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/groupStatus/index.ts -------------------------------------------------------------------------------- /src/bot/modules/leave/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/leave/index.ts -------------------------------------------------------------------------------- /src/bot/modules/linkDetector/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/linkDetector/command/index.ts -------------------------------------------------------------------------------- /src/bot/modules/linkDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/linkDetector/index.ts -------------------------------------------------------------------------------- /src/bot/modules/maliciousDetector/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/maliciousDetector/commands/index.ts -------------------------------------------------------------------------------- /src/bot/modules/maliciousDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/maliciousDetector/index.ts -------------------------------------------------------------------------------- /src/bot/modules/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/menu/index.ts -------------------------------------------------------------------------------- /src/bot/modules/menu/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/menu/util.ts -------------------------------------------------------------------------------- /src/bot/modules/modulesWrapper/commandMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/modulesWrapper/commandMap.ts -------------------------------------------------------------------------------- /src/bot/modules/modulesWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/modulesWrapper/index.ts -------------------------------------------------------------------------------- /src/bot/modules/musicRecognition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/musicRecognition/index.ts -------------------------------------------------------------------------------- /src/bot/modules/oneGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/oneGroup/index.ts -------------------------------------------------------------------------------- /src/bot/modules/ping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/ping/index.ts -------------------------------------------------------------------------------- /src/bot/modules/profanityDetector/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/profanityDetector/commands/index.ts -------------------------------------------------------------------------------- /src/bot/modules/profanityDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/profanityDetector/index.ts -------------------------------------------------------------------------------- /src/bot/modules/rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/rules/index.ts -------------------------------------------------------------------------------- /src/bot/modules/shutdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/shutdown/index.ts -------------------------------------------------------------------------------- /src/bot/modules/sticker/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/sticker/command/index.ts -------------------------------------------------------------------------------- /src/bot/modules/sticker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/sticker/index.ts -------------------------------------------------------------------------------- /src/bot/modules/transcription/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/transcription/index.ts -------------------------------------------------------------------------------- /src/bot/modules/travaDetector/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/travaDetector/command/index.ts -------------------------------------------------------------------------------- /src/bot/modules/travaDetector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/travaDetector/index.ts -------------------------------------------------------------------------------- /src/bot/modules/zapConstructor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/modules/zapConstructor/index.ts -------------------------------------------------------------------------------- /src/bot/typings/acr.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/typings/acr.interface.ts -------------------------------------------------------------------------------- /src/bot/typings/cache/groupInfo.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/typings/cache/groupInfo.interface.ts -------------------------------------------------------------------------------- /src/bot/typings/participant.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/typings/participant.interface.ts -------------------------------------------------------------------------------- /src/bot/typings/prismaQueryTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/typings/prismaQueryTypes.ts -------------------------------------------------------------------------------- /src/bot/utils/convertFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/convertFile.ts -------------------------------------------------------------------------------- /src/bot/utils/envs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/envs.ts -------------------------------------------------------------------------------- /src/bot/utils/generateRandomName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/generateRandomName.ts -------------------------------------------------------------------------------- /src/bot/utils/getVideoFrames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/getVideoFrames.ts -------------------------------------------------------------------------------- /src/bot/utils/globalVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/globalVariable.ts -------------------------------------------------------------------------------- /src/bot/utils/ifExistsLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/ifExistsLink.ts -------------------------------------------------------------------------------- /src/bot/utils/profanity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/profanity.ts -------------------------------------------------------------------------------- /src/bot/utils/transcriptionFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/transcriptionFunction.ts -------------------------------------------------------------------------------- /src/bot/utils/uploadImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/bot/utils/uploadImage.ts -------------------------------------------------------------------------------- /src/config/startupConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/config/startupConfig.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelopedroso/Hiperion-Bot/HEAD/yarn.lock --------------------------------------------------------------------------------