├── .env.example ├── .github └── workflows │ └── dependency-review.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── install.ps1 ├── install.sh ├── media ├── banned.png ├── chat.png ├── chisato.png ├── dashboard.png ├── evalexec.png ├── group.png ├── mute.png ├── noprofile.png ├── private.png ├── terminal.png └── welcome.png ├── package.json ├── prisma └── schema.prisma ├── public ├── index.html ├── js │ └── dashboard.js └── login.html ├── src ├── auth │ ├── auth.ts │ ├── connect.ts │ └── index.ts ├── commands │ ├── anime │ │ ├── myanimelist-anime-ranking.ts │ │ ├── myanimelist-manga-ranking.ts │ │ ├── sauce-nao.ts │ │ └── trace-moe.ts │ ├── converter │ │ ├── animated-text-to-sticker.ts │ │ ├── emoji-mix.ts │ │ ├── meme.ts │ │ ├── ocr.ts │ │ ├── reply-text-to-sticker.ts │ │ ├── sticker.ts │ │ ├── text-to-sticker.ts │ │ └── toimage.ts │ ├── debugging │ │ ├── call.ts │ │ └── welcome.ts │ ├── downloader │ │ ├── facebook.ts │ │ ├── instagram.ts │ │ ├── tiktok-audio.ts │ │ ├── tiktok-image.ts │ │ ├── tiktok-video.ts │ │ └── x-downloader.ts │ ├── general │ │ ├── about.ts │ │ ├── me.ts │ │ ├── menu.ts │ │ └── owner.ts │ ├── group │ │ ├── afk.ts │ │ ├── change-group-description.ts │ │ ├── change-group-name.ts │ │ ├── change-profile-picture.ts │ │ ├── fakereply.ts │ │ ├── getpicture.ts │ │ ├── group-add.ts │ │ ├── group-demote.ts │ │ ├── group-hidetag.ts │ │ ├── group-information.ts │ │ ├── group-kick.ts │ │ ├── group-link.ts │ │ ├── group-promote.ts │ │ ├── group-revoke-link.ts │ │ ├── group-tagall.ts │ │ └── leave.ts │ ├── groupsetting │ │ ├── anti-bot.ts │ │ ├── anti-link.ts │ │ ├── banned.ts │ │ ├── change-announce.ts │ │ ├── change-approval-request.ts │ │ ├── change-member-add-mode.ts │ │ ├── change-restrict.ts │ │ ├── group-notify.ts │ │ ├── group-setting.ts │ │ ├── list-banned.ts │ │ ├── member-leave.ts │ │ ├── member-welcome.ts │ │ ├── mute.ts │ │ ├── unbanned.ts │ │ └── unmute.ts │ ├── misc │ │ ├── ping.ts │ │ ├── runtime.ts │ │ ├── statistics.ts │ │ └── status.ts │ ├── news │ │ └── earthquake.ts │ ├── owner │ │ ├── add-premium.ts │ │ ├── add-team.ts │ │ ├── adminpanel.ts │ │ ├── anti-call.ts │ │ ├── auto-correct.ts │ │ ├── auto-read-message.ts │ │ ├── auto-read-status.ts │ │ ├── block.ts │ │ ├── change-name.ts │ │ ├── change-profile-picture.ts │ │ ├── change-status.ts │ │ ├── config.ts │ │ ├── delete-premium.ts │ │ ├── delete-team.ts │ │ ├── group-broadcast.ts │ │ ├── join.ts │ │ ├── list-block.ts │ │ ├── mode.ts │ │ ├── sync-database.ts │ │ └── unblock.ts │ ├── search │ │ ├── google-image.ts │ │ └── youtube-search.ts │ └── wallpaper │ │ └── zerochan.ts ├── core │ ├── cache │ │ ├── cache.service.ts │ │ └── index.ts │ ├── commands │ │ └── command-loader.service.ts │ ├── config │ │ ├── config.service.ts │ │ └── index.ts │ ├── constants │ │ └── connection.constants.ts │ ├── index.ts │ └── logger │ │ ├── index.ts │ │ └── logger.service.ts ├── dashboard │ ├── middleware │ │ └── auth.middleware.ts │ ├── routes │ │ ├── auth.ts │ │ ├── groups.ts │ │ ├── logs.ts │ │ ├── stats.ts │ │ └── users.ts │ └── server.ts ├── infrastructure │ ├── database │ │ ├── database.service.ts │ │ └── index.ts │ └── index.ts ├── libs │ ├── client │ │ ├── client.ts │ │ ├── commands.ts │ │ └── instance.ts │ ├── database │ │ ├── group-legacy.ts │ │ ├── group.ts │ │ ├── index.ts │ │ ├── prisma.ts │ │ ├── user-legacy.ts │ │ └── user.ts │ ├── index.ts │ ├── interactive │ │ └── TemplateBuilder.ts │ └── serialize │ │ ├── group.ts │ │ ├── index.ts │ │ ├── message-helpers.ts │ │ ├── message.ts │ │ └── notification.ts ├── modules │ └── handlers │ │ ├── group │ │ ├── group-update.handler.ts │ │ └── index.ts │ │ ├── message │ │ ├── afk-handler.ts │ │ ├── command-validator.ts │ │ ├── eval-exec-handler.ts │ │ ├── index.ts │ │ ├── message-context.builder.ts │ │ ├── message-handler.ts │ │ ├── message-logger.ts │ │ └── session-handler.ts │ │ └── settings │ │ ├── anti-call.handler.ts │ │ ├── anti-link.handler.ts │ │ └── index.ts ├── shared │ └── extensions │ │ └── string.extensions.ts ├── types │ ├── anime │ │ ├── mal-ranking.d.ts │ │ ├── sauce-nao.d.ts │ │ └── trace-moe.d.ts │ ├── auth │ │ ├── auth.d.ts │ │ ├── chisato.d.ts │ │ └── socket.d.ts │ ├── converter │ │ └── ocr.d.ts │ ├── downloader │ │ ├── facebook.d.ts │ │ └── instagram.d.ts │ ├── message │ │ └── message-context.d.ts │ ├── news │ │ └── earthquake.d.ts │ ├── search │ │ └── google-images.d.ts │ ├── structure │ │ ├── commands.d.ts │ │ ├── config.d.ts │ │ └── serialize.d.ts │ └── wallpaper │ │ └── zerochan.d.ts └── utils │ ├── converter │ ├── convert.ts │ ├── index.ts │ ├── sticker.ts │ ├── text-convert.ts │ └── welcome.ts │ ├── core │ ├── base-http-client.ts │ ├── base-scraper.ts │ ├── cache-manager.ts │ ├── file-utils.ts │ ├── formatters.ts │ ├── index.ts │ ├── string-utils.ts │ └── validators.ts │ ├── fetch.ts │ ├── function.ts │ ├── index.ts │ ├── scrapers │ ├── anime │ │ ├── index.ts │ │ ├── mal-ranking.scraper.ts │ │ ├── sauce-nao.scraper.ts │ │ └── trace-moe.scraper.ts │ ├── converter │ │ ├── index.ts │ │ └── ocr.ts │ ├── downloader │ │ ├── facebook.scraper.ts │ │ ├── index.ts │ │ └── instagram.scraper.ts │ ├── index.ts │ ├── news │ │ ├── earthquake.scraper.ts │ │ └── index.ts │ ├── search │ │ ├── google-images.scraper.ts │ │ └── index.ts │ ├── uploader │ │ ├── index.ts │ │ └── telegraph.scraper.ts │ └── wallpaper │ │ ├── index.ts │ │ └── zerochan.ts │ └── template-helper.ts ├── temp └── .gitkeep └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/config.json -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/install.sh -------------------------------------------------------------------------------- /media/banned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/banned.png -------------------------------------------------------------------------------- /media/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/chat.png -------------------------------------------------------------------------------- /media/chisato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/chisato.png -------------------------------------------------------------------------------- /media/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/dashboard.png -------------------------------------------------------------------------------- /media/evalexec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/evalexec.png -------------------------------------------------------------------------------- /media/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/group.png -------------------------------------------------------------------------------- /media/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/mute.png -------------------------------------------------------------------------------- /media/noprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/noprofile.png -------------------------------------------------------------------------------- /media/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/private.png -------------------------------------------------------------------------------- /media/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/terminal.png -------------------------------------------------------------------------------- /media/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/media/welcome.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/package.json -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/public/js/dashboard.js -------------------------------------------------------------------------------- /public/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/public/login.html -------------------------------------------------------------------------------- /src/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/auth/auth.ts -------------------------------------------------------------------------------- /src/auth/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/auth/connect.ts -------------------------------------------------------------------------------- /src/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/auth/index.ts -------------------------------------------------------------------------------- /src/commands/anime/myanimelist-anime-ranking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/anime/myanimelist-anime-ranking.ts -------------------------------------------------------------------------------- /src/commands/anime/myanimelist-manga-ranking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/anime/myanimelist-manga-ranking.ts -------------------------------------------------------------------------------- /src/commands/anime/sauce-nao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/anime/sauce-nao.ts -------------------------------------------------------------------------------- /src/commands/anime/trace-moe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/anime/trace-moe.ts -------------------------------------------------------------------------------- /src/commands/converter/animated-text-to-sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/animated-text-to-sticker.ts -------------------------------------------------------------------------------- /src/commands/converter/emoji-mix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/emoji-mix.ts -------------------------------------------------------------------------------- /src/commands/converter/meme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/meme.ts -------------------------------------------------------------------------------- /src/commands/converter/ocr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/ocr.ts -------------------------------------------------------------------------------- /src/commands/converter/reply-text-to-sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/reply-text-to-sticker.ts -------------------------------------------------------------------------------- /src/commands/converter/sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/sticker.ts -------------------------------------------------------------------------------- /src/commands/converter/text-to-sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/text-to-sticker.ts -------------------------------------------------------------------------------- /src/commands/converter/toimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/converter/toimage.ts -------------------------------------------------------------------------------- /src/commands/debugging/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/debugging/call.ts -------------------------------------------------------------------------------- /src/commands/debugging/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/debugging/welcome.ts -------------------------------------------------------------------------------- /src/commands/downloader/facebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/downloader/facebook.ts -------------------------------------------------------------------------------- /src/commands/downloader/instagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/downloader/instagram.ts -------------------------------------------------------------------------------- /src/commands/downloader/tiktok-audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/downloader/tiktok-audio.ts -------------------------------------------------------------------------------- /src/commands/downloader/tiktok-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/downloader/tiktok-image.ts -------------------------------------------------------------------------------- /src/commands/downloader/tiktok-video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/downloader/tiktok-video.ts -------------------------------------------------------------------------------- /src/commands/downloader/x-downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/downloader/x-downloader.ts -------------------------------------------------------------------------------- /src/commands/general/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/general/about.ts -------------------------------------------------------------------------------- /src/commands/general/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/general/me.ts -------------------------------------------------------------------------------- /src/commands/general/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/general/menu.ts -------------------------------------------------------------------------------- /src/commands/general/owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/general/owner.ts -------------------------------------------------------------------------------- /src/commands/group/afk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/afk.ts -------------------------------------------------------------------------------- /src/commands/group/change-group-description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/change-group-description.ts -------------------------------------------------------------------------------- /src/commands/group/change-group-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/change-group-name.ts -------------------------------------------------------------------------------- /src/commands/group/change-profile-picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/change-profile-picture.ts -------------------------------------------------------------------------------- /src/commands/group/fakereply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/fakereply.ts -------------------------------------------------------------------------------- /src/commands/group/getpicture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/getpicture.ts -------------------------------------------------------------------------------- /src/commands/group/group-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-add.ts -------------------------------------------------------------------------------- /src/commands/group/group-demote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-demote.ts -------------------------------------------------------------------------------- /src/commands/group/group-hidetag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-hidetag.ts -------------------------------------------------------------------------------- /src/commands/group/group-information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-information.ts -------------------------------------------------------------------------------- /src/commands/group/group-kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-kick.ts -------------------------------------------------------------------------------- /src/commands/group/group-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-link.ts -------------------------------------------------------------------------------- /src/commands/group/group-promote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-promote.ts -------------------------------------------------------------------------------- /src/commands/group/group-revoke-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-revoke-link.ts -------------------------------------------------------------------------------- /src/commands/group/group-tagall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/group-tagall.ts -------------------------------------------------------------------------------- /src/commands/group/leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/group/leave.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/anti-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/anti-bot.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/anti-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/anti-link.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/banned.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/banned.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/change-announce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/change-announce.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/change-approval-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/change-approval-request.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/change-member-add-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/change-member-add-mode.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/change-restrict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/change-restrict.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/group-notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/group-notify.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/group-setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/group-setting.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/list-banned.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/list-banned.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/member-leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/member-leave.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/member-welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/member-welcome.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/mute.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/unbanned.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/unbanned.ts -------------------------------------------------------------------------------- /src/commands/groupsetting/unmute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/groupsetting/unmute.ts -------------------------------------------------------------------------------- /src/commands/misc/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/misc/ping.ts -------------------------------------------------------------------------------- /src/commands/misc/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/misc/runtime.ts -------------------------------------------------------------------------------- /src/commands/misc/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/misc/statistics.ts -------------------------------------------------------------------------------- /src/commands/misc/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/misc/status.ts -------------------------------------------------------------------------------- /src/commands/news/earthquake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/news/earthquake.ts -------------------------------------------------------------------------------- /src/commands/owner/add-premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/add-premium.ts -------------------------------------------------------------------------------- /src/commands/owner/add-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/add-team.ts -------------------------------------------------------------------------------- /src/commands/owner/adminpanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/adminpanel.ts -------------------------------------------------------------------------------- /src/commands/owner/anti-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/anti-call.ts -------------------------------------------------------------------------------- /src/commands/owner/auto-correct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/auto-correct.ts -------------------------------------------------------------------------------- /src/commands/owner/auto-read-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/auto-read-message.ts -------------------------------------------------------------------------------- /src/commands/owner/auto-read-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/auto-read-status.ts -------------------------------------------------------------------------------- /src/commands/owner/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/block.ts -------------------------------------------------------------------------------- /src/commands/owner/change-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/change-name.ts -------------------------------------------------------------------------------- /src/commands/owner/change-profile-picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/change-profile-picture.ts -------------------------------------------------------------------------------- /src/commands/owner/change-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/change-status.ts -------------------------------------------------------------------------------- /src/commands/owner/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/config.ts -------------------------------------------------------------------------------- /src/commands/owner/delete-premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/delete-premium.ts -------------------------------------------------------------------------------- /src/commands/owner/delete-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/delete-team.ts -------------------------------------------------------------------------------- /src/commands/owner/group-broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/group-broadcast.ts -------------------------------------------------------------------------------- /src/commands/owner/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/join.ts -------------------------------------------------------------------------------- /src/commands/owner/list-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/list-block.ts -------------------------------------------------------------------------------- /src/commands/owner/mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/mode.ts -------------------------------------------------------------------------------- /src/commands/owner/sync-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/sync-database.ts -------------------------------------------------------------------------------- /src/commands/owner/unblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/owner/unblock.ts -------------------------------------------------------------------------------- /src/commands/search/google-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/search/google-image.ts -------------------------------------------------------------------------------- /src/commands/search/youtube-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/search/youtube-search.ts -------------------------------------------------------------------------------- /src/commands/wallpaper/zerochan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/commands/wallpaper/zerochan.ts -------------------------------------------------------------------------------- /src/core/cache/cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/core/cache/cache.service.ts -------------------------------------------------------------------------------- /src/core/cache/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./cache.service"; 2 | -------------------------------------------------------------------------------- /src/core/commands/command-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/core/commands/command-loader.service.ts -------------------------------------------------------------------------------- /src/core/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/core/config/config.service.ts -------------------------------------------------------------------------------- /src/core/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./config.service"; 2 | -------------------------------------------------------------------------------- /src/core/constants/connection.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/core/constants/connection.constants.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/logger/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./logger.service"; 2 | -------------------------------------------------------------------------------- /src/core/logger/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/core/logger/logger.service.ts -------------------------------------------------------------------------------- /src/dashboard/middleware/auth.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/middleware/auth.middleware.ts -------------------------------------------------------------------------------- /src/dashboard/routes/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/routes/auth.ts -------------------------------------------------------------------------------- /src/dashboard/routes/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/routes/groups.ts -------------------------------------------------------------------------------- /src/dashboard/routes/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/routes/logs.ts -------------------------------------------------------------------------------- /src/dashboard/routes/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/routes/stats.ts -------------------------------------------------------------------------------- /src/dashboard/routes/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/routes/users.ts -------------------------------------------------------------------------------- /src/dashboard/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/dashboard/server.ts -------------------------------------------------------------------------------- /src/infrastructure/database/database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/infrastructure/database/database.service.ts -------------------------------------------------------------------------------- /src/infrastructure/database/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./database.service"; 2 | -------------------------------------------------------------------------------- /src/infrastructure/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./database"; 2 | -------------------------------------------------------------------------------- /src/libs/client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/client/client.ts -------------------------------------------------------------------------------- /src/libs/client/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/client/commands.ts -------------------------------------------------------------------------------- /src/libs/client/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/client/instance.ts -------------------------------------------------------------------------------- /src/libs/database/group-legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/database/group-legacy.ts -------------------------------------------------------------------------------- /src/libs/database/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/database/group.ts -------------------------------------------------------------------------------- /src/libs/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/database/index.ts -------------------------------------------------------------------------------- /src/libs/database/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/database/prisma.ts -------------------------------------------------------------------------------- /src/libs/database/user-legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/database/user-legacy.ts -------------------------------------------------------------------------------- /src/libs/database/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/database/user.ts -------------------------------------------------------------------------------- /src/libs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/index.ts -------------------------------------------------------------------------------- /src/libs/interactive/TemplateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/interactive/TemplateBuilder.ts -------------------------------------------------------------------------------- /src/libs/serialize/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/serialize/group.ts -------------------------------------------------------------------------------- /src/libs/serialize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/serialize/index.ts -------------------------------------------------------------------------------- /src/libs/serialize/message-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/serialize/message-helpers.ts -------------------------------------------------------------------------------- /src/libs/serialize/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/serialize/message.ts -------------------------------------------------------------------------------- /src/libs/serialize/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/libs/serialize/notification.ts -------------------------------------------------------------------------------- /src/modules/handlers/group/group-update.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/group/group-update.handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/group/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./group-update.handler"; 2 | -------------------------------------------------------------------------------- /src/modules/handlers/message/afk-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/afk-handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/command-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/command-validator.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/eval-exec-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/eval-exec-handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/index.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/message-context.builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/message-context.builder.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/message-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/message-handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/message-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/message-logger.ts -------------------------------------------------------------------------------- /src/modules/handlers/message/session-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/message/session-handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/settings/anti-call.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/settings/anti-call.handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/settings/anti-link.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/settings/anti-link.handler.ts -------------------------------------------------------------------------------- /src/modules/handlers/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/modules/handlers/settings/index.ts -------------------------------------------------------------------------------- /src/shared/extensions/string.extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/shared/extensions/string.extensions.ts -------------------------------------------------------------------------------- /src/types/anime/mal-ranking.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/anime/mal-ranking.d.ts -------------------------------------------------------------------------------- /src/types/anime/sauce-nao.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/anime/sauce-nao.d.ts -------------------------------------------------------------------------------- /src/types/anime/trace-moe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/anime/trace-moe.d.ts -------------------------------------------------------------------------------- /src/types/auth/auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/auth/auth.d.ts -------------------------------------------------------------------------------- /src/types/auth/chisato.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/auth/chisato.d.ts -------------------------------------------------------------------------------- /src/types/auth/socket.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/auth/socket.d.ts -------------------------------------------------------------------------------- /src/types/converter/ocr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/converter/ocr.d.ts -------------------------------------------------------------------------------- /src/types/downloader/facebook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/downloader/facebook.d.ts -------------------------------------------------------------------------------- /src/types/downloader/instagram.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/downloader/instagram.d.ts -------------------------------------------------------------------------------- /src/types/message/message-context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/message/message-context.d.ts -------------------------------------------------------------------------------- /src/types/news/earthquake.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/news/earthquake.d.ts -------------------------------------------------------------------------------- /src/types/search/google-images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/search/google-images.d.ts -------------------------------------------------------------------------------- /src/types/structure/commands.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/structure/commands.d.ts -------------------------------------------------------------------------------- /src/types/structure/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/structure/config.d.ts -------------------------------------------------------------------------------- /src/types/structure/serialize.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/structure/serialize.d.ts -------------------------------------------------------------------------------- /src/types/wallpaper/zerochan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/types/wallpaper/zerochan.d.ts -------------------------------------------------------------------------------- /src/utils/converter/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/converter/convert.ts -------------------------------------------------------------------------------- /src/utils/converter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/converter/index.ts -------------------------------------------------------------------------------- /src/utils/converter/sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/converter/sticker.ts -------------------------------------------------------------------------------- /src/utils/converter/text-convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/converter/text-convert.ts -------------------------------------------------------------------------------- /src/utils/converter/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/converter/welcome.ts -------------------------------------------------------------------------------- /src/utils/core/base-http-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/base-http-client.ts -------------------------------------------------------------------------------- /src/utils/core/base-scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/base-scraper.ts -------------------------------------------------------------------------------- /src/utils/core/cache-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/cache-manager.ts -------------------------------------------------------------------------------- /src/utils/core/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/file-utils.ts -------------------------------------------------------------------------------- /src/utils/core/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/formatters.ts -------------------------------------------------------------------------------- /src/utils/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/index.ts -------------------------------------------------------------------------------- /src/utils/core/string-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/string-utils.ts -------------------------------------------------------------------------------- /src/utils/core/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/core/validators.ts -------------------------------------------------------------------------------- /src/utils/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/fetch.ts -------------------------------------------------------------------------------- /src/utils/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/function.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/scrapers/anime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/anime/index.ts -------------------------------------------------------------------------------- /src/utils/scrapers/anime/mal-ranking.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/anime/mal-ranking.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/anime/sauce-nao.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/anime/sauce-nao.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/anime/trace-moe.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/anime/trace-moe.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/converter/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ocr"; 2 | -------------------------------------------------------------------------------- /src/utils/scrapers/converter/ocr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/converter/ocr.ts -------------------------------------------------------------------------------- /src/utils/scrapers/downloader/facebook.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/downloader/facebook.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/downloader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/downloader/index.ts -------------------------------------------------------------------------------- /src/utils/scrapers/downloader/instagram.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/downloader/instagram.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/index.ts -------------------------------------------------------------------------------- /src/utils/scrapers/news/earthquake.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/news/earthquake.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/news/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./earthquake.scraper"; 2 | -------------------------------------------------------------------------------- /src/utils/scrapers/search/google-images.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/search/google-images.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/search/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./google-images.scraper"; 2 | -------------------------------------------------------------------------------- /src/utils/scrapers/uploader/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./telegraph.scraper"; 2 | -------------------------------------------------------------------------------- /src/utils/scrapers/uploader/telegraph.scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/uploader/telegraph.scraper.ts -------------------------------------------------------------------------------- /src/utils/scrapers/wallpaper/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./zerochan"; 2 | -------------------------------------------------------------------------------- /src/utils/scrapers/wallpaper/zerochan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/scrapers/wallpaper/zerochan.ts -------------------------------------------------------------------------------- /src/utils/template-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/src/utils/template-helper.ts -------------------------------------------------------------------------------- /temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyG74/ChisatoBOT/HEAD/tsconfig.json --------------------------------------------------------------------------------