├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_Docker.md ├── badwords.example.yml ├── config.example.yml ├── docker-compose.yaml ├── lib ├── QQSocketApiBot.js ├── WeChatBotClient.js ├── WeChatBotServer.js ├── coolq.js ├── handlers │ ├── Context.js │ ├── DiscordMessageHandler.js │ ├── IRCMessageHandler.js │ ├── MessageHandler.js │ ├── QQOICQMessageHandler.js │ ├── QQOnebot11MessageHandler.js │ ├── QQSocketApiMessageHandler.js │ ├── TelegramMessageHandler.js │ └── WeChatMessageHandler.js ├── proxy.js └── util.js ├── main ├── main.cmd ├── main.js ├── package.json └── plugins ├── 8ball.js ├── filter.js ├── groupid-tg.js ├── irccommand.js ├── ircquery.js ├── leave-tg.js ├── pia.js ├── qqbabyq.js ├── qqmultimsg.js ├── qqxiaoice.js ├── transport.js ├── transport ├── BridgeMsg.js ├── bridge.js ├── command.js ├── file.js ├── paeeye.js └── processors │ ├── Discord.js │ ├── IRC.js │ ├── QQ.js │ ├── Telegram.js │ └── WeChat.js ├── unfilter.js └── wikilinky.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/README.md -------------------------------------------------------------------------------- /README_Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/README_Docker.md -------------------------------------------------------------------------------- /badwords.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/badwords.example.yml -------------------------------------------------------------------------------- /config.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/config.example.yml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /lib/QQSocketApiBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/QQSocketApiBot.js -------------------------------------------------------------------------------- /lib/WeChatBotClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/WeChatBotClient.js -------------------------------------------------------------------------------- /lib/WeChatBotServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/WeChatBotServer.js -------------------------------------------------------------------------------- /lib/coolq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/coolq.js -------------------------------------------------------------------------------- /lib/handlers/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/Context.js -------------------------------------------------------------------------------- /lib/handlers/DiscordMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/DiscordMessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/IRCMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/IRCMessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/MessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/MessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/QQOICQMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/QQOICQMessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/QQOnebot11MessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/QQOnebot11MessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/QQSocketApiMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/QQSocketApiMessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/TelegramMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/TelegramMessageHandler.js -------------------------------------------------------------------------------- /lib/handlers/WeChatMessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/handlers/WeChatMessageHandler.js -------------------------------------------------------------------------------- /lib/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/proxy.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/lib/util.js -------------------------------------------------------------------------------- /main: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while true; do node main.js; done 3 | -------------------------------------------------------------------------------- /main.cmd: -------------------------------------------------------------------------------- 1 | :a 2 | node main.js 3 | goto a 4 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/package.json -------------------------------------------------------------------------------- /plugins/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/8ball.js -------------------------------------------------------------------------------- /plugins/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/filter.js -------------------------------------------------------------------------------- /plugins/groupid-tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/groupid-tg.js -------------------------------------------------------------------------------- /plugins/irccommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/irccommand.js -------------------------------------------------------------------------------- /plugins/ircquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/ircquery.js -------------------------------------------------------------------------------- /plugins/leave-tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/leave-tg.js -------------------------------------------------------------------------------- /plugins/pia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/pia.js -------------------------------------------------------------------------------- /plugins/qqbabyq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/qqbabyq.js -------------------------------------------------------------------------------- /plugins/qqmultimsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/qqmultimsg.js -------------------------------------------------------------------------------- /plugins/qqxiaoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/qqxiaoice.js -------------------------------------------------------------------------------- /plugins/transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport.js -------------------------------------------------------------------------------- /plugins/transport/BridgeMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/BridgeMsg.js -------------------------------------------------------------------------------- /plugins/transport/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/bridge.js -------------------------------------------------------------------------------- /plugins/transport/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/command.js -------------------------------------------------------------------------------- /plugins/transport/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/file.js -------------------------------------------------------------------------------- /plugins/transport/paeeye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/paeeye.js -------------------------------------------------------------------------------- /plugins/transport/processors/Discord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/processors/Discord.js -------------------------------------------------------------------------------- /plugins/transport/processors/IRC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/processors/IRC.js -------------------------------------------------------------------------------- /plugins/transport/processors/QQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/processors/QQ.js -------------------------------------------------------------------------------- /plugins/transport/processors/Telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/processors/Telegram.js -------------------------------------------------------------------------------- /plugins/transport/processors/WeChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/transport/processors/WeChat.js -------------------------------------------------------------------------------- /plugins/unfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/unfilter.js -------------------------------------------------------------------------------- /plugins/wikilinky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zokhoi/LilyWhiteBot/HEAD/plugins/wikilinky.js --------------------------------------------------------------------------------