├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── gocqhttp ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.yml └── go-cqhttp-v1.0.0-beta7-fix2 ├── guide ├── New Text Document 2.md ├── New Text Document 3.md ├── New Text Document 4.md ├── New Text Document 5.md ├── New Text Document.md └── assets │ ├── checkin_pic.jpg │ ├── dashboards.jpg │ ├── groupchat.jpg │ ├── privatechat.jpg │ └── test_ws.jpg └── lucia ├── .dockerignore ├── .gitignore ├── Dockerfile ├── bot.py ├── bot_config.py ├── bot_plugins ├── group_user_checkin.py ├── grouptty.py ├── inmsg_count.py ├── ping.py ├── request_handler.py ├── usage.py └── weather.py ├── controllers.py ├── models ├── command_use.py └── group_user.py ├── requirements.txt ├── resources ├── SourceHanSans-Regular.otf ├── dashboard.html └── group_user_check_bg.png ├── service_config.py └── services ├── broadcast.py ├── command_use_count.py ├── common.py ├── db_context.py ├── group_user_checkin.py ├── inmsg_count.py ├── log.py ├── processpool.py └── weather.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gocqhttp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/gocqhttp/.gitignore -------------------------------------------------------------------------------- /gocqhttp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/gocqhttp/Dockerfile -------------------------------------------------------------------------------- /gocqhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/gocqhttp/LICENSE -------------------------------------------------------------------------------- /gocqhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/gocqhttp/README.md -------------------------------------------------------------------------------- /gocqhttp/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/gocqhttp/config.yml -------------------------------------------------------------------------------- /gocqhttp/go-cqhttp-v1.0.0-beta7-fix2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/gocqhttp/go-cqhttp-v1.0.0-beta7-fix2 -------------------------------------------------------------------------------- /guide/New Text Document 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/New Text Document 2.md -------------------------------------------------------------------------------- /guide/New Text Document 3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/New Text Document 3.md -------------------------------------------------------------------------------- /guide/New Text Document 4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/New Text Document 4.md -------------------------------------------------------------------------------- /guide/New Text Document 5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/New Text Document 5.md -------------------------------------------------------------------------------- /guide/New Text Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/New Text Document.md -------------------------------------------------------------------------------- /guide/assets/checkin_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/assets/checkin_pic.jpg -------------------------------------------------------------------------------- /guide/assets/dashboards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/assets/dashboards.jpg -------------------------------------------------------------------------------- /guide/assets/groupchat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/assets/groupchat.jpg -------------------------------------------------------------------------------- /guide/assets/privatechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/assets/privatechat.jpg -------------------------------------------------------------------------------- /guide/assets/test_ws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/guide/assets/test_ws.jpg -------------------------------------------------------------------------------- /lucia/.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /lucia/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /lucia/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/Dockerfile -------------------------------------------------------------------------------- /lucia/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot.py -------------------------------------------------------------------------------- /lucia/bot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_config.py -------------------------------------------------------------------------------- /lucia/bot_plugins/group_user_checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/group_user_checkin.py -------------------------------------------------------------------------------- /lucia/bot_plugins/grouptty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/grouptty.py -------------------------------------------------------------------------------- /lucia/bot_plugins/inmsg_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/inmsg_count.py -------------------------------------------------------------------------------- /lucia/bot_plugins/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/ping.py -------------------------------------------------------------------------------- /lucia/bot_plugins/request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/request_handler.py -------------------------------------------------------------------------------- /lucia/bot_plugins/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/usage.py -------------------------------------------------------------------------------- /lucia/bot_plugins/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/bot_plugins/weather.py -------------------------------------------------------------------------------- /lucia/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/controllers.py -------------------------------------------------------------------------------- /lucia/models/command_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/models/command_use.py -------------------------------------------------------------------------------- /lucia/models/group_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/models/group_user.py -------------------------------------------------------------------------------- /lucia/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/requirements.txt -------------------------------------------------------------------------------- /lucia/resources/SourceHanSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/resources/SourceHanSans-Regular.otf -------------------------------------------------------------------------------- /lucia/resources/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/resources/dashboard.html -------------------------------------------------------------------------------- /lucia/resources/group_user_check_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/resources/group_user_check_bg.png -------------------------------------------------------------------------------- /lucia/service_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/service_config.py -------------------------------------------------------------------------------- /lucia/services/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/broadcast.py -------------------------------------------------------------------------------- /lucia/services/command_use_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/command_use_count.py -------------------------------------------------------------------------------- /lucia/services/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/common.py -------------------------------------------------------------------------------- /lucia/services/db_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/db_context.py -------------------------------------------------------------------------------- /lucia/services/group_user_checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/group_user_checkin.py -------------------------------------------------------------------------------- /lucia/services/inmsg_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/inmsg_count.py -------------------------------------------------------------------------------- /lucia/services/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/log.py -------------------------------------------------------------------------------- /lucia/services/processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/processpool.py -------------------------------------------------------------------------------- /lucia/services/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Box-s-ville/luciabot/HEAD/lucia/services/weather.py --------------------------------------------------------------------------------