├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish-docker_on_master.yml │ └── publish-docker_on_release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bot ├── __init__.py ├── func_helper │ ├── __init__.py │ ├── backup_db_utils.py │ ├── emby.py │ ├── filters.py │ ├── fix_bottons.py │ ├── logger_config.py │ ├── moviepilot.py │ ├── msg_utils.py │ ├── nezha_res.py │ ├── scheduler.py │ ├── utils.py │ └── yvlu.json ├── modules │ ├── __init__.py │ ├── callback │ │ ├── __init__.py │ │ ├── checkin.py │ │ ├── close_it.py │ │ ├── leave_delemby.py │ │ ├── leave_unauth_group.py │ │ └── on_inline_query.py │ ├── commands │ │ ├── __init__.py │ │ ├── audit.py │ │ ├── emby_libs.py │ │ ├── exchange.py │ │ ├── pro_rev.py │ │ ├── renew.py │ │ ├── renewall.py │ │ ├── rmemby.py │ │ ├── score_coins.py │ │ ├── start.py │ │ ├── syncs.py │ │ └── view_user.py │ ├── extra │ │ ├── __init__.py │ │ ├── antichanel.py │ │ ├── create.py │ │ └── red_envelope.py │ └── panel │ │ ├── __init__.py │ │ ├── admin_panel.py │ │ ├── config_panel.py │ │ ├── kk.py │ │ ├── member_panel.py │ │ ├── request_movie_panel.py │ │ ├── sched_panel.py │ │ └── server_panel.py ├── ranks_helper │ ├── __init__.py │ ├── ranks_draw.py │ ├── red │ │ ├── bg │ │ │ ├── bg01.png │ │ │ ├── bg02.png │ │ │ ├── bg03.png │ │ │ ├── bg04.png │ │ │ ├── bg05.png │ │ │ ├── bg06.png │ │ │ └── bg07.png │ │ ├── red_make.py │ │ └── red_mask.png │ └── resource │ │ ├── bg │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 7.jpg │ │ └── 9.jpg │ │ ├── cover-ranks-1.psd │ │ ├── cover-ranks-2.psd │ │ ├── cover-ranks-mask-1.png │ │ ├── cover-ranks-mask-2.png │ │ ├── cover-ranks-mask-test.png │ │ ├── day_ranks_mask.png │ │ ├── day_ranks_mask_backdrop.png │ │ ├── font │ │ ├── PingFang Bold.ttf │ │ └── Provicali.otf │ │ ├── test.png │ │ ├── test1.png │ │ ├── week_ranks_mask.png │ │ └── week_ranks_mask_backdrop.png ├── scheduler │ ├── __init__.py │ ├── backup_db.py │ ├── bot_commands.py │ ├── check_ex.py │ ├── check_restart.py │ ├── ranks_task.py │ ├── sync_favorites.py │ ├── sync_mp_download.py │ └── userplays_rank.py ├── schemas │ ├── __init__.py │ └── schemas.py ├── sql_helper │ ├── __init__.py │ ├── sql_code.py │ ├── sql_emby.py │ ├── sql_emby2.py │ ├── sql_favorites.py │ └── sql_request_record.py └── web │ ├── __init__.py │ └── api │ ├── __init__.py │ ├── ban_playlist.py │ ├── user_info.py │ └── webhook │ ├── __init__.py │ ├── client_filter.py │ ├── favorites.py │ └── media.py ├── config_example.json ├── docker-compose.yml ├── embyboss.service ├── image ├── bixin.jpg ├── bot2.png ├── bot_logo.png ├── bt.png ├── fwq.png ├── mysql.png └── sakura.png ├── log └── img │ └── 2023-12-01.jpg ├── main.py ├── nginx └── nginx.conf └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish-docker_on_master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/.github/workflows/publish-docker_on_master.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docker_on_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/.github/workflows/publish-docker_on_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/func_helper/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | __init__.py - 3 | 4 | Author:susu 5 | Date:2023/7/8 6 | """ 7 | -------------------------------------------------------------------------------- /bot/func_helper/backup_db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/backup_db_utils.py -------------------------------------------------------------------------------- /bot/func_helper/emby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/emby.py -------------------------------------------------------------------------------- /bot/func_helper/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/filters.py -------------------------------------------------------------------------------- /bot/func_helper/fix_bottons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/fix_bottons.py -------------------------------------------------------------------------------- /bot/func_helper/logger_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/logger_config.py -------------------------------------------------------------------------------- /bot/func_helper/moviepilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/moviepilot.py -------------------------------------------------------------------------------- /bot/func_helper/msg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/msg_utils.py -------------------------------------------------------------------------------- /bot/func_helper/nezha_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/nezha_res.py -------------------------------------------------------------------------------- /bot/func_helper/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/scheduler.py -------------------------------------------------------------------------------- /bot/func_helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/utils.py -------------------------------------------------------------------------------- /bot/func_helper/yvlu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/func_helper/yvlu.json -------------------------------------------------------------------------------- /bot/modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/modules/callback/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/callback/__init__.py -------------------------------------------------------------------------------- /bot/modules/callback/checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/callback/checkin.py -------------------------------------------------------------------------------- /bot/modules/callback/close_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/callback/close_it.py -------------------------------------------------------------------------------- /bot/modules/callback/leave_delemby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/callback/leave_delemby.py -------------------------------------------------------------------------------- /bot/modules/callback/leave_unauth_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/callback/leave_unauth_group.py -------------------------------------------------------------------------------- /bot/modules/callback/on_inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/callback/on_inline_query.py -------------------------------------------------------------------------------- /bot/modules/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/__init__.py -------------------------------------------------------------------------------- /bot/modules/commands/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/audit.py -------------------------------------------------------------------------------- /bot/modules/commands/emby_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/emby_libs.py -------------------------------------------------------------------------------- /bot/modules/commands/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/exchange.py -------------------------------------------------------------------------------- /bot/modules/commands/pro_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/pro_rev.py -------------------------------------------------------------------------------- /bot/modules/commands/renew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/renew.py -------------------------------------------------------------------------------- /bot/modules/commands/renewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/renewall.py -------------------------------------------------------------------------------- /bot/modules/commands/rmemby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/rmemby.py -------------------------------------------------------------------------------- /bot/modules/commands/score_coins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/score_coins.py -------------------------------------------------------------------------------- /bot/modules/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/start.py -------------------------------------------------------------------------------- /bot/modules/commands/syncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/syncs.py -------------------------------------------------------------------------------- /bot/modules/commands/view_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/commands/view_user.py -------------------------------------------------------------------------------- /bot/modules/extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/extra/__init__.py -------------------------------------------------------------------------------- /bot/modules/extra/antichanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/extra/antichanel.py -------------------------------------------------------------------------------- /bot/modules/extra/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/extra/create.py -------------------------------------------------------------------------------- /bot/modules/extra/red_envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/extra/red_envelope.py -------------------------------------------------------------------------------- /bot/modules/panel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/__init__.py -------------------------------------------------------------------------------- /bot/modules/panel/admin_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/admin_panel.py -------------------------------------------------------------------------------- /bot/modules/panel/config_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/config_panel.py -------------------------------------------------------------------------------- /bot/modules/panel/kk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/kk.py -------------------------------------------------------------------------------- /bot/modules/panel/member_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/member_panel.py -------------------------------------------------------------------------------- /bot/modules/panel/request_movie_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/request_movie_panel.py -------------------------------------------------------------------------------- /bot/modules/panel/sched_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/sched_panel.py -------------------------------------------------------------------------------- /bot/modules/panel/server_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/modules/panel/server_panel.py -------------------------------------------------------------------------------- /bot/ranks_helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/ranks_helper/ranks_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/ranks_draw.py -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg01.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg02.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg03.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg04.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg05.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg06.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/bg/bg07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/bg/bg07.png -------------------------------------------------------------------------------- /bot/ranks_helper/red/red_make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/red_make.py -------------------------------------------------------------------------------- /bot/ranks_helper/red/red_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/red/red_mask.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/0.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/1.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/10.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/11.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/12.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/13.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/14.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/15.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/2.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/3.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/4.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/5.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/7.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/bg/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/bg/9.jpg -------------------------------------------------------------------------------- /bot/ranks_helper/resource/cover-ranks-1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/cover-ranks-1.psd -------------------------------------------------------------------------------- /bot/ranks_helper/resource/cover-ranks-2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/cover-ranks-2.psd -------------------------------------------------------------------------------- /bot/ranks_helper/resource/cover-ranks-mask-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/cover-ranks-mask-1.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/cover-ranks-mask-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/cover-ranks-mask-2.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/cover-ranks-mask-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/cover-ranks-mask-test.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/day_ranks_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/day_ranks_mask.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/day_ranks_mask_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/day_ranks_mask_backdrop.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/font/PingFang Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/font/PingFang Bold.ttf -------------------------------------------------------------------------------- /bot/ranks_helper/resource/font/Provicali.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/font/Provicali.otf -------------------------------------------------------------------------------- /bot/ranks_helper/resource/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/test.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/test1.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/week_ranks_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/week_ranks_mask.png -------------------------------------------------------------------------------- /bot/ranks_helper/resource/week_ranks_mask_backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/ranks_helper/resource/week_ranks_mask_backdrop.png -------------------------------------------------------------------------------- /bot/scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/__init__.py -------------------------------------------------------------------------------- /bot/scheduler/backup_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/backup_db.py -------------------------------------------------------------------------------- /bot/scheduler/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/bot_commands.py -------------------------------------------------------------------------------- /bot/scheduler/check_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/check_ex.py -------------------------------------------------------------------------------- /bot/scheduler/check_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/check_restart.py -------------------------------------------------------------------------------- /bot/scheduler/ranks_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/ranks_task.py -------------------------------------------------------------------------------- /bot/scheduler/sync_favorites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/sync_favorites.py -------------------------------------------------------------------------------- /bot/scheduler/sync_mp_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/sync_mp_download.py -------------------------------------------------------------------------------- /bot/scheduler/userplays_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/scheduler/userplays_rank.py -------------------------------------------------------------------------------- /bot/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/schemas/__init__.py -------------------------------------------------------------------------------- /bot/schemas/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/schemas/schemas.py -------------------------------------------------------------------------------- /bot/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/sql_helper/__init__.py -------------------------------------------------------------------------------- /bot/sql_helper/sql_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/sql_helper/sql_code.py -------------------------------------------------------------------------------- /bot/sql_helper/sql_emby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/sql_helper/sql_emby.py -------------------------------------------------------------------------------- /bot/sql_helper/sql_emby2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/sql_helper/sql_emby2.py -------------------------------------------------------------------------------- /bot/sql_helper/sql_favorites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/sql_helper/sql_favorites.py -------------------------------------------------------------------------------- /bot/sql_helper/sql_request_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/sql_helper/sql_request_record.py -------------------------------------------------------------------------------- /bot/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/__init__.py -------------------------------------------------------------------------------- /bot/web/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/api/__init__.py -------------------------------------------------------------------------------- /bot/web/api/ban_playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/api/ban_playlist.py -------------------------------------------------------------------------------- /bot/web/api/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/api/user_info.py -------------------------------------------------------------------------------- /bot/web/api/webhook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/web/api/webhook/client_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/api/webhook/client_filter.py -------------------------------------------------------------------------------- /bot/web/api/webhook/favorites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/api/webhook/favorites.py -------------------------------------------------------------------------------- /bot/web/api/webhook/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/bot/web/api/webhook/media.py -------------------------------------------------------------------------------- /config_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/config_example.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /embyboss.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/embyboss.service -------------------------------------------------------------------------------- /image/bixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/bixin.jpg -------------------------------------------------------------------------------- /image/bot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/bot2.png -------------------------------------------------------------------------------- /image/bot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/bot_logo.png -------------------------------------------------------------------------------- /image/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/bt.png -------------------------------------------------------------------------------- /image/fwq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/fwq.png -------------------------------------------------------------------------------- /image/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/mysql.png -------------------------------------------------------------------------------- /image/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/image/sakura.png -------------------------------------------------------------------------------- /log/img/2023-12-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/log/img/2023-12-01.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/main.py -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berry8838/Sakura_embyboss/HEAD/requirements.txt --------------------------------------------------------------------------------