├── .gitignore ├── Makefile ├── cmd └── app │ └── main.go ├── command ├── alimama │ ├── alimama.go │ ├── forward.go │ ├── subscription.go │ └── utils.go ├── blacklist.go ├── command.go ├── haokangde.go ├── haokangde_test.go ├── pic.go ├── pic_test.go ├── scenes.go ├── scenes_test.go ├── sign.go ├── sign_test.go ├── word.go ├── word_cloud.go ├── word_cloud_test.go └── word_test.go ├── config.example.yaml ├── config └── config.go ├── configs └── config.go ├── cqhttp ├── api.go ├── client.go ├── guild.go ├── message.go └── private.go ├── data └── tmp │ └── word_cloud.py ├── db ├── cache.go ├── db.go ├── migrations │ ├── 20200615134156_init.down.sql │ ├── 20200615134156_init.up.sql │ ├── 20200615214355_scenes_tag.down.sql │ └── 20200615214355_scenes_tag.up.sql └── scenes.go ├── deal.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── handler └── xml.go ├── internal ├── bot │ └── bot.go └── plugins │ ├── command.go │ └── taoke │ ├── admin.go │ ├── convert.go │ ├── forward.go │ ├── repo.go │ └── taoke.go ├── live ├── aria2 │ └── api.go ├── download.go ├── ffmpeg │ └── transition.go ├── file.go ├── handler.go └── live.go ├── lua ├── CleanGroupMenber.lua └── WelcomeGroup.lua ├── main.go ├── model ├── model.go ├── pixiv.go └── scenes.go ├── readme.md └── utils ├── BullshitGenerator └── build.go ├── iotqq ├── iotqq.go ├── model.go └── queue.go ├── jdunion ├── jd.go └── model.go ├── picture └── process.go ├── taobaoopen ├── model.go ├── order.go ├── taobao.go └── utils.go ├── utils.go └── utils_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/Makefile -------------------------------------------------------------------------------- /cmd/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/cmd/app/main.go -------------------------------------------------------------------------------- /command/alimama/alimama.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/alimama/alimama.go -------------------------------------------------------------------------------- /command/alimama/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/alimama/forward.go -------------------------------------------------------------------------------- /command/alimama/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/alimama/subscription.go -------------------------------------------------------------------------------- /command/alimama/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/alimama/utils.go -------------------------------------------------------------------------------- /command/blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/blacklist.go -------------------------------------------------------------------------------- /command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/command.go -------------------------------------------------------------------------------- /command/haokangde.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/haokangde.go -------------------------------------------------------------------------------- /command/haokangde_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/haokangde_test.go -------------------------------------------------------------------------------- /command/pic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/pic.go -------------------------------------------------------------------------------- /command/pic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/pic_test.go -------------------------------------------------------------------------------- /command/scenes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/scenes.go -------------------------------------------------------------------------------- /command/scenes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/scenes_test.go -------------------------------------------------------------------------------- /command/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/sign.go -------------------------------------------------------------------------------- /command/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/sign_test.go -------------------------------------------------------------------------------- /command/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/word.go -------------------------------------------------------------------------------- /command/word_cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/word_cloud.go -------------------------------------------------------------------------------- /command/word_cloud_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/word_cloud_test.go -------------------------------------------------------------------------------- /command/word_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/command/word_test.go -------------------------------------------------------------------------------- /config.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/config.example.yaml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/config/config.go -------------------------------------------------------------------------------- /configs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/configs/config.go -------------------------------------------------------------------------------- /cqhttp/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/cqhttp/api.go -------------------------------------------------------------------------------- /cqhttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/cqhttp/client.go -------------------------------------------------------------------------------- /cqhttp/guild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/cqhttp/guild.go -------------------------------------------------------------------------------- /cqhttp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/cqhttp/message.go -------------------------------------------------------------------------------- /cqhttp/private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/cqhttp/private.go -------------------------------------------------------------------------------- /data/tmp/word_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/data/tmp/word_cloud.py -------------------------------------------------------------------------------- /db/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/db/cache.go -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/db/db.go -------------------------------------------------------------------------------- /db/migrations/20200615134156_init.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrations/20200615134156_init.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/db/migrations/20200615134156_init.up.sql -------------------------------------------------------------------------------- /db/migrations/20200615214355_scenes_tag.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrations/20200615214355_scenes_tag.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/db/migrations/20200615214355_scenes_tag.up.sql -------------------------------------------------------------------------------- /db/scenes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/db/scenes.go -------------------------------------------------------------------------------- /deal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/deal.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/go.sum -------------------------------------------------------------------------------- /handler/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/handler/xml.go -------------------------------------------------------------------------------- /internal/bot/bot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/bot/bot.go -------------------------------------------------------------------------------- /internal/plugins/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/plugins/command.go -------------------------------------------------------------------------------- /internal/plugins/taoke/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/plugins/taoke/admin.go -------------------------------------------------------------------------------- /internal/plugins/taoke/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/plugins/taoke/convert.go -------------------------------------------------------------------------------- /internal/plugins/taoke/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/plugins/taoke/forward.go -------------------------------------------------------------------------------- /internal/plugins/taoke/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/plugins/taoke/repo.go -------------------------------------------------------------------------------- /internal/plugins/taoke/taoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/internal/plugins/taoke/taoke.go -------------------------------------------------------------------------------- /live/aria2/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/live/aria2/api.go -------------------------------------------------------------------------------- /live/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/live/download.go -------------------------------------------------------------------------------- /live/ffmpeg/transition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/live/ffmpeg/transition.go -------------------------------------------------------------------------------- /live/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/live/file.go -------------------------------------------------------------------------------- /live/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/live/handler.go -------------------------------------------------------------------------------- /live/live.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/live/live.go -------------------------------------------------------------------------------- /lua/CleanGroupMenber.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/lua/CleanGroupMenber.lua -------------------------------------------------------------------------------- /lua/WelcomeGroup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/lua/WelcomeGroup.lua -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/main.go -------------------------------------------------------------------------------- /model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/model/model.go -------------------------------------------------------------------------------- /model/pixiv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/model/pixiv.go -------------------------------------------------------------------------------- /model/scenes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/model/scenes.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/readme.md -------------------------------------------------------------------------------- /utils/BullshitGenerator/build.go: -------------------------------------------------------------------------------- 1 | package BullshitGenerator 2 | -------------------------------------------------------------------------------- /utils/iotqq/iotqq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/iotqq/iotqq.go -------------------------------------------------------------------------------- /utils/iotqq/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/iotqq/model.go -------------------------------------------------------------------------------- /utils/iotqq/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/iotqq/queue.go -------------------------------------------------------------------------------- /utils/jdunion/jd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/jdunion/jd.go -------------------------------------------------------------------------------- /utils/jdunion/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/jdunion/model.go -------------------------------------------------------------------------------- /utils/picture/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/picture/process.go -------------------------------------------------------------------------------- /utils/taobaoopen/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/taobaoopen/model.go -------------------------------------------------------------------------------- /utils/taobaoopen/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/taobaoopen/order.go -------------------------------------------------------------------------------- /utils/taobaoopen/taobao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/taobaoopen/taobao.go -------------------------------------------------------------------------------- /utils/taobaoopen/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/taobaoopen/utils.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/utils.go -------------------------------------------------------------------------------- /utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/qqbot/HEAD/utils/utils_test.go --------------------------------------------------------------------------------