mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
Compare commits
71 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 274f30f82a | |||
| efb1ddb260 | |||
| 7e3f49bc9e | |||
| 665772ed66 | |||
|
|
44fda8a19e | ||
|
|
6921bf4e37 | ||
|
|
c3c97c1c8b | ||
|
|
1d33872c9b | ||
|
|
b2d5a1e729 | ||
|
|
a0fd9eaed3 | ||
|
|
593723aa76 | ||
|
|
73d97d8458 | ||
|
|
d6f11655c1 | ||
|
|
376e85e36e | ||
|
|
45116a1418 | ||
|
|
a42d3e3837 | ||
|
|
b333c54c7d | ||
|
|
8840402d2f | ||
|
|
e8b64b23f5 | ||
|
|
40762a3180 | ||
|
|
a2c6ad8328 | ||
|
|
c7d93069ef | ||
| 4b514df2db | |||
| 47c83be1b5 | |||
| 6c0e092f51 | |||
| 04b9cd9eae | |||
|
|
61b5fcb137 | ||
| c0540769c8 | |||
|
|
0e19943046 | ||
|
|
7e1d2e8cb0 | ||
|
|
8931cfb5a7 | ||
|
|
ea8a18c1b1 | ||
| ef1acb0f16 | |||
|
|
f7bb667254 | ||
|
|
fa94c1beeb | ||
|
|
4e1e91a977 | ||
|
|
0f6a00819b | ||
|
|
b56385b412 | ||
|
|
7eea235f52 | ||
|
|
8a06b572ed | ||
| 6867245be3 | |||
|
|
eebff0a8ad | ||
| 74eef41506 | |||
| 5eb4771259 | |||
| 7a3a4d936d | |||
|
|
03ca7c4486 | ||
|
|
b043d1da59 | ||
|
|
c9659201b1 | ||
|
|
617d3ec658 | ||
|
|
57a1992675 | ||
|
|
8d1d2f329e | ||
|
|
fa6cbd5c6d | ||
|
|
9f0f0b87f4 | ||
|
|
96c298b1b8 | ||
|
|
df5ced235d | ||
|
|
af83c7a2d9 | ||
|
|
bc41a91034 | ||
|
|
d97291d1bc | ||
| 5b56de9de1 | |||
| 0898a81331 | |||
|
|
d464059c0a | ||
|
|
6ea8b9328c | ||
|
|
773ff5545c | ||
|
|
94710b938b | ||
| ec09bb734d | |||
|
|
9e9a642847 | ||
|
|
04e0b14e72 | ||
|
|
20ce9c64be | ||
|
|
8af07bf031 | ||
|
|
3a904f67ad | ||
|
|
fc9b751ac4 |
12
.github/dependabot.yml
vendored
12
.github/dependabot.yml
vendored
@@ -1,12 +0,0 @@
|
|||||||
# To get started with Dependabot version updates, you'll need to specify which
|
|
||||||
# package ecosystems to update and where the package manifests are located.
|
|
||||||
# Please see the documentation for all configuration options:
|
|
||||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
||||||
|
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "pip" # See documentation for possible values
|
|
||||||
directory: "/" # Location of package manifests
|
|
||||||
target-branch: "main"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
25
.github/workflows/Release.yml
vendored
25
.github/workflows/Release.yml
vendored
@@ -12,24 +12,25 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install poetry
|
- uses: astral-sh/setup-uv@v3
|
||||||
run: pipx install poetry
|
name: Setup UV
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
enable-cache: true
|
||||||
cache: "poetry"
|
|
||||||
|
|
||||||
- run: poetry install
|
- name: "Set up Python"
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version-file: ".python-version"
|
||||||
|
|
||||||
|
- run: uv sync
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Get Version
|
- name: Get Version
|
||||||
id: version
|
id: version
|
||||||
run: |
|
run: |
|
||||||
echo "VERSION=$(poetry version -s)" >> $GITHUB_OUTPUT
|
echo "VERSION=$(uvx pdm show --version)" >> $GITHUB_OUTPUT
|
||||||
echo "TAG_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
echo "TAG_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
@@ -38,10 +39,10 @@ jobs:
|
|||||||
run: exit 1
|
run: exit 1
|
||||||
|
|
||||||
- name: Build Package
|
- name: Build Package
|
||||||
run: poetry build
|
run: uv build
|
||||||
|
|
||||||
- name: Publish Package to PyPI
|
- name: Publish Package to PyPI
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
run: uv publish
|
||||||
|
|
||||||
- name: Publish Package to GitHub Release
|
- name: Publish Package to GitHub Release
|
||||||
run: gh release create ${{ steps.version.outputs.TAG_NAME }} dist/*.tar.gz dist/*.whl -t "🔖 ${{ steps.version.outputs.TAG_NAME }}" --generate-notes
|
run: gh release create ${{ steps.version.outputs.TAG_NAME }} dist/*.tar.gz dist/*.whl -t "🔖 ${{ steps.version.outputs.TAG_NAME }}" --generate-notes
|
||||||
|
|||||||
45
.github/workflows/TypeCheck.yml
vendored
45
.github/workflows/TypeCheck.yml
vendored
@@ -1,32 +1,33 @@
|
|||||||
name: TypeCheck
|
name: TypeCheck
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
TypeCheck:
|
TypeCheck:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install poetry
|
- uses: astral-sh/setup-uv@v3
|
||||||
run: pipx install poetry
|
name: Setup UV
|
||||||
shell: bash
|
with:
|
||||||
|
enable-cache: true
|
||||||
|
|
||||||
- uses: actions/setup-python@v5
|
- name: "Set up Python"
|
||||||
with:
|
uses: actions/setup-python@v5
|
||||||
python-version: '3.10'
|
with:
|
||||||
cache: 'poetry'
|
python-version-file: ".python-version"
|
||||||
|
|
||||||
- run: poetry install
|
- run: uv sync
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Run Mypy
|
- name: Run Mypy
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
poetry run mypy ./nonebot_plugin_tetris_stats
|
uv run mypy ./nonebot_plugin_tetris_stats
|
||||||
|
|
||||||
- name: Run BasedPyright
|
- name: Run BasedPyright
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
poetry run basedpyright ./nonebot_plugin_tetris_stats/
|
uv run basedpyright ./nonebot_plugin_tetris_stats/
|
||||||
|
|||||||
8
.github/workflows/codeql-analysis.yml
vendored
8
.github/workflows/codeql-analysis.yml
vendored
@@ -38,11 +38,11 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v2
|
uses: github/codeql-action/init@v3
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
@@ -56,7 +56,7 @@ jobs:
|
|||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v2
|
uses: github/codeql-action/autobuild@v3
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||||
@@ -69,4 +69,4 @@ jobs:
|
|||||||
# ./location_of_script_within_repo/buildscript.sh
|
# ./location_of_script_within_repo/buildscript.sh
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v2
|
uses: github/codeql-action/analyze@v3
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ ci:
|
|||||||
autoupdate_commit_msg: ':arrow_up: auto update by pre-commit hooks'
|
autoupdate_commit_msg: ':arrow_up: auto update by pre-commit hooks'
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: v0.6.4
|
rev: v0.7.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args: [--fix, --exit-non-zero-on-fix]
|
args: [--fix, --exit-non-zero-on-fix]
|
||||||
stages: [commit]
|
stages: [pre-commit]
|
||||||
- id: ruff-format
|
- id: ruff-format
|
||||||
stages: [commit]
|
stages: [pre-commit]
|
||||||
|
|
||||||
- repo: https://github.com/nonebot/nonemoji
|
- repo: https://github.com/nonebot/nonemoji
|
||||||
rev: v0.1.4
|
rev: v0.1.4
|
||||||
|
|||||||
1
.python-version
Normal file
1
.python-version
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.10
|
||||||
58
CONTRIBUTING.en-US.md
Normal file
58
CONTRIBUTING.en-US.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
# How to Contribute?
|
||||||
|
|
||||||
|
## Setting Up the Environment
|
||||||
|
|
||||||
|
### For Developers with Basic Python Knowledge
|
||||||
|
|
||||||
|
First, you need install [uv](https://docs.astral.sh/uv/).
|
||||||
|
Then:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Set up the basic Python environment
|
||||||
|
uv python install 3.10
|
||||||
|
|
||||||
|
# Clone the repository
|
||||||
|
git clone https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
|
||||||
|
cd nonebot-plugin-tetris-stats
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
uv sync
|
||||||
|
```
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
### Code Development
|
||||||
|
|
||||||
|
1. For static code analysis, use [ruff](https://docs.astral.sh/ruff/). You can install the corresponding plugin for your IDE or use the command line with `ruff check ./nonebot_plugin_tetris_stats/` to check the code.
|
||||||
|
2. For code formatting, use [ruff](https://docs.astral.sh/ruff/). You can install the corresponding plugin for your IDE or use the command line with `ruff format ./nonebot_plugin_tetris_stats/` to format the code.
|
||||||
|
3. For type checking, use both [basedpyright](https://docs.basedpyright.com/latest/) and [mypy](https://www.mypy-lang.org/). You can install the corresponding plugins for your IDE or use the following commands in the terminal to check the code:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# basedpyright
|
||||||
|
basedpyright ./nonebot_plugin_tetris_stats/
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
mypy ./nonebot_plugin_tetris_stats/
|
||||||
|
```
|
||||||
|
|
||||||
|
### Internationalization
|
||||||
|
|
||||||
|
This project uses [Tarina](https://github.com/ArcletProject/Tarina) for internationalization support.
|
||||||
|
|
||||||
|
#### Adding a New Language
|
||||||
|
|
||||||
|
1. Navigate to the `./nonebot_plugin_tetris_stats/i18n/` directory.
|
||||||
|
2. Run `tarina-lang create {language_code}` * Please note that the language code should preferably follow the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) standard.
|
||||||
|
3. Edit the generated `./nonebot_plugin_tetris_stats/i18n/{language_code}.json` file.
|
||||||
|
|
||||||
|
#### Updating an Existing Language
|
||||||
|
|
||||||
|
1. Navigate to the `./nonebot_plugin_tetris_stats/i18n/` directory.
|
||||||
|
2. Edit the corresponding `./nonebot_plugin_tetris_stats/i18n/{language_code}.json` file.
|
||||||
|
|
||||||
|
#### Adding New Entries
|
||||||
|
|
||||||
|
1. Navigate to the `./nonebot_plugin_tetris_stats/i18n/` directory.
|
||||||
|
2. Edit the `.template.json` file.
|
||||||
|
3. Run `tarina-lang schema && tarina-lang model`.
|
||||||
|
4. Modify the language files, adding new entries at least to `en-US.json`.
|
||||||
57
CONTRIBUTING.md
Normal file
57
CONTRIBUTING.md
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
# 我该如何参与开发?
|
||||||
|
|
||||||
|
## 配置环境
|
||||||
|
|
||||||
|
首先你需要安装 [uv](https://docs.astral.sh/uv/)。
|
||||||
|
然后:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 配置基础 Python 环境
|
||||||
|
uv python install 3.10
|
||||||
|
|
||||||
|
# 克隆仓库
|
||||||
|
git clone https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
|
||||||
|
cd nonebot-plugin-tetris-stats
|
||||||
|
|
||||||
|
# 安装依赖
|
||||||
|
uv sync
|
||||||
|
```
|
||||||
|
|
||||||
|
## 开发
|
||||||
|
|
||||||
|
### 代码开发
|
||||||
|
|
||||||
|
1. 代码静态检查使用 [ruff](https://docs.astral.sh/ruff/),你可以为你的ide安装对应插件来使用,也可以在命令行使用`ruff check ./nonebot_plugin_tetris_stats/`来检查代码。
|
||||||
|
2. 代码格式化使用 [ruff](https://docs.astral.sh/ruff/),你可以为你的ide安装对应插件来使用,也可以在命令行使用`ruff format ./nonebot_plugin_tetris_stats/`来格式化代码。
|
||||||
|
3. 类型检查同时使用 [basedpyright](https://docs.basedpyright.com/latest/) 和 [mypy](https://www.mypy-lang.org/),你可以为你的ide安装对应插件来使用。
|
||||||
|
也可以在命令行使用下面的命令来检查代码:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# basedpyright
|
||||||
|
basedpyright ./nonebot_plugin_tetris_stats/
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
mypy ./nonebot_plugin_tetris_stats/
|
||||||
|
```
|
||||||
|
|
||||||
|
### 国际化
|
||||||
|
|
||||||
|
本项目使用 [Tarina](https://github.com/ArcletProject/Tarina) 提供国际化支持。
|
||||||
|
|
||||||
|
#### 添加新的语言
|
||||||
|
|
||||||
|
1. 进入 `./nonebot_plugin_tetris_stats/i18n/` 目录。
|
||||||
|
2. 运行 `tarina-lang create {语言代码}` * 请注意,语言代码最好符合 [IETF语言标签](https://zh.wikipedia.org/wiki/IETF%E8%AF%AD%E8%A8%80%E6%A0%87%E7%AD%BE) 的规范。
|
||||||
|
3. 编辑生成的 `./nonebot_plugin_tetris_stats/i18n/{语言代码}.json` 文件。
|
||||||
|
|
||||||
|
#### 更新已有语言
|
||||||
|
|
||||||
|
1. 进入 `./nonebot_plugin_tetris_stats/i18n/` 目录。
|
||||||
|
2. 编辑对应的 `./nonebot_plugin_tetris_stats/i18n/{语言代码}.json` 文件。
|
||||||
|
|
||||||
|
#### 添加新的条目
|
||||||
|
|
||||||
|
1. 进入 `./nonebot_plugin_tetris_stats/i18n/` 目录。
|
||||||
|
2. 编辑 `.template.json` 文件。
|
||||||
|
3. 运行 `tarina-lang schema && tarina-lang model`。
|
||||||
|
4. 修改语言文件,至少为`en-US.json`添加新的条目。
|
||||||
@@ -29,7 +29,7 @@ branch_labels: str | Sequence[str] | None = None
|
|||||||
depends_on: str | Sequence[str] | None = None
|
depends_on: str | Sequence[str] | None = None
|
||||||
|
|
||||||
|
|
||||||
def migrate_old_data() -> None:
|
def migrate_old_data() -> None: # noqa: C901
|
||||||
from json import dumps, loads
|
from json import dumps, loads
|
||||||
|
|
||||||
Base = automap_base() # noqa: N806
|
Base = automap_base() # noqa: N806
|
||||||
@@ -47,6 +47,9 @@ def migrate_old_data() -> None:
|
|||||||
TimeRemainingColumn(),
|
TimeRemainingColumn(),
|
||||||
) as progress,
|
) as progress,
|
||||||
):
|
):
|
||||||
|
if session.query(OldHistoricalData).count() == 0:
|
||||||
|
logger.info('空表, 跳过')
|
||||||
|
return
|
||||||
task_id = progress.add_task('[cyan]Migrating:', total=session.query(OldHistoricalData).count())
|
task_id = progress.add_task('[cyan]Migrating:', total=session.query(OldHistoricalData).count())
|
||||||
pointer = 0
|
pointer = 0
|
||||||
while pointer < session.query(OldHistoricalData).order_by(desc(OldHistoricalData.id)).limit(1).one().id:
|
while pointer < session.query(OldHistoricalData).order_by(desc(OldHistoricalData.id)).limit(1).one().id:
|
||||||
|
|||||||
@@ -28,12 +28,6 @@ depends_on: str | Sequence[str] | None = None
|
|||||||
def upgrade(name: str = '') -> None: # noqa: C901
|
def upgrade(name: str = '') -> None: # noqa: C901
|
||||||
if name:
|
if name:
|
||||||
return
|
return
|
||||||
from nonebot_plugin_tetris_stats.version import __version__
|
|
||||||
|
|
||||||
if __version__ != '1.0.3':
|
|
||||||
msg = '本迁移需要1.0.3版本, 请先锁定版本至1.0.3版本再执行本迁移'
|
|
||||||
logger.critical(msg)
|
|
||||||
raise RuntimeError(msg)
|
|
||||||
|
|
||||||
from nonebot.compat import PYDANTIC_V2, type_validate_json
|
from nonebot.compat import PYDANTIC_V2, type_validate_json
|
||||||
from pydantic import BaseModel, ValidationError
|
from pydantic import BaseModel, ValidationError
|
||||||
@@ -46,10 +40,6 @@ def upgrade(name: str = '') -> None: # noqa: C901
|
|||||||
TimeRemainingColumn,
|
TimeRemainingColumn,
|
||||||
)
|
)
|
||||||
|
|
||||||
from nonebot_plugin_tetris_stats.game_data_processor.schemas import ( # type: ignore[import-untyped]
|
|
||||||
BaseProcessedData,
|
|
||||||
)
|
|
||||||
|
|
||||||
Base = automap_base() # noqa: N806
|
Base = automap_base() # noqa: N806
|
||||||
Base.prepare(autoload_with=op.get_bind())
|
Base.prepare(autoload_with=op.get_bind())
|
||||||
HistoricalData = Base.classes.nonebot_plugin_tetris_stats_historicaldata # noqa: N806
|
HistoricalData = Base.classes.nonebot_plugin_tetris_stats_historicaldata # noqa: N806
|
||||||
@@ -62,18 +52,33 @@ def upgrade(name: str = '') -> None: # noqa: C901
|
|||||||
def model_to_json(value: BaseModel) -> str:
|
def model_to_json(value: BaseModel) -> str:
|
||||||
return value.json(by_alias=True)
|
return value.json(by_alias=True)
|
||||||
|
|
||||||
models = BaseProcessedData.__subclasses__()
|
|
||||||
|
|
||||||
def json_to_model(value: str) -> BaseModel:
|
|
||||||
for i in models:
|
|
||||||
try:
|
|
||||||
return type_validate_json(i, value)
|
|
||||||
except ValidationError: # noqa: PERF203
|
|
||||||
...
|
|
||||||
raise ValueError
|
|
||||||
|
|
||||||
with Session(op.get_bind()) as session:
|
with Session(op.get_bind()) as session:
|
||||||
count = session.query(HistoricalData).count()
|
count = session.query(HistoricalData).count()
|
||||||
|
if count == 0:
|
||||||
|
logger.info('空表, 跳过')
|
||||||
|
return
|
||||||
|
|
||||||
|
from nonebot_plugin_tetris_stats.version import __version__
|
||||||
|
|
||||||
|
if __version__ != '1.0.3':
|
||||||
|
msg = '本迁移需要1.0.3版本, 请先锁定版本至1.0.3版本再执行本迁移'
|
||||||
|
logger.critical(msg)
|
||||||
|
raise RuntimeError(msg)
|
||||||
|
|
||||||
|
from nonebot_plugin_tetris_stats.game_data_processor.schemas import ( # type: ignore[import-untyped]
|
||||||
|
BaseProcessedData,
|
||||||
|
)
|
||||||
|
|
||||||
|
models = BaseProcessedData.__subclasses__()
|
||||||
|
|
||||||
|
def json_to_model(value: str) -> BaseModel:
|
||||||
|
for i in models:
|
||||||
|
try:
|
||||||
|
return type_validate_json(i, value)
|
||||||
|
except ValidationError: # noqa: PERF203
|
||||||
|
...
|
||||||
|
raise ValueError
|
||||||
|
|
||||||
with Progress(
|
with Progress(
|
||||||
TextColumn('[progress.description]{task.description}'),
|
TextColumn('[progress.description]{task.description}'),
|
||||||
BarColumn(),
|
BarColumn(),
|
||||||
|
|||||||
@@ -26,12 +26,7 @@ depends_on: str | Sequence[str] | None = None
|
|||||||
def upgrade(name: str = '') -> None:
|
def upgrade(name: str = '') -> None:
|
||||||
if name:
|
if name:
|
||||||
return
|
return
|
||||||
from nonebot_plugin_tetris_stats.version import __version__
|
|
||||||
|
|
||||||
if __version__ != '1.0.4':
|
|
||||||
msg = '本迁移需要1.0.4版本, 请先锁定版本至1.0.4版本再执行本迁移'
|
|
||||||
logger.critical(msg)
|
|
||||||
raise RuntimeError(msg)
|
|
||||||
from nonebot.compat import type_validate_json
|
from nonebot.compat import type_validate_json
|
||||||
from pydantic import ValidationError
|
from pydantic import ValidationError
|
||||||
from rich.progress import (
|
from rich.progress import (
|
||||||
@@ -46,8 +41,6 @@ def upgrade(name: str = '') -> None:
|
|||||||
from sqlalchemy.ext.automap import automap_base
|
from sqlalchemy.ext.automap import automap_base
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
|
|
||||||
from nonebot_plugin_tetris_stats.game_data_processor.schemas import BaseUser # type: ignore[import-untyped]
|
|
||||||
|
|
||||||
with op.batch_alter_table('nonebot_plugin_tetris_stats_historicaldata', schema=None) as batch_op:
|
with op.batch_alter_table('nonebot_plugin_tetris_stats_historicaldata', schema=None) as batch_op:
|
||||||
batch_op.add_column(sa.Column('user_unique_identifier', sa.String(length=32), nullable=True))
|
batch_op.add_column(sa.Column('user_unique_identifier', sa.String(length=32), nullable=True))
|
||||||
batch_op.create_index(
|
batch_op.create_index(
|
||||||
@@ -60,37 +53,48 @@ def upgrade(name: str = '') -> None:
|
|||||||
Base.prepare(autoload_with=connection)
|
Base.prepare(autoload_with=connection)
|
||||||
HistoricalData = Base.classes.nonebot_plugin_tetris_stats_historicaldata # noqa: N806
|
HistoricalData = Base.classes.nonebot_plugin_tetris_stats_historicaldata # noqa: N806
|
||||||
|
|
||||||
models: list[type[BaseUser]] = BaseUser.__subclasses__()
|
|
||||||
|
|
||||||
def json_to_model(value: str) -> BaseUser:
|
|
||||||
for i in models:
|
|
||||||
try:
|
|
||||||
return type_validate_json(i, value)
|
|
||||||
except ValidationError: # noqa: PERF203
|
|
||||||
...
|
|
||||||
raise ValueError
|
|
||||||
|
|
||||||
with Session(op.get_bind()) as session:
|
with Session(op.get_bind()) as session:
|
||||||
count = session.query(HistoricalData).count()
|
count = session.query(HistoricalData).count()
|
||||||
with Progress(
|
if count == 0:
|
||||||
TextColumn('[progress.description]{task.description}'),
|
logger.info('空表, 跳过')
|
||||||
BarColumn(),
|
else:
|
||||||
MofNCompleteColumn(),
|
from nonebot_plugin_tetris_stats.version import __version__
|
||||||
TaskProgressColumn(),
|
|
||||||
TimeRemainingColumn(),
|
if __version__ != '1.0.4':
|
||||||
) as progress:
|
msg = '本迁移需要1.0.4版本, 请先锁定版本至1.0.4版本再执行本迁移'
|
||||||
task_id = progress.add_task('[cyan]Updateing:', total=count)
|
logger.critical(msg)
|
||||||
for i in range(0, count, 100):
|
raise RuntimeError(msg)
|
||||||
for j in session.scalars(
|
from nonebot_plugin_tetris_stats.game_data_processor.schemas import BaseUser # type: ignore[import-untyped]
|
||||||
select(HistoricalData).where(HistoricalData.id > i).order_by(HistoricalData.id).limit(100)
|
|
||||||
):
|
models: list[type[BaseUser]] = BaseUser.__subclasses__()
|
||||||
model = json_to_model(j.game_user)
|
|
||||||
|
def json_to_model(value: str) -> BaseUser:
|
||||||
|
for i in models:
|
||||||
try:
|
try:
|
||||||
j.user_unique_identifier = model.unique_identifier
|
return type_validate_json(i, value)
|
||||||
except ValueError:
|
except ValidationError: # noqa: PERF203
|
||||||
session.delete(j)
|
...
|
||||||
progress.update(task_id, advance=1)
|
raise ValueError
|
||||||
session.commit()
|
|
||||||
|
with Progress(
|
||||||
|
TextColumn('[progress.description]{task.description}'),
|
||||||
|
BarColumn(),
|
||||||
|
MofNCompleteColumn(),
|
||||||
|
TaskProgressColumn(),
|
||||||
|
TimeRemainingColumn(),
|
||||||
|
) as progress:
|
||||||
|
task_id = progress.add_task('[cyan]Updateing:', total=count)
|
||||||
|
for i in range(0, count, 100):
|
||||||
|
for j in session.scalars(
|
||||||
|
select(HistoricalData).where(HistoricalData.id > i).order_by(HistoricalData.id).limit(100)
|
||||||
|
):
|
||||||
|
model = json_to_model(j.game_user)
|
||||||
|
try:
|
||||||
|
j.user_unique_identifier = model.unique_identifier
|
||||||
|
except ValueError:
|
||||||
|
session.delete(j)
|
||||||
|
progress.update(task_id, advance=1)
|
||||||
|
session.commit()
|
||||||
with op.batch_alter_table('nonebot_plugin_tetris_stats_historicaldata', schema=None) as batch_op:
|
with op.batch_alter_table('nonebot_plugin_tetris_stats_historicaldata', schema=None) as batch_op:
|
||||||
batch_op.alter_column('user_unique_identifier', existing_type=sa.VARCHAR(length=32), nullable=False)
|
batch_op.alter_column('user_unique_identifier', existing_type=sa.VARCHAR(length=32), nullable=False)
|
||||||
logger.success('database upgrade success')
|
logger.success('database upgrade success')
|
||||||
|
|||||||
@@ -55,12 +55,12 @@ async def create_or_update_bind(
|
|||||||
game_account=game_account,
|
game_account=game_account,
|
||||||
)
|
)
|
||||||
session.add(bind)
|
session.add(bind)
|
||||||
message = BindStatus.SUCCESS
|
status = BindStatus.SUCCESS
|
||||||
else:
|
else:
|
||||||
bind.game_account = game_account
|
bind.game_account = game_account
|
||||||
message = BindStatus.UPDATE
|
status = BindStatus.UPDATE
|
||||||
await session.commit()
|
await session.commit()
|
||||||
return message
|
return status
|
||||||
|
|
||||||
|
|
||||||
T = TypeVar('T', 'TETRIOHistoricalData', 'TOPHistoricalData', 'TOSHistoricalData')
|
T = TypeVar('T', 'TETRIOHistoricalData', 'TOPHistoricalData', 'TOSHistoricalData')
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ from nonebot.typing import T_Handler
|
|||||||
from nonebot_plugin_alconna import AlcMatches, Alconna, At, CommandMeta, on_alconna
|
from nonebot_plugin_alconna import AlcMatches, Alconna, At, CommandMeta, on_alconna
|
||||||
|
|
||||||
from .. import ns
|
from .. import ns
|
||||||
|
from ..i18n.model import Lang
|
||||||
from ..utils.exception import MessageFormatError, NeedCatchError
|
from ..utils.exception import MessageFormatError, NeedCatchError
|
||||||
|
|
||||||
command: Alconna = Alconna(
|
command: Alconna = Alconna(
|
||||||
@@ -30,7 +31,7 @@ def add_block_handlers(handler: Callable[[T_Handler], T_Handler]) -> None:
|
|||||||
@handler
|
@handler
|
||||||
async def _(bot: Bot, matcher: Matcher, target: At):
|
async def _(bot: Bot, matcher: Matcher, target: At):
|
||||||
if isinstance(target, At) and target.target == bot.self_id:
|
if isinstance(target, At) and target.target == bot.self_id:
|
||||||
await matcher.finish('不能查询bot的信息')
|
await matcher.finish(Lang.interaction.wrong.query_bot())
|
||||||
|
|
||||||
|
|
||||||
from . import tetrio, top, tos # noqa: F401, E402
|
from . import tetrio, top, tos # noqa: F401, E402
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
CANT_VERIFY_MESSAGE = '* 由于无法验证绑定信息, 不能保证查询到的用户为本人\n'
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
from asyncio import Lock
|
from asyncio import Lock
|
||||||
from datetime import datetime, timezone
|
from datetime import datetime, timedelta, timezone
|
||||||
from typing import ClassVar
|
from typing import ClassVar
|
||||||
from weakref import WeakValueDictionary
|
from weakref import WeakValueDictionary
|
||||||
|
|
||||||
@@ -9,12 +9,15 @@ from nonebot.log import logger
|
|||||||
from yarl import URL
|
from yarl import URL
|
||||||
|
|
||||||
from ....config.config import config
|
from ....config.config import config
|
||||||
|
from ....utils.limit import limit
|
||||||
from ....utils.request import Request
|
from ....utils.request import Request
|
||||||
from .schemas.base import FailedModel, SuccessModel
|
from .schemas.base import FailedModel, SuccessModel
|
||||||
|
|
||||||
UTC = timezone.utc
|
UTC = timezone.utc
|
||||||
|
|
||||||
|
|
||||||
request = Request(config.tetris.proxy.tetrio or config.tetris.proxy.main)
|
request = Request(config.tetris.proxy.tetrio or config.tetris.proxy.main)
|
||||||
|
request.request = limit(timedelta(seconds=1))(request.request) # type: ignore[method-assign]
|
||||||
|
|
||||||
|
|
||||||
class Cache:
|
class Cache:
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ from ..constant import BASE_URL, USER_ID, USER_NAME
|
|||||||
from .cache import Cache
|
from .cache import Cache
|
||||||
from .models import TETRIOHistoricalData
|
from .models import TETRIOHistoricalData
|
||||||
from .schemas.base import FailedModel
|
from .schemas.base import FailedModel
|
||||||
|
from .schemas.labs.leagueflow import LeagueFlow, LeagueFlowSuccess
|
||||||
from .schemas.records.solo import Solo as SoloRecord
|
from .schemas.records.solo import Solo as SoloRecord
|
||||||
from .schemas.records.solo import SoloSuccessModel as RecordsSoloSuccessModel
|
from .schemas.records.solo import SoloSuccessModel as RecordsSoloSuccessModel
|
||||||
from .schemas.summaries import (
|
from .schemas.summaries import (
|
||||||
@@ -84,6 +85,7 @@ class Player:
|
|||||||
self._user_info: UserInfoSuccess | None = None
|
self._user_info: UserInfoSuccess | None = None
|
||||||
self._summaries: dict[Summaries, SummariesModel] = {}
|
self._summaries: dict[Summaries, SummariesModel] = {}
|
||||||
self._records: dict[RecordKey, RecordsSoloSuccessModel] = {}
|
self._records: dict[RecordKey, RecordsSoloSuccessModel] = {}
|
||||||
|
self._leagueflow: LeagueFlowSuccess | None = None
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def _request_user_parameter(self) -> str:
|
def _request_user_parameter(self) -> str:
|
||||||
@@ -161,6 +163,18 @@ class Player:
|
|||||||
)
|
)
|
||||||
return self._summaries[summaries_type]
|
return self._summaries[summaries_type]
|
||||||
|
|
||||||
|
async def get_leagueflow(self) -> LeagueFlowSuccess:
|
||||||
|
if self._leagueflow is None:
|
||||||
|
leagueflow: LeagueFlow = type_validate_json(
|
||||||
|
LeagueFlow, # type: ignore[arg-type]
|
||||||
|
await Cache.get(BASE_URL / 'labs/leagueflow' / self._request_user_parameter),
|
||||||
|
)
|
||||||
|
if isinstance(leagueflow, FailedModel):
|
||||||
|
msg = f'League 历史记录请求错误:\n{leagueflow.error}'
|
||||||
|
raise RequestError(msg)
|
||||||
|
self._leagueflow = leagueflow
|
||||||
|
return self._leagueflow
|
||||||
|
|
||||||
@property
|
@property
|
||||||
async def sprint(self) -> SummariesSoloSuccessModel:
|
async def sprint(self) -> SummariesSoloSuccessModel:
|
||||||
return await self.get_summaries('40l')
|
return await self.get_summaries('40l')
|
||||||
|
|||||||
@@ -50,19 +50,21 @@ class P(BaseModel):
|
|||||||
return Prisecter(f'{self.pri}:{self.sec}:{self.ter}')
|
return Prisecter(f'{self.pri}:{self.sec}:{self.ter}')
|
||||||
|
|
||||||
|
|
||||||
|
# fmt: off
|
||||||
class ArCounts(BaseModel):
|
class ArCounts(BaseModel):
|
||||||
bronze: int | None = Field(default=None, alias='1')
|
bronze: int | None = Field(default=None, alias='1') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
silver: int | None = Field(default=None, alias='2')
|
silver: int | None = Field(default=None, alias='2') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
gold: int | None = Field(default=None, alias='3')
|
gold: int | None = Field(default=None, alias='3') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
platinum: int | None = Field(default=None, alias='4')
|
platinum: int | None = Field(default=None, alias='4') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
diamond: int | None = Field(default=None, alias='5')
|
diamond: int | None = Field(default=None, alias='5') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
issued: int | None = Field(default=None, alias='100')
|
issued: int | None = Field(default=None, alias='100') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
top3: int | None = Field(default=None, alias='t3')
|
top3: int | None = Field(default=None, alias='t3')
|
||||||
top5: int | None = Field(default=None, alias='t5')
|
top5: int | None = Field(default=None, alias='t5')
|
||||||
top10: int | None = Field(default=None, alias='t10')
|
top10: int | None = Field(default=None, alias='t10')
|
||||||
top25: int | None = Field(default=None, alias='t25')
|
top25: int | None = Field(default=None, alias='t25')
|
||||||
top50: int | None = Field(default=None, alias='t50')
|
top50: int | None = Field(default=None, alias='t50')
|
||||||
top100: int | None = Field(default=None, alias='t100')
|
top100: int | None = Field(default=None, alias='t100')
|
||||||
|
# fmt: on
|
||||||
|
|
||||||
|
|
||||||
class Cache(BaseModel):
|
class Cache(BaseModel):
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
from datetime import datetime
|
||||||
|
from enum import IntEnum
|
||||||
|
from typing import NamedTuple
|
||||||
|
|
||||||
|
from pydantic import BaseModel, Field
|
||||||
|
|
||||||
|
from ..base import FailedModel
|
||||||
|
from ..base import SuccessModel as BaseSuccessModel
|
||||||
|
|
||||||
|
|
||||||
|
class Result(IntEnum):
|
||||||
|
VICTORY = 1
|
||||||
|
DEFEAT = 2
|
||||||
|
VICTORY_BY_DISQUALIFICATION = 3
|
||||||
|
DEFEAT_BY_DISQUALIFICATION = 4
|
||||||
|
TIE = 5
|
||||||
|
NO_CONTEST = 6
|
||||||
|
MATCH_NULLIFIED = 7
|
||||||
|
|
||||||
|
|
||||||
|
class Point(NamedTuple):
|
||||||
|
timestamp_offset: int
|
||||||
|
result: Result
|
||||||
|
post_match_tr: int
|
||||||
|
opponent_pre_match_tr: int
|
||||||
|
"""If the opponent was unranked, same as post_match_tr."""
|
||||||
|
|
||||||
|
|
||||||
|
class Data(BaseModel):
|
||||||
|
start_time: datetime = Field(..., alias='startTime')
|
||||||
|
points: list[Point]
|
||||||
|
|
||||||
|
|
||||||
|
class LeagueFlowSuccess(BaseSuccessModel):
|
||||||
|
data: Data
|
||||||
|
|
||||||
|
|
||||||
|
LeagueFlow = LeagueFlowSuccess | FailedModel
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
|
from nonebot.compat import PYDANTIC_V2
|
||||||
from pydantic import BaseModel, Field
|
from pydantic import BaseModel, Field
|
||||||
|
|
||||||
from ...typing import Prisecter
|
from ...typing import Prisecter
|
||||||
@@ -12,4 +13,6 @@ class Parameter(BaseModel):
|
|||||||
country: str | None = None
|
country: str | None = None
|
||||||
|
|
||||||
def to_params(self) -> dict[str, Any]:
|
def to_params(self) -> dict[str, Any]:
|
||||||
return self.model_dump(exclude_defaults=True)
|
if PYDANTIC_V2:
|
||||||
|
return self.model_dump(exclude_defaults=True)
|
||||||
|
return self.dict(exclude_defaults=True)
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
from functools import partial
|
|
||||||
from typing import Literal
|
from typing import Literal
|
||||||
|
|
||||||
from nonebot.compat import PYDANTIC_V2
|
from nonebot.compat import PYDANTIC_V2
|
||||||
@@ -9,13 +8,9 @@ from ..base import SuccessModel
|
|||||||
|
|
||||||
if PYDANTIC_V2:
|
if PYDANTIC_V2:
|
||||||
from pydantic import field_validator
|
from pydantic import field_validator
|
||||||
|
|
||||||
custom_validator = partial(field_validator, mode='before')
|
|
||||||
else:
|
else:
|
||||||
from pydantic import validator
|
from pydantic import validator
|
||||||
|
|
||||||
custom_validator = partial(validator, pre=True, always=True) # type: ignore[assignment, arg-type]
|
|
||||||
|
|
||||||
|
|
||||||
class PastInner(BaseModel):
|
class PastInner(BaseModel):
|
||||||
season: str
|
season: str
|
||||||
@@ -37,7 +32,7 @@ class PastInner(BaseModel):
|
|||||||
|
|
||||||
|
|
||||||
class Past(BaseModel):
|
class Past(BaseModel):
|
||||||
first: PastInner | None = Field(default=None, alias='1')
|
first: PastInner | None = Field(default=None, alias='1') # pyright: ignore [reportGeneralTypeIssues]
|
||||||
|
|
||||||
|
|
||||||
class BaseData(BaseModel):
|
class BaseData(BaseModel):
|
||||||
@@ -86,12 +81,23 @@ class NeverRatedData(BaseData):
|
|||||||
percentile: Literal[-1]
|
percentile: Literal[-1]
|
||||||
percentile_rank: Literal['z']
|
percentile_rank: Literal['z']
|
||||||
|
|
||||||
@custom_validator('apm', 'pps', 'vs')
|
if PYDANTIC_V2:
|
||||||
@classmethod
|
|
||||||
def _(cls, value: float | None) -> float:
|
@field_validator('apm', 'pps', 'vs', mode='before')
|
||||||
if value is None:
|
@classmethod
|
||||||
return 0
|
def _(cls, value: float | None) -> float:
|
||||||
return value
|
if value is None:
|
||||||
|
return 0
|
||||||
|
return value
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
@validator('apm', 'pps', 'vs', pre=True, always=True)
|
||||||
|
@classmethod
|
||||||
|
def _(cls, value: float | None) -> float:
|
||||||
|
if value is None:
|
||||||
|
return 0
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
class RatedData(BaseData):
|
class RatedData(BaseData):
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ async def _(
|
|||||||
limit: int | None = None,
|
limit: int | None = None,
|
||||||
country: str | None = None,
|
country: str | None = None,
|
||||||
):
|
):
|
||||||
|
country = country.upper() if country is not None else None
|
||||||
async with trigger(
|
async with trigger(
|
||||||
session_persist_id=await get_session_persist_id(event_session),
|
session_persist_id=await get_session_persist_id(event_session),
|
||||||
game_platform=GAME_TYPE,
|
game_platform=GAME_TYPE,
|
||||||
|
|||||||
@@ -1,256 +0,0 @@
|
|||||||
from asyncio import gather
|
|
||||||
from datetime import datetime, timedelta, timezone
|
|
||||||
from hashlib import md5
|
|
||||||
from typing import TypeVar
|
|
||||||
|
|
||||||
from arclet.alconna import Arg, ArgFlag
|
|
||||||
from nonebot import get_driver
|
|
||||||
from nonebot.adapters import Event
|
|
||||||
from nonebot.matcher import Matcher
|
|
||||||
from nonebot_plugin_alconna import Args, At, Option, Subcommand
|
|
||||||
from nonebot_plugin_alconna.uniseg import UniMessage
|
|
||||||
from nonebot_plugin_orm import get_session
|
|
||||||
from nonebot_plugin_session import EventSession
|
|
||||||
from nonebot_plugin_session_orm import get_session_persist_id # type: ignore[import-untyped]
|
|
||||||
from nonebot_plugin_user import User as NBUser
|
|
||||||
from nonebot_plugin_user import get_user
|
|
||||||
from sqlalchemy import select
|
|
||||||
from yarl import URL
|
|
||||||
|
|
||||||
from ...db import query_bind_info, trigger
|
|
||||||
from ...utils.host import HostPage, get_self_netloc
|
|
||||||
from ...utils.metrics import get_metrics
|
|
||||||
from ...utils.render import render
|
|
||||||
from ...utils.render.schemas.base import Avatar
|
|
||||||
from ...utils.render.schemas.tetrio.user.info_v2 import (
|
|
||||||
Badge,
|
|
||||||
Blitz,
|
|
||||||
Sprint,
|
|
||||||
Statistic,
|
|
||||||
TetraLeague,
|
|
||||||
TetraLeagueStatistic,
|
|
||||||
Zen,
|
|
||||||
)
|
|
||||||
from ...utils.render.schemas.tetrio.user.info_v2 import Info as V2TemplateInfo
|
|
||||||
from ...utils.render.schemas.tetrio.user.info_v2 import User as V2TemplateUser
|
|
||||||
from ...utils.screenshot import screenshot
|
|
||||||
from ...utils.typing import Me
|
|
||||||
from .. import add_block_handlers, alc
|
|
||||||
from ..constant import CANT_VERIFY_MESSAGE
|
|
||||||
from . import command, get_player
|
|
||||||
from .api import Player
|
|
||||||
from .api.schemas.summaries.league import NeverPlayedData, NeverRatedData
|
|
||||||
from .constant import GAME_TYPE
|
|
||||||
from .models import TETRIOUserConfig
|
|
||||||
from .typing import Template
|
|
||||||
|
|
||||||
UTC = timezone.utc
|
|
||||||
|
|
||||||
driver = get_driver()
|
|
||||||
|
|
||||||
command.add(
|
|
||||||
Subcommand(
|
|
||||||
'query',
|
|
||||||
Args(
|
|
||||||
Arg(
|
|
||||||
'target',
|
|
||||||
At | Me,
|
|
||||||
notice='@想要查询的人 / 自己',
|
|
||||||
flags=[ArgFlag.HIDDEN, ArgFlag.OPTIONAL],
|
|
||||||
),
|
|
||||||
Arg(
|
|
||||||
'account',
|
|
||||||
get_player,
|
|
||||||
notice='TETR.IO 用户名 / ID',
|
|
||||||
flags=[ArgFlag.HIDDEN, ArgFlag.OPTIONAL],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Option(
|
|
||||||
'--template',
|
|
||||||
Arg('template', Template),
|
|
||||||
alias=['-T'],
|
|
||||||
help_text='要使用的查询模板',
|
|
||||||
),
|
|
||||||
help_text='查询 TETR.IO 游戏信息',
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
alc.shortcut(
|
|
||||||
'(?i:io)(?i:查询|查|query|stats)',
|
|
||||||
command='tstats TETR.IO query',
|
|
||||||
humanized='io查',
|
|
||||||
)
|
|
||||||
alc.shortcut(
|
|
||||||
'fkosk',
|
|
||||||
command='tstats TETR.IO query',
|
|
||||||
arguments=['我'],
|
|
||||||
fuzzy=False,
|
|
||||||
humanized='An Easter egg!',
|
|
||||||
)
|
|
||||||
|
|
||||||
add_block_handlers(alc.assign('TETRIO.query'))
|
|
||||||
|
|
||||||
|
|
||||||
@alc.assign('TETRIO.query')
|
|
||||||
async def _( # noqa: PLR0913
|
|
||||||
user: NBUser,
|
|
||||||
event: Event,
|
|
||||||
matcher: Matcher,
|
|
||||||
target: At | Me,
|
|
||||||
event_session: EventSession,
|
|
||||||
template: Template | None = None,
|
|
||||||
):
|
|
||||||
async with trigger(
|
|
||||||
session_persist_id=await get_session_persist_id(event_session),
|
|
||||||
game_platform=GAME_TYPE,
|
|
||||||
command_type='query',
|
|
||||||
command_args=[f'--default-template {template}'] if template is not None else [],
|
|
||||||
):
|
|
||||||
async with get_session() as session:
|
|
||||||
bind = await query_bind_info(
|
|
||||||
session=session,
|
|
||||||
user=await get_user(
|
|
||||||
event_session.platform, target.target if isinstance(target, At) else event.get_user_id()
|
|
||||||
),
|
|
||||||
game_platform=GAME_TYPE,
|
|
||||||
)
|
|
||||||
if template is None:
|
|
||||||
template = await session.scalar(
|
|
||||||
select(TETRIOUserConfig.query_template).where(TETRIOUserConfig.id == user.id)
|
|
||||||
)
|
|
||||||
if bind is None:
|
|
||||||
await matcher.finish('未查询到绑定信息')
|
|
||||||
message = UniMessage(CANT_VERIFY_MESSAGE)
|
|
||||||
player = Player(user_id=bind.game_account, trust=True)
|
|
||||||
await (message + UniMessage.image(raw=await make_query_image_v2(player))).finish()
|
|
||||||
|
|
||||||
|
|
||||||
@alc.assign('TETRIO.query')
|
|
||||||
async def _(user: NBUser, account: Player, event_session: EventSession, template: Template | None = None):
|
|
||||||
async with trigger(
|
|
||||||
session_persist_id=await get_session_persist_id(event_session),
|
|
||||||
game_platform=GAME_TYPE,
|
|
||||||
command_type='query',
|
|
||||||
command_args=[f'--default-template {template}'] if template is not None else [],
|
|
||||||
):
|
|
||||||
async with get_session() as session:
|
|
||||||
if template is None:
|
|
||||||
template = await session.scalar(
|
|
||||||
select(TETRIOUserConfig.query_template).where(TETRIOUserConfig.id == user.id)
|
|
||||||
)
|
|
||||||
await (UniMessage.image(raw=await make_query_image_v2(account))).finish()
|
|
||||||
|
|
||||||
|
|
||||||
N = TypeVar('N', int, float)
|
|
||||||
|
|
||||||
|
|
||||||
def handling_special_value(value: N) -> N | None:
|
|
||||||
return value if value != -1 else None
|
|
||||||
|
|
||||||
|
|
||||||
async def make_query_image_v2(player: Player) -> bytes:
|
|
||||||
(
|
|
||||||
(user, user_info, league, sprint, blitz, zen),
|
|
||||||
(avatar_revision, banner_revision),
|
|
||||||
) = await gather(
|
|
||||||
gather(player.user, player.get_info(), player.league, player.sprint, player.blitz, player.zen),
|
|
||||||
gather(player.avatar_revision, player.banner_revision),
|
|
||||||
)
|
|
||||||
if sprint.data.record is not None:
|
|
||||||
duration = timedelta(milliseconds=sprint.data.record.results.stats.finaltime).total_seconds()
|
|
||||||
sprint_value = f'{duration:.3f}s' if duration < 60 else f'{duration // 60:.0f}m {duration % 60:.3f}s' # noqa: PLR2004
|
|
||||||
else:
|
|
||||||
sprint_value = 'N/A'
|
|
||||||
|
|
||||||
play_time: str | None
|
|
||||||
if (game_time := handling_special_value(user_info.data.gametime)) is not None:
|
|
||||||
if game_time // 3600 > 0:
|
|
||||||
play_time = f'{game_time//3600:.0f}h {game_time % 3600 // 60:.0f}m {game_time % 60:.0f}s'
|
|
||||||
elif game_time // 60 > 0:
|
|
||||||
play_time = f'{game_time//60:.0f}m {game_time % 60:.0f}s'
|
|
||||||
else:
|
|
||||||
play_time = f'{game_time:.0f}s'
|
|
||||||
else:
|
|
||||||
play_time = game_time
|
|
||||||
netloc = get_self_netloc()
|
|
||||||
async with HostPage(
|
|
||||||
await render(
|
|
||||||
'v2/tetrio/user/info',
|
|
||||||
V2TemplateInfo(
|
|
||||||
user=V2TemplateUser(
|
|
||||||
id=user.ID,
|
|
||||||
name=user.name.upper(),
|
|
||||||
bio=user_info.data.bio,
|
|
||||||
banner=str(
|
|
||||||
URL(f'http://{netloc}/host/resource/tetrio/banners/{user.ID}') % {'revision': banner_revision}
|
|
||||||
)
|
|
||||||
if banner_revision is not None and banner_revision != 0
|
|
||||||
else None,
|
|
||||||
avatar=str(
|
|
||||||
URL(f'http://{netloc}/host/resource/tetrio/avatars/{user.ID}') % {'revision': avatar_revision}
|
|
||||||
)
|
|
||||||
if avatar_revision is not None and avatar_revision != 0
|
|
||||||
else Avatar(
|
|
||||||
type='identicon',
|
|
||||||
hash=md5(user.ID.encode()).hexdigest(), # noqa: S324
|
|
||||||
),
|
|
||||||
badges=[
|
|
||||||
Badge(
|
|
||||||
id=i.id,
|
|
||||||
description=i.label,
|
|
||||||
group=i.group,
|
|
||||||
receive_at=i.ts if isinstance(i.ts, datetime) else None,
|
|
||||||
)
|
|
||||||
for i in user_info.data.badges
|
|
||||||
],
|
|
||||||
country=user_info.data.country,
|
|
||||||
role=user_info.data.role,
|
|
||||||
xp=user_info.data.xp,
|
|
||||||
friend_count=user_info.data.friend_count,
|
|
||||||
supporter_tier=user_info.data.supporter_tier,
|
|
||||||
bad_standing=user_info.data.badstanding or False,
|
|
||||||
playtime=play_time,
|
|
||||||
join_at=user_info.data.ts,
|
|
||||||
),
|
|
||||||
tetra_league=TetraLeague(
|
|
||||||
rank=league.data.rank,
|
|
||||||
highest_rank='z' if isinstance(league.data, NeverRatedData) else league.data.bestrank,
|
|
||||||
tr=round(league.data.tr, 2),
|
|
||||||
glicko=round(league.data.glicko, 2),
|
|
||||||
rd=round(league.data.rd, 2),
|
|
||||||
global_rank=league.data.standing,
|
|
||||||
country_rank=league.data.standing_local,
|
|
||||||
pps=(metrics := get_metrics(pps=league.data.pps, apm=league.data.apm, vs=league.data.vs)).pps,
|
|
||||||
apm=metrics.apm,
|
|
||||||
apl=metrics.apl,
|
|
||||||
vs=metrics.vs,
|
|
||||||
adpl=metrics.adpl,
|
|
||||||
statistic=TetraLeagueStatistic(total=league.data.gamesplayed, wins=league.data.gameswon),
|
|
||||||
decaying=league.data.decaying,
|
|
||||||
history=None,
|
|
||||||
)
|
|
||||||
if not isinstance(league.data, NeverPlayedData)
|
|
||||||
else None,
|
|
||||||
statistic=Statistic(
|
|
||||||
total=handling_special_value(user_info.data.gamesplayed),
|
|
||||||
wins=handling_special_value(user_info.data.gameswon),
|
|
||||||
),
|
|
||||||
sprint=Sprint(
|
|
||||||
time=sprint_value,
|
|
||||||
global_rank=sprint.data.rank,
|
|
||||||
play_at=sprint.data.record.ts,
|
|
||||||
)
|
|
||||||
if sprint.data.record is not None
|
|
||||||
else None,
|
|
||||||
blitz=Blitz(
|
|
||||||
score=blitz.data.record.results.stats.score,
|
|
||||||
global_rank=blitz.data.rank,
|
|
||||||
play_at=blitz.data.record.ts,
|
|
||||||
)
|
|
||||||
if blitz.data.record is not None
|
|
||||||
else None,
|
|
||||||
zen=Zen(level=zen.data.level, score=zen.data.score),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
) as page_hash:
|
|
||||||
return await screenshot(f'http://{netloc}/host/{page_hash}.html')
|
|
||||||
135
nonebot_plugin_tetris_stats/games/tetrio/query/__init__.py
Normal file
135
nonebot_plugin_tetris_stats/games/tetrio/query/__init__.py
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
from datetime import timezone
|
||||||
|
|
||||||
|
from arclet.alconna import Arg, ArgFlag
|
||||||
|
from nonebot import get_driver
|
||||||
|
from nonebot.adapters import Event
|
||||||
|
from nonebot.matcher import Matcher
|
||||||
|
from nonebot_plugin_alconna import Args, At, Option, Subcommand
|
||||||
|
from nonebot_plugin_alconna.uniseg import UniMessage
|
||||||
|
from nonebot_plugin_orm import get_session
|
||||||
|
from nonebot_plugin_session import EventSession
|
||||||
|
from nonebot_plugin_session_orm import get_session_persist_id # type: ignore[import-untyped]
|
||||||
|
from nonebot_plugin_user import User as NBUser
|
||||||
|
from nonebot_plugin_user import get_user
|
||||||
|
from sqlalchemy import select
|
||||||
|
|
||||||
|
from ....db import query_bind_info, trigger
|
||||||
|
from ....i18n import Lang
|
||||||
|
from ....utils.exception import FallbackError
|
||||||
|
from ....utils.typing import Me
|
||||||
|
from ... import add_block_handlers, alc
|
||||||
|
from .. import command, get_player
|
||||||
|
from ..api import Player
|
||||||
|
from ..constant import GAME_TYPE
|
||||||
|
from ..models import TETRIOUserConfig
|
||||||
|
from ..typing import Template
|
||||||
|
from .v1 import make_query_image_v1
|
||||||
|
from .v2 import make_query_image_v2
|
||||||
|
|
||||||
|
UTC = timezone.utc
|
||||||
|
|
||||||
|
driver = get_driver()
|
||||||
|
|
||||||
|
command.add(
|
||||||
|
Subcommand(
|
||||||
|
'query',
|
||||||
|
Args(
|
||||||
|
Arg(
|
||||||
|
'target',
|
||||||
|
At | Me,
|
||||||
|
notice='@想要查询的人 / 自己',
|
||||||
|
flags=[ArgFlag.HIDDEN, ArgFlag.OPTIONAL],
|
||||||
|
),
|
||||||
|
Arg(
|
||||||
|
'account',
|
||||||
|
get_player,
|
||||||
|
notice='TETR.IO 用户名 / ID',
|
||||||
|
flags=[ArgFlag.HIDDEN, ArgFlag.OPTIONAL],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Option(
|
||||||
|
'--template',
|
||||||
|
Arg('template', Template),
|
||||||
|
alias=['-T'],
|
||||||
|
help_text='要使用的查询模板',
|
||||||
|
),
|
||||||
|
help_text='查询 TETR.IO 游戏信息',
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
alc.shortcut(
|
||||||
|
'(?i:io)(?i:查询|查|query|stats)',
|
||||||
|
command='tstats TETR.IO query',
|
||||||
|
humanized='io查',
|
||||||
|
)
|
||||||
|
alc.shortcut(
|
||||||
|
'fkosk',
|
||||||
|
command='tstats TETR.IO query',
|
||||||
|
arguments=['我'],
|
||||||
|
fuzzy=False,
|
||||||
|
humanized='An Easter egg!',
|
||||||
|
)
|
||||||
|
|
||||||
|
add_block_handlers(alc.assign('TETRIO.query'))
|
||||||
|
|
||||||
|
|
||||||
|
async def make_query_result(player: Player, template: Template) -> UniMessage:
|
||||||
|
if template == 'v1':
|
||||||
|
try:
|
||||||
|
return UniMessage.image(raw=await make_query_image_v1(player))
|
||||||
|
except FallbackError:
|
||||||
|
template = 'v2'
|
||||||
|
if template == 'v2':
|
||||||
|
return UniMessage.image(raw=await make_query_image_v2(player))
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
@alc.assign('TETRIO.query')
|
||||||
|
async def _( # noqa: PLR0913
|
||||||
|
user: NBUser,
|
||||||
|
event: Event,
|
||||||
|
matcher: Matcher,
|
||||||
|
target: At | Me,
|
||||||
|
event_session: EventSession,
|
||||||
|
template: Template | None = None,
|
||||||
|
):
|
||||||
|
async with trigger(
|
||||||
|
session_persist_id=await get_session_persist_id(event_session),
|
||||||
|
game_platform=GAME_TYPE,
|
||||||
|
command_type='query',
|
||||||
|
command_args=[f'--template {template}'] if template is not None else [],
|
||||||
|
):
|
||||||
|
async with get_session() as session:
|
||||||
|
bind = await query_bind_info(
|
||||||
|
session=session,
|
||||||
|
user=await get_user(
|
||||||
|
event_session.platform, target.target if isinstance(target, At) else event.get_user_id()
|
||||||
|
),
|
||||||
|
game_platform=GAME_TYPE,
|
||||||
|
)
|
||||||
|
if template is None:
|
||||||
|
template = await session.scalar(
|
||||||
|
select(TETRIOUserConfig.query_template).where(TETRIOUserConfig.id == user.id)
|
||||||
|
)
|
||||||
|
if bind is None:
|
||||||
|
await matcher.finish('未查询到绑定信息')
|
||||||
|
player = Player(user_id=bind.game_account, trust=True)
|
||||||
|
await (
|
||||||
|
UniMessage.i18n(Lang.interaction.warning.unverified) + await make_query_result(player, template or 'v1')
|
||||||
|
).finish()
|
||||||
|
|
||||||
|
|
||||||
|
@alc.assign('TETRIO.query')
|
||||||
|
async def _(user: NBUser, account: Player, event_session: EventSession, template: Template | None = None):
|
||||||
|
async with trigger(
|
||||||
|
session_persist_id=await get_session_persist_id(event_session),
|
||||||
|
game_platform=GAME_TYPE,
|
||||||
|
command_type='query',
|
||||||
|
command_args=[f'--template {template}'] if template is not None else [],
|
||||||
|
):
|
||||||
|
async with get_session() as session:
|
||||||
|
if template is None:
|
||||||
|
template = await session.scalar(
|
||||||
|
select(TETRIOUserConfig.query_template).where(TETRIOUserConfig.id == user.id)
|
||||||
|
)
|
||||||
|
await (await make_query_result(account, template or 'v1')).finish()
|
||||||
52
nonebot_plugin_tetris_stats/games/tetrio/query/tools.py
Normal file
52
nonebot_plugin_tetris_stats/games/tetrio/query/tools.py
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
from collections.abc import Callable
|
||||||
|
from datetime import timedelta
|
||||||
|
from typing import TypeVar, overload
|
||||||
|
from zoneinfo import ZoneInfo
|
||||||
|
|
||||||
|
from ....utils.exception import FallbackError
|
||||||
|
from ....utils.render.schemas.tetrio.user.base import TetraLeagueHistoryData
|
||||||
|
from ..api.schemas.labs.leagueflow import LeagueFlowSuccess
|
||||||
|
from ..api.schemas.summaries.league import LeagueSuccessModel, NeverPlayedData, NeverRatedData, RatedData
|
||||||
|
|
||||||
|
|
||||||
|
def flow_to_history(
|
||||||
|
leagueflow: LeagueFlowSuccess,
|
||||||
|
handle: Callable[[list[TetraLeagueHistoryData]], list[TetraLeagueHistoryData]] | None = None,
|
||||||
|
) -> list[TetraLeagueHistoryData]:
|
||||||
|
start_time = leagueflow.data.start_time.astimezone(ZoneInfo('Asia/Shanghai'))
|
||||||
|
ret = [
|
||||||
|
TetraLeagueHistoryData(
|
||||||
|
record_at=start_time + timedelta(milliseconds=i.timestamp_offset),
|
||||||
|
tr=i.post_match_tr,
|
||||||
|
)
|
||||||
|
for i in leagueflow.data.points
|
||||||
|
if start_time + timedelta(milliseconds=i.timestamp_offset)
|
||||||
|
]
|
||||||
|
return ret if handle is None else handle(ret)
|
||||||
|
|
||||||
|
|
||||||
|
N = TypeVar('N', int, float)
|
||||||
|
|
||||||
|
|
||||||
|
def handling_special_value(value: N) -> N | None:
|
||||||
|
return value if value != -1 else None
|
||||||
|
|
||||||
|
|
||||||
|
L = TypeVar('L', NeverPlayedData, NeverRatedData, RatedData)
|
||||||
|
|
||||||
|
|
||||||
|
@overload
|
||||||
|
def get_league_data(user_info: LeagueSuccessModel, league_type: type[L]) -> L: ...
|
||||||
|
@overload
|
||||||
|
def get_league_data(
|
||||||
|
user_info: LeagueSuccessModel, league_type: None = None
|
||||||
|
) -> NeverPlayedData | NeverRatedData | RatedData: ...
|
||||||
|
def get_league_data(
|
||||||
|
user_info: LeagueSuccessModel, league_type: type[L] | None = None
|
||||||
|
) -> L | NeverPlayedData | NeverRatedData | RatedData:
|
||||||
|
league = user_info.data
|
||||||
|
if league_type is None:
|
||||||
|
return league
|
||||||
|
if isinstance(league, league_type):
|
||||||
|
return league
|
||||||
|
raise FallbackError
|
||||||
172
nonebot_plugin_tetris_stats/games/tetrio/query/v1.py
Normal file
172
nonebot_plugin_tetris_stats/games/tetrio/query/v1.py
Normal file
@@ -0,0 +1,172 @@
|
|||||||
|
from asyncio import gather
|
||||||
|
from datetime import datetime, timedelta
|
||||||
|
from hashlib import md5
|
||||||
|
from math import ceil, floor
|
||||||
|
from zoneinfo import ZoneInfo
|
||||||
|
|
||||||
|
from yarl import URL
|
||||||
|
|
||||||
|
from ....utils.exception import FallbackError
|
||||||
|
from ....utils.host import HostPage, get_self_netloc
|
||||||
|
from ....utils.render import render
|
||||||
|
from ....utils.render.schemas.base import Avatar, Ranking
|
||||||
|
from ....utils.render.schemas.tetrio.user.base import TetraLeagueHistoryData
|
||||||
|
from ....utils.render.schemas.tetrio.user.info_v1 import Info, Radar, TetraLeague, TetraLeagueHistory, User
|
||||||
|
from ....utils.screenshot import screenshot
|
||||||
|
from ..api import Player
|
||||||
|
from ..api.schemas.summaries.league import RatedData
|
||||||
|
from ..constant import TR_MAX, TR_MIN
|
||||||
|
from .tools import flow_to_history, get_league_data
|
||||||
|
|
||||||
|
|
||||||
|
def get_value_bounds(values: list[int | float]) -> tuple[int, int]:
|
||||||
|
value_max = 10 * ceil(max(values) / 10)
|
||||||
|
value_min = 10 * floor(min(values) / 10)
|
||||||
|
return value_max, value_min
|
||||||
|
|
||||||
|
|
||||||
|
def get_split(value_max: int, value_min: int) -> tuple[int, int]:
|
||||||
|
offset = 0
|
||||||
|
overflow = 0
|
||||||
|
|
||||||
|
while True:
|
||||||
|
if (new_max_value := value_max + offset + overflow) > TR_MAX:
|
||||||
|
overflow -= 1
|
||||||
|
continue
|
||||||
|
if (new_min_value := value_min - offset + overflow) < TR_MIN:
|
||||||
|
overflow += 1
|
||||||
|
continue
|
||||||
|
if ((new_max_value - new_min_value) / 40).is_integer():
|
||||||
|
split_value = int((value_max + offset - (value_min - offset)) / 4)
|
||||||
|
break
|
||||||
|
offset += 1
|
||||||
|
return split_value, offset + overflow
|
||||||
|
|
||||||
|
|
||||||
|
def get_specified_point(
|
||||||
|
previous_point: TetraLeagueHistoryData,
|
||||||
|
behind_point: TetraLeagueHistoryData,
|
||||||
|
point_time: datetime,
|
||||||
|
) -> TetraLeagueHistoryData:
|
||||||
|
"""根据给出的 previous_point 和 behind_point, 推算 point_time 点处的数据
|
||||||
|
|
||||||
|
Args:
|
||||||
|
previous_point (Data): 前面的数据点
|
||||||
|
behind_point (Data): 后面的数据点
|
||||||
|
point_time (datetime): 要推算的点的位置
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Data: 要推算的点的数据
|
||||||
|
"""
|
||||||
|
# 求两个点的斜率
|
||||||
|
slope = (behind_point.tr - previous_point.tr) / (
|
||||||
|
datetime.timestamp(behind_point.record_at) - datetime.timestamp(previous_point.record_at)
|
||||||
|
)
|
||||||
|
return TetraLeagueHistoryData(
|
||||||
|
record_at=point_time,
|
||||||
|
tr=previous_point.tr + slope * (datetime.timestamp(point_time) - datetime.timestamp(previous_point.record_at)),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def handle_history_data(data: list[TetraLeagueHistoryData]) -> list[TetraLeagueHistoryData]:
|
||||||
|
data.sort(key=lambda x: x.record_at)
|
||||||
|
|
||||||
|
right_border = datetime.now(ZoneInfo('Asia/Shanghai')).replace(hour=0, minute=0, second=0, microsecond=0)
|
||||||
|
left_border = right_border - timedelta(days=9)
|
||||||
|
|
||||||
|
lefts: list[TetraLeagueHistoryData] = []
|
||||||
|
in_border: list[TetraLeagueHistoryData] = []
|
||||||
|
rights: list[TetraLeagueHistoryData] = []
|
||||||
|
for i in data:
|
||||||
|
if i.record_at < left_border:
|
||||||
|
lefts.append(i)
|
||||||
|
elif i.record_at < right_border:
|
||||||
|
in_border.append(i)
|
||||||
|
else:
|
||||||
|
rights.append(i)
|
||||||
|
ret: list[TetraLeagueHistoryData] = []
|
||||||
|
if lefts:
|
||||||
|
ret.append(get_specified_point(lefts[-1], in_border[0], left_border))
|
||||||
|
else:
|
||||||
|
ret.append(TetraLeagueHistoryData(tr=in_border[0].tr, record_at=left_border))
|
||||||
|
ret.extend(in_border)
|
||||||
|
if rights:
|
||||||
|
ret.append(get_specified_point(in_border[-1], rights[0], right_border.replace(microsecond=1000)))
|
||||||
|
else:
|
||||||
|
ret.append(TetraLeagueHistoryData(tr=in_border[-1].tr, record_at=right_border.replace(microsecond=1000)))
|
||||||
|
return ret
|
||||||
|
|
||||||
|
|
||||||
|
async def make_query_image_v1(player: Player) -> bytes:
|
||||||
|
(
|
||||||
|
(user, user_info, league, sprint, blitz, leagueflow),
|
||||||
|
(avatar_revision,),
|
||||||
|
) = await gather(
|
||||||
|
gather(player.user, player.get_info(), player.league, player.sprint, player.blitz, player.get_leagueflow()),
|
||||||
|
gather(player.avatar_revision),
|
||||||
|
)
|
||||||
|
league_data = get_league_data(league, RatedData)
|
||||||
|
if league_data.vs is None:
|
||||||
|
raise FallbackError
|
||||||
|
histories = flow_to_history(leagueflow, handle_history_data)
|
||||||
|
value_max, value_min = get_value_bounds([i.tr for i in histories])
|
||||||
|
split_value, offset = get_split(value_max, value_min)
|
||||||
|
if sprint.data.record is not None:
|
||||||
|
duration = timedelta(milliseconds=sprint.data.record.results.stats.finaltime).total_seconds()
|
||||||
|
sprint_value = f'{duration:.3f}s' if duration < 60 else f'{duration // 60:.0f}m {duration % 60:.3f}s' # noqa: PLR2004
|
||||||
|
else:
|
||||||
|
sprint_value = 'N/A'
|
||||||
|
blitz_value = f'{blitz.data.record.results.stats.score:,}' if blitz.data.record is not None else 'N/A'
|
||||||
|
netloc = get_self_netloc()
|
||||||
|
async with HostPage(
|
||||||
|
page=await render(
|
||||||
|
'v1/tetrio/info',
|
||||||
|
Info(
|
||||||
|
user=User(
|
||||||
|
avatar=str(
|
||||||
|
URL(f'http://{netloc}/host/resource/tetrio/avatars/{user.ID}') % {'revision': avatar_revision}
|
||||||
|
)
|
||||||
|
if avatar_revision is not None and avatar_revision != 0
|
||||||
|
else Avatar(
|
||||||
|
type='identicon',
|
||||||
|
hash=md5(user.ID.encode()).hexdigest(), # noqa: S324
|
||||||
|
),
|
||||||
|
name=user.name.upper(),
|
||||||
|
bio=user_info.data.bio,
|
||||||
|
),
|
||||||
|
ranking=Ranking(
|
||||||
|
rating=round(league_data.glicko, 2),
|
||||||
|
rd=round(league_data.rd, 2),
|
||||||
|
),
|
||||||
|
tetra_league=TetraLeague(
|
||||||
|
rank=league_data.rank,
|
||||||
|
tr=round(league_data.tr, 2),
|
||||||
|
global_rank=league_data.standing,
|
||||||
|
pps=league_data.pps,
|
||||||
|
lpm=round(lpm := (league_data.pps * 24), 2),
|
||||||
|
apm=league_data.apm,
|
||||||
|
apl=round(league_data.apm / lpm, 2),
|
||||||
|
vs=league_data.vs,
|
||||||
|
adpm=round(adpm := (league_data.vs * 0.6), 2),
|
||||||
|
adpl=round(adpm / lpm, 2),
|
||||||
|
),
|
||||||
|
tetra_league_history=TetraLeagueHistory(
|
||||||
|
data=histories,
|
||||||
|
split_interval=split_value,
|
||||||
|
min_tr=value_min,
|
||||||
|
max_tr=value_max,
|
||||||
|
offset=offset,
|
||||||
|
),
|
||||||
|
radar=Radar(
|
||||||
|
app=(app := (league_data.apm / (60 * league_data.pps))),
|
||||||
|
dsps=(dsps := ((league_data.vs / 100) - (league_data.apm / 60))),
|
||||||
|
dspp=(dspp := (dsps / league_data.pps)),
|
||||||
|
ci=150 * dspp - 125 * app + 50 * (league_data.vs / league_data.apm) - 25,
|
||||||
|
ge=2 * ((app * dsps) / league_data.pps),
|
||||||
|
),
|
||||||
|
sprint=sprint_value,
|
||||||
|
blitz=blitz_value,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
) as page_hash:
|
||||||
|
return await screenshot(f'http://{netloc}/host/{page_hash}.html')
|
||||||
137
nonebot_plugin_tetris_stats/games/tetrio/query/v2.py
Normal file
137
nonebot_plugin_tetris_stats/games/tetrio/query/v2.py
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
from asyncio import gather
|
||||||
|
from datetime import datetime, timedelta
|
||||||
|
from hashlib import md5
|
||||||
|
|
||||||
|
from yarl import URL
|
||||||
|
|
||||||
|
from ....utils.host import HostPage, get_self_netloc
|
||||||
|
from ....utils.metrics import get_metrics
|
||||||
|
from ....utils.render import render
|
||||||
|
from ....utils.render.schemas.base import Avatar
|
||||||
|
from ....utils.render.schemas.tetrio.user.info_v2 import (
|
||||||
|
Badge,
|
||||||
|
Blitz,
|
||||||
|
Info,
|
||||||
|
Sprint,
|
||||||
|
Statistic,
|
||||||
|
TetraLeague,
|
||||||
|
TetraLeagueStatistic,
|
||||||
|
User,
|
||||||
|
Zen,
|
||||||
|
)
|
||||||
|
from ....utils.screenshot import screenshot
|
||||||
|
from ..api import Player
|
||||||
|
from ..api.schemas.summaries.league import NeverPlayedData, NeverRatedData
|
||||||
|
from .tools import flow_to_history, handling_special_value
|
||||||
|
|
||||||
|
|
||||||
|
async def make_query_image_v2(player: Player) -> bytes:
|
||||||
|
(
|
||||||
|
(user, user_info, league, sprint, blitz, zen),
|
||||||
|
(avatar_revision, banner_revision, leagueflow),
|
||||||
|
) = await gather(
|
||||||
|
gather(player.user, player.get_info(), player.league, player.sprint, player.blitz, player.zen),
|
||||||
|
gather(player.avatar_revision, player.banner_revision, player.get_leagueflow()),
|
||||||
|
)
|
||||||
|
if sprint.data.record is not None:
|
||||||
|
duration = timedelta(milliseconds=sprint.data.record.results.stats.finaltime).total_seconds()
|
||||||
|
sprint_value = f'{duration:.3f}s' if duration < 60 else f'{duration // 60:.0f}m {duration % 60:.3f}s' # noqa: PLR2004
|
||||||
|
else:
|
||||||
|
sprint_value = 'N/A'
|
||||||
|
|
||||||
|
play_time: str | None
|
||||||
|
if (game_time := handling_special_value(user_info.data.gametime)) is not None:
|
||||||
|
if game_time // 3600 > 0:
|
||||||
|
play_time = f'{game_time//3600:.0f}h {game_time % 3600 // 60:.0f}m {game_time % 60:.0f}s'
|
||||||
|
elif game_time // 60 > 0:
|
||||||
|
play_time = f'{game_time//60:.0f}m {game_time % 60:.0f}s'
|
||||||
|
else:
|
||||||
|
play_time = f'{game_time:.0f}s'
|
||||||
|
else:
|
||||||
|
play_time = game_time
|
||||||
|
netloc = get_self_netloc()
|
||||||
|
async with (
|
||||||
|
HostPage(
|
||||||
|
await render(
|
||||||
|
'v2/tetrio/user/info',
|
||||||
|
Info(
|
||||||
|
user=User(
|
||||||
|
id=user.ID,
|
||||||
|
name=user.name.upper(),
|
||||||
|
bio=user_info.data.bio,
|
||||||
|
banner=str(
|
||||||
|
URL(f'http://{netloc}/host/resource/tetrio/banners/{user.ID}')
|
||||||
|
% {'revision': banner_revision}
|
||||||
|
)
|
||||||
|
if banner_revision is not None and banner_revision != 0
|
||||||
|
else None,
|
||||||
|
avatar=str(
|
||||||
|
URL(f'http://{netloc}/host/resource/tetrio/avatars/{user.ID}')
|
||||||
|
% {'revision': avatar_revision}
|
||||||
|
)
|
||||||
|
if avatar_revision is not None and avatar_revision != 0
|
||||||
|
else Avatar(
|
||||||
|
type='identicon',
|
||||||
|
hash=md5(user.ID.encode()).hexdigest(), # noqa: S324
|
||||||
|
),
|
||||||
|
badges=[
|
||||||
|
Badge(
|
||||||
|
id=i.id,
|
||||||
|
description=i.label,
|
||||||
|
group=i.group,
|
||||||
|
receive_at=i.ts if isinstance(i.ts, datetime) else None,
|
||||||
|
)
|
||||||
|
for i in user_info.data.badges
|
||||||
|
],
|
||||||
|
country=user_info.data.country,
|
||||||
|
role=user_info.data.role,
|
||||||
|
xp=user_info.data.xp,
|
||||||
|
friend_count=user_info.data.friend_count,
|
||||||
|
supporter_tier=user_info.data.supporter_tier,
|
||||||
|
bad_standing=user_info.data.badstanding or False,
|
||||||
|
playtime=play_time,
|
||||||
|
join_at=user_info.data.ts,
|
||||||
|
),
|
||||||
|
tetra_league=TetraLeague(
|
||||||
|
rank=league.data.rank,
|
||||||
|
highest_rank='z' if isinstance(league.data, NeverRatedData) else league.data.bestrank,
|
||||||
|
tr=round(league.data.tr, 2),
|
||||||
|
glicko=round(league.data.glicko, 2),
|
||||||
|
rd=round(league.data.rd, 2),
|
||||||
|
global_rank=league.data.standing,
|
||||||
|
country_rank=league.data.standing_local,
|
||||||
|
pps=(metrics := get_metrics(pps=league.data.pps, apm=league.data.apm, vs=league.data.vs)).pps,
|
||||||
|
apm=metrics.apm,
|
||||||
|
apl=metrics.apl,
|
||||||
|
vs=metrics.vs,
|
||||||
|
adpl=metrics.adpl,
|
||||||
|
statistic=TetraLeagueStatistic(total=league.data.gamesplayed, wins=league.data.gameswon),
|
||||||
|
decaying=league.data.decaying,
|
||||||
|
history=flow_to_history(leagueflow, lambda x: x[-100:]),
|
||||||
|
)
|
||||||
|
if not isinstance(league.data, NeverPlayedData)
|
||||||
|
else None,
|
||||||
|
statistic=Statistic(
|
||||||
|
total=handling_special_value(user_info.data.gamesplayed),
|
||||||
|
wins=handling_special_value(user_info.data.gameswon),
|
||||||
|
),
|
||||||
|
sprint=Sprint(
|
||||||
|
time=sprint_value,
|
||||||
|
global_rank=sprint.data.rank,
|
||||||
|
play_at=sprint.data.record.ts,
|
||||||
|
)
|
||||||
|
if sprint.data.record is not None
|
||||||
|
else None,
|
||||||
|
blitz=Blitz(
|
||||||
|
score=blitz.data.record.results.stats.score,
|
||||||
|
global_rank=blitz.data.rank,
|
||||||
|
play_at=blitz.data.record.ts,
|
||||||
|
)
|
||||||
|
if blitz.data.record is not None
|
||||||
|
else None,
|
||||||
|
zen=Zen(level=zen.data.level, score=zen.data.score),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
) as page_hash
|
||||||
|
):
|
||||||
|
return await screenshot(f'http://{netloc}/host/{page_hash}.html')
|
||||||
@@ -13,7 +13,6 @@ from nonebot_plugin_orm import get_session
|
|||||||
from sqlalchemy import select
|
from sqlalchemy import select
|
||||||
|
|
||||||
from ....utils.exception import RequestError
|
from ....utils.exception import RequestError
|
||||||
from ....utils.limit import limit
|
|
||||||
from ....utils.retry import retry
|
from ....utils.retry import retry
|
||||||
from .. import alc
|
from .. import alc
|
||||||
from .. import command as base_command
|
from .. import command as base_command
|
||||||
@@ -84,11 +83,11 @@ def find_special_player(
|
|||||||
@scheduler.scheduled_job('cron', hour='0,6,12,18', minute=0)
|
@scheduler.scheduled_job('cron', hour='0,6,12,18', minute=0)
|
||||||
async def get_tetra_league_data() -> None:
|
async def get_tetra_league_data() -> None:
|
||||||
x_session_id = uuid4()
|
x_session_id = uuid4()
|
||||||
limit_by = retry(max_attempts=10, exception_type=RequestError)(limit(timedelta(seconds=1))(by))
|
retry_by = retry(max_attempts=10, exception_type=RequestError)(by)
|
||||||
prisecter = P(pri=9007199254740991, sec=9007199254740991, ter=9007199254740991) # * from ch.tetr.io
|
prisecter = P(pri=9007199254740991, sec=9007199254740991, ter=9007199254740991) # * from ch.tetr.io
|
||||||
results: list[BySuccessModel] = []
|
results: list[BySuccessModel] = []
|
||||||
while True:
|
while True:
|
||||||
model = await limit_by('league', Parameter(after=prisecter.to_prisecter(), limit=100), x_session_id)
|
model = await retry_by('league', Parameter(after=prisecter.to_prisecter(), limit=100), x_session_id)
|
||||||
prisecter = model.data.entries[-1].p
|
prisecter = model.data.entries[-1].p
|
||||||
results.append(model)
|
results.append(model)
|
||||||
if len(model.data.entries) < 100: # 分页值 # noqa: PLR2004
|
if len(model.data.entries) < 100: # 分页值 # noqa: PLR2004
|
||||||
|
|||||||
@@ -32,12 +32,12 @@ command.add(
|
|||||||
|
|
||||||
|
|
||||||
@alc.assign('TETRIO.rank.all')
|
@alc.assign('TETRIO.rank.all')
|
||||||
async def _(event_session: EventSession, template: Template = 'v1'):
|
async def _(event_session: EventSession, template: Template | None = None):
|
||||||
async with trigger(
|
async with trigger(
|
||||||
session_persist_id=await get_session_persist_id(event_session),
|
session_persist_id=await get_session_persist_id(event_session),
|
||||||
game_platform=GAME_TYPE,
|
game_platform=GAME_TYPE,
|
||||||
command_type='rank',
|
command_type='rank',
|
||||||
command_args=['--all'],
|
command_args=['--all'] + ([f'--template {template}'] if template is not None else []),
|
||||||
):
|
):
|
||||||
async with get_session() as session:
|
async with get_session() as session:
|
||||||
latest_data = (
|
latest_data = (
|
||||||
@@ -62,7 +62,7 @@ async def _(event_session: EventSession, template: Template = 'v1'):
|
|||||||
)
|
)
|
||||||
).one()
|
).one()
|
||||||
match template:
|
match template:
|
||||||
case 'v1':
|
case 'v1' | None:
|
||||||
await UniMessage.image(raw=await make_image_v1(latest_data, compare_data)).finish()
|
await UniMessage.image(raw=await make_image_v1(latest_data, compare_data)).finish()
|
||||||
case 'v2':
|
case 'v2':
|
||||||
await UniMessage.image(raw=await make_image_v2(latest_data, compare_data)).finish()
|
await UniMessage.image(raw=await make_image_v2(latest_data, compare_data)).finish()
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ from nonebot_plugin_user import get_user
|
|||||||
from yarl import URL
|
from yarl import URL
|
||||||
|
|
||||||
from ....db import query_bind_info, trigger
|
from ....db import query_bind_info, trigger
|
||||||
|
from ....i18n import Lang
|
||||||
from ....utils.exception import RecordNotFoundError
|
from ....utils.exception import RecordNotFoundError
|
||||||
from ....utils.host import HostPage, get_self_netloc
|
from ....utils.host import HostPage, get_self_netloc
|
||||||
from ....utils.metrics import get_metrics
|
from ....utils.metrics import get_metrics
|
||||||
@@ -22,7 +23,6 @@ from ....utils.render.schemas.tetrio.record.base import Finesse, Max, Mini, Tspi
|
|||||||
from ....utils.render.schemas.tetrio.record.blitz import Record, Statistic
|
from ....utils.render.schemas.tetrio.record.blitz import Record, Statistic
|
||||||
from ....utils.screenshot import screenshot
|
from ....utils.screenshot import screenshot
|
||||||
from ....utils.typing import Me
|
from ....utils.typing import Me
|
||||||
from ...constant import CANT_VERIFY_MESSAGE
|
|
||||||
from .. import alc
|
from .. import alc
|
||||||
from ..api.player import Player
|
from ..api.player import Player
|
||||||
from ..constant import GAME_TYPE
|
from ..constant import GAME_TYPE
|
||||||
@@ -60,9 +60,10 @@ async def _(
|
|||||||
)
|
)
|
||||||
if bind is None:
|
if bind is None:
|
||||||
await matcher.finish('未查询到绑定信息')
|
await matcher.finish('未查询到绑定信息')
|
||||||
message = UniMessage(CANT_VERIFY_MESSAGE)
|
|
||||||
player = Player(user_id=bind.game_account, trust=True)
|
player = Player(user_id=bind.game_account, trust=True)
|
||||||
await (message + UniMessage.image(raw=await make_blitz_image(player))).finish()
|
await (
|
||||||
|
UniMessage.i18n(Lang.interaction.warning.unverified) + UniMessage.image(raw=await make_blitz_image(player))
|
||||||
|
).finish()
|
||||||
|
|
||||||
|
|
||||||
@alc.assign('TETRIO.record.blitz')
|
@alc.assign('TETRIO.record.blitz')
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ from nonebot_plugin_user import get_user
|
|||||||
from yarl import URL
|
from yarl import URL
|
||||||
|
|
||||||
from ....db import query_bind_info, trigger
|
from ....db import query_bind_info, trigger
|
||||||
|
from ....i18n import Lang
|
||||||
from ....utils.exception import RecordNotFoundError
|
from ....utils.exception import RecordNotFoundError
|
||||||
from ....utils.host import HostPage, get_self_netloc
|
from ....utils.host import HostPage, get_self_netloc
|
||||||
from ....utils.metrics import get_metrics
|
from ....utils.metrics import get_metrics
|
||||||
@@ -22,7 +23,6 @@ from ....utils.render.schemas.tetrio.record.base import Finesse, Max, Mini, Stat
|
|||||||
from ....utils.render.schemas.tetrio.record.sprint import Record
|
from ....utils.render.schemas.tetrio.record.sprint import Record
|
||||||
from ....utils.screenshot import screenshot
|
from ....utils.screenshot import screenshot
|
||||||
from ....utils.typing import Me
|
from ....utils.typing import Me
|
||||||
from ...constant import CANT_VERIFY_MESSAGE
|
|
||||||
from .. import alc
|
from .. import alc
|
||||||
from ..api.player import Player
|
from ..api.player import Player
|
||||||
from ..constant import GAME_TYPE
|
from ..constant import GAME_TYPE
|
||||||
@@ -60,9 +60,10 @@ async def _(
|
|||||||
)
|
)
|
||||||
if bind is None:
|
if bind is None:
|
||||||
await matcher.finish('未查询到绑定信息')
|
await matcher.finish('未查询到绑定信息')
|
||||||
message = UniMessage(CANT_VERIFY_MESSAGE)
|
|
||||||
player = Player(user_id=bind.game_account, trust=True)
|
player = Player(user_id=bind.game_account, trust=True)
|
||||||
await (message + UniMessage.image(raw=await make_sprint_image(player))).finish()
|
await (
|
||||||
|
UniMessage.i18n(Lang.interaction.warning.unverified) + UniMessage.image(raw=await make_sprint_image(player))
|
||||||
|
).finish()
|
||||||
|
|
||||||
|
|
||||||
@alc.assign('TETRIO.record.sprint')
|
@alc.assign('TETRIO.record.sprint')
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ from nonebot_plugin_session_orm import get_session_persist_id # type: ignore[im
|
|||||||
from nonebot_plugin_user import get_user
|
from nonebot_plugin_user import get_user
|
||||||
|
|
||||||
from ...db import query_bind_info, trigger
|
from ...db import query_bind_info, trigger
|
||||||
|
from ...i18n import Lang
|
||||||
from ...utils.exception import FallbackError
|
from ...utils.exception import FallbackError
|
||||||
from ...utils.host import HostPage, get_self_netloc
|
from ...utils.host import HostPage, get_self_netloc
|
||||||
from ...utils.metrics import TetrisMetricsBasicWithLPM, get_metrics
|
from ...utils.metrics import TetrisMetricsBasicWithLPM, get_metrics
|
||||||
@@ -18,7 +19,6 @@ from ...utils.render.schemas.top_info import Data as InfoData
|
|||||||
from ...utils.render.schemas.top_info import Info
|
from ...utils.render.schemas.top_info import Info
|
||||||
from ...utils.screenshot import screenshot
|
from ...utils.screenshot import screenshot
|
||||||
from ...utils.typing import Me
|
from ...utils.typing import Me
|
||||||
from ..constant import CANT_VERIFY_MESSAGE
|
|
||||||
from . import alc
|
from . import alc
|
||||||
from .api import Player
|
from .api import Player
|
||||||
from .api.schemas.user_profile import Data, UserProfile
|
from .api.schemas.user_profile import Data, UserProfile
|
||||||
@@ -44,7 +44,7 @@ async def _(event: Event, matcher: Matcher, target: At | Me, event_session: Even
|
|||||||
if bind is None:
|
if bind is None:
|
||||||
await matcher.finish('未查询到绑定信息')
|
await matcher.finish('未查询到绑定信息')
|
||||||
await (
|
await (
|
||||||
UniMessage(CANT_VERIFY_MESSAGE)
|
UniMessage.i18n(Lang.interaction.warning.unverified)
|
||||||
+ await make_query_result(await Player(user_name=bind.game_account, trust=True).get_profile())
|
+ await make_query_result(await Player(user_name=bind.game_account, trust=True).get_profile())
|
||||||
).finish()
|
).finish()
|
||||||
|
|
||||||
|
|||||||
@@ -59,13 +59,14 @@ class Player:
|
|||||||
async def get_info(self) -> UserInfoSuccess:
|
async def get_info(self) -> UserInfoSuccess:
|
||||||
"""获取用户信息"""
|
"""获取用户信息"""
|
||||||
if self._user_info is None:
|
if self._user_info is None:
|
||||||
path = str(
|
if self.teaid is not None:
|
||||||
URL('getTeaIdInfo') % {'teaId': self.teaid}
|
path = 'getTeaIdInfo'
|
||||||
if self.teaid is not None
|
query = {'teaId': self.teaid}
|
||||||
else URL('getUsernameInfo') % {'username': cast(str, self.user_name)}
|
else:
|
||||||
)
|
path = 'getUsernameInfo'
|
||||||
|
query = {'username': cast(str, self.user_name)}
|
||||||
raw_user_info = await request.failover_request(
|
raw_user_info = await request.failover_request(
|
||||||
[i / path for i in BASE_URL], failover_code=[502], failover_exc=(TimeoutException,)
|
[i / path % query for i in BASE_URL], failover_code=[502], failover_exc=(TimeoutException,)
|
||||||
)
|
)
|
||||||
user_info: UserInfo = type_validate_json(UserInfo, raw_user_info) # type: ignore[arg-type]
|
user_info: UserInfo = type_validate_json(UserInfo, raw_user_info) # type: ignore[arg-type]
|
||||||
if not isinstance(user_info, UserInfoSuccess):
|
if not isinstance(user_info, UserInfoSuccess):
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ from nonebot_plugin_user import get_user
|
|||||||
from nonebot_plugin_userinfo import EventUserInfo, UserInfo
|
from nonebot_plugin_userinfo import EventUserInfo, UserInfo
|
||||||
|
|
||||||
from ...db import query_bind_info, trigger
|
from ...db import query_bind_info, trigger
|
||||||
|
from ...i18n import Lang
|
||||||
from ...utils.exception import RequestError
|
from ...utils.exception import RequestError
|
||||||
from ...utils.host import HostPage, get_self_netloc
|
from ...utils.host import HostPage, get_self_netloc
|
||||||
from ...utils.image import get_avatar
|
from ...utils.image import get_avatar
|
||||||
@@ -24,7 +25,6 @@ from ...utils.render.schemas.base import People, Ranking
|
|||||||
from ...utils.render.schemas.tos_info import Info, Multiplayer, Radar
|
from ...utils.render.schemas.tos_info import Info, Multiplayer, Radar
|
||||||
from ...utils.screenshot import screenshot
|
from ...utils.screenshot import screenshot
|
||||||
from ...utils.typing import Me, Number
|
from ...utils.typing import Me, Number
|
||||||
from ..constant import CANT_VERIFY_MESSAGE
|
|
||||||
from . import alc
|
from . import alc
|
||||||
from .api import Player
|
from .api import Player
|
||||||
from .api.schemas.user_info import UserInfoSuccess
|
from .api.schemas.user_info import UserInfoSuccess
|
||||||
@@ -124,7 +124,7 @@ async def _(
|
|||||||
)
|
)
|
||||||
if bind is None:
|
if bind is None:
|
||||||
await matcher.finish('未查询到绑定信息')
|
await matcher.finish('未查询到绑定信息')
|
||||||
message = CANT_VERIFY_MESSAGE
|
message = UniMessage.i18n(Lang.interaction.warning.unverified)
|
||||||
player = Player(teaid=bind.game_account, trust=True)
|
player = Player(teaid=bind.game_account, trust=True)
|
||||||
user_info, game_data = await gather(player.get_info(), get_game_data(player))
|
user_info, game_data = await gather(player.get_info(), get_game_data(player))
|
||||||
if game_data is not None:
|
if game_data is not None:
|
||||||
|
|||||||
5
nonebot_plugin_tetris_stats/i18n/.config.json
Normal file
5
nonebot_plugin_tetris_stats/i18n/.config.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"default": "en-US",
|
||||||
|
"frozen": [],
|
||||||
|
"require": []
|
||||||
|
}
|
||||||
72
nonebot_plugin_tetris_stats/i18n/.lang.schema.json
Normal file
72
nonebot_plugin_tetris_stats/i18n/.lang.schema.json
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
{
|
||||||
|
"title": "Lang Schema",
|
||||||
|
"description": "Schema for lang file",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"interaction": {
|
||||||
|
"title": "Interaction",
|
||||||
|
"description": "Scope 'interaction' of lang item",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"wrong": {
|
||||||
|
"title": "Wrong",
|
||||||
|
"description": "Scope 'wrong' of lang item",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"query_bot": {
|
||||||
|
"title": "query_bot",
|
||||||
|
"description": "value of lang item type 'query_bot'",
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warning": {
|
||||||
|
"title": "Warning",
|
||||||
|
"description": "Scope 'warning' of lang item",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"unverified": {
|
||||||
|
"title": "unverified",
|
||||||
|
"description": "value of lang item type 'unverified'",
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"title": "Error",
|
||||||
|
"description": "Scope 'error' of lang item",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"MessageFormatError": {
|
||||||
|
"title": "Messageformaterror",
|
||||||
|
"description": "Scope 'MessageFormatError' of lang item",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"TETR.IO": {
|
||||||
|
"title": "TETR.IO",
|
||||||
|
"description": "value of lang item type 'TETR.IO'",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"TOS": {
|
||||||
|
"title": "TOS",
|
||||||
|
"description": "value of lang item type 'TOS'",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"TOP": {
|
||||||
|
"title": "TOP",
|
||||||
|
"description": "value of lang item type 'TOP'",
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
nonebot_plugin_tetris_stats/i18n/.template.json
Normal file
16
nonebot_plugin_tetris_stats/i18n/.template.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"$schema": ".template.schema.json",
|
||||||
|
"scopes": [
|
||||||
|
{
|
||||||
|
"scope": "interaction",
|
||||||
|
"types": [
|
||||||
|
{ "subtype": "wrong", "types": ["query_bot"] },
|
||||||
|
{ "subtype": "warning", "types": ["unverified"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"scope": "error",
|
||||||
|
"types": [{ "subtype": "MessageFormatError", "types": ["TETR.IO", "TOS", "TOP"] }]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
54
nonebot_plugin_tetris_stats/i18n/.template.schema.json
Normal file
54
nonebot_plugin_tetris_stats/i18n/.template.schema.json
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"title": "Template",
|
||||||
|
"description": "Template for lang items to generate schema for lang files",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"scopes": {
|
||||||
|
"title": "Scopes",
|
||||||
|
"description": "All scopes of lang items",
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true,
|
||||||
|
"items": {
|
||||||
|
"title": "Scope",
|
||||||
|
"description": "First level of all lang items",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"scope": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Scope name"
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "All types of lang items",
|
||||||
|
"uniqueItems": true,
|
||||||
|
"items": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "string",
|
||||||
|
"description": "Value of lang item"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"subtype": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Subtype name of lang item"
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "All subtypes of lang items",
|
||||||
|
"uniqueItems": true,
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/properties/scopes/items/properties/types/items"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
nonebot_plugin_tetris_stats/i18n/__init__.py
Normal file
12
nonebot_plugin_tetris_stats/i18n/__init__.py
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# This file is @generated by tarina.lang CLI tool
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
|
||||||
|
# ruff: noqa: E402, F401, PLC0414
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
from tarina.lang import lang # type: ignore[import-untyped]
|
||||||
|
|
||||||
|
lang.load(Path(__file__).parent)
|
||||||
|
|
||||||
|
from .model import Lang as Lang
|
||||||
16
nonebot_plugin_tetris_stats/i18n/en-US.json
Normal file
16
nonebot_plugin_tetris_stats/i18n/en-US.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"$schema": ".lang.schema.json",
|
||||||
|
"interaction": {
|
||||||
|
"wrong": { "query_bot": "Can't query bot's information" },
|
||||||
|
"warning": {
|
||||||
|
"unverified": "* Because I can't verify account linking information, I can't guarantee the info I found is yourself/themself."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"MessageFormatError": {
|
||||||
|
"TETR.IO": "Username/ID is invalid",
|
||||||
|
"TOS": "Username/ID is invalid",
|
||||||
|
"TOP": "Username is invalid"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
32
nonebot_plugin_tetris_stats/i18n/model.py
Normal file
32
nonebot_plugin_tetris_stats/i18n/model.py
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
# This file is @generated by tarina.lang CLI tool
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
|
||||||
|
from tarina.lang.model import LangItem, LangModel # type: ignore[import-untyped]
|
||||||
|
|
||||||
|
|
||||||
|
class InteractionWrong:
|
||||||
|
query_bot: LangItem = LangItem('interaction', 'wrong.query_bot')
|
||||||
|
|
||||||
|
|
||||||
|
class InteractionWarning:
|
||||||
|
unverified: LangItem = LangItem('interaction', 'warning.unverified')
|
||||||
|
|
||||||
|
|
||||||
|
class Interaction:
|
||||||
|
wrong = InteractionWrong
|
||||||
|
warning = InteractionWarning
|
||||||
|
|
||||||
|
|
||||||
|
class ErrorMessageformaterror:
|
||||||
|
TETR_IO: LangItem = LangItem('error', 'MessageFormatError.TETR.IO')
|
||||||
|
TOS: LangItem = LangItem('error', 'MessageFormatError.TOS')
|
||||||
|
TOP: LangItem = LangItem('error', 'MessageFormatError.TOP')
|
||||||
|
|
||||||
|
|
||||||
|
class Error:
|
||||||
|
MessageFormatError = ErrorMessageformaterror
|
||||||
|
|
||||||
|
|
||||||
|
class Lang(LangModel):
|
||||||
|
interaction = Interaction
|
||||||
|
error = Error
|
||||||
14
nonebot_plugin_tetris_stats/i18n/zh-CN.json
Normal file
14
nonebot_plugin_tetris_stats/i18n/zh-CN.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": ".lang.schema.json",
|
||||||
|
"interaction": {
|
||||||
|
"wrong": { "query_bot": "不能查询bot的信息" },
|
||||||
|
"warning": { "unverified": "* 由于无法验证绑定信息, 不能保证查询到的用户为本人" }
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"MessageFormatError": {
|
||||||
|
"TETR.IO": "用户名/ID不合法",
|
||||||
|
"TOS": "用户名/ID不合法",
|
||||||
|
"TOP": "用户名不合法"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -23,7 +23,7 @@ def limit(limit: timedelta) -> Callable[[Callable[P, Coroutine[Any, Any, T]]], C
|
|||||||
nonlocal last_call
|
nonlocal last_call
|
||||||
async with lock:
|
async with lock:
|
||||||
if (diff := (time() - last_call)) < limit_seconds:
|
if (diff := (time() - last_call)) < limit_seconds:
|
||||||
logger.debug(f'request limit {(limit_time:=limit_seconds-diff)}s')
|
logger.debug(f'func: {func.__name__} trigger limit, wait {(limit_time:=limit_seconds-diff):.3f}s')
|
||||||
await sleep(limit_time)
|
await sleep(limit_time)
|
||||||
last_call = time()
|
last_call = time()
|
||||||
return await func(*args, **kwargs)
|
return await func(*args, **kwargs)
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
from typing import Literal
|
from typing import Literal, TypeAlias
|
||||||
|
|
||||||
Number = float | int
|
Number: TypeAlias = float | int
|
||||||
GameType = Literal['IO', 'TOP', 'TOS']
|
GameType: TypeAlias = Literal['IO', 'TOP', 'TOS']
|
||||||
BaseCommandType = Literal['bind', 'query']
|
BaseCommandType: TypeAlias = Literal['bind', 'query']
|
||||||
TETRIOCommandType = BaseCommandType | Literal['rank', 'config', 'list', 'record']
|
TETRIOCommandType: TypeAlias = BaseCommandType | Literal['rank', 'config', 'list', 'record']
|
||||||
AllCommandType = BaseCommandType | TETRIOCommandType
|
AllCommandType: TypeAlias = BaseCommandType | TETRIOCommandType
|
||||||
Me = Literal[
|
Me: TypeAlias = Literal[
|
||||||
'我',
|
'我',
|
||||||
'自己',
|
'自己',
|
||||||
'我等',
|
'我等',
|
||||||
|
|||||||
4222
poetry.lock
generated
4222
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
258
pyproject.toml
258
pyproject.toml
@@ -1,139 +1,148 @@
|
|||||||
[tool.poetry]
|
[project]
|
||||||
name = 'nonebot-plugin-tetris-stats'
|
name = "nonebot-plugin-tetris-stats"
|
||||||
version = '1.5.2'
|
version = "1.6.0"
|
||||||
description = '一款基于 NoneBot2 的用于查询 Tetris 相关游戏数据的插件'
|
description = "一款基于 NoneBot2 的用于查询 Tetris 相关游戏数据的插件"
|
||||||
authors = ['scdhh <wallfjjd@gmail.com>']
|
readme = "README.md"
|
||||||
readme = 'README.md'
|
authors = [{ name = "shoucandanghehe", email = "wallfjjd@gmail.com" }]
|
||||||
homepage = 'https://github.com/shoucandanghehe/nonebot-plugin-tetris-stats'
|
requires-python = ">=3.10"
|
||||||
repository = 'https://github.com/shoucandanghehe/nonebot-plugin-tetris-stats'
|
dependencies = [
|
||||||
license = 'AGPL-3.0'
|
"aiocache>=0.12.3",
|
||||||
|
"aiofiles>=24.1.0",
|
||||||
|
"arclet-alconna<2",
|
||||||
|
"async-lru>=2.0.4",
|
||||||
|
"httpx>=0.27.2",
|
||||||
|
"jinja2>=3.1.4",
|
||||||
|
"lxml>=5.3.0",
|
||||||
|
"msgspec>=0.18.6",
|
||||||
|
"nonebot-plugin-alconna>=0.53.1",
|
||||||
|
"nonebot-plugin-apscheduler>=0.5.0",
|
||||||
|
"nonebot-plugin-localstore>=0.7.1",
|
||||||
|
"nonebot-plugin-orm>=0.7.6",
|
||||||
|
"nonebot-plugin-session>=0.3.2",
|
||||||
|
"nonebot-plugin-session-orm>=0.2.0",
|
||||||
|
"nonebot-plugin-user>=0.4.4",
|
||||||
|
"nonebot-plugin-userinfo>=0.2.6",
|
||||||
|
"nonebot2[fastapi]>=2.3.3",
|
||||||
|
"pandas>=2.2.3",
|
||||||
|
"pillow>=11.0.0",
|
||||||
|
"playwright>=1.48.0",
|
||||||
|
"rich>=13.9.3",
|
||||||
|
"yarl>=1.16.0",
|
||||||
|
]
|
||||||
|
classifiers = [
|
||||||
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Programming Language :: Python :: 3.11",
|
||||||
|
"Programming Language :: Python :: 3.12",
|
||||||
|
"Programming Language :: Python :: 3.13",
|
||||||
|
]
|
||||||
|
keywords = ["nonebot2"]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[project.urls]
|
||||||
python = '^3.10'
|
Homepage = "https://github.com/A-Minos/nonebot-plugin-tetris-stats"
|
||||||
nonebot2 = { extras = ['fastapi'], version = '^2.3.0' }
|
Repository = "https://github.com/A-Minos/nonebot-plugin-tetris-stats"
|
||||||
nonebot-plugin-alconna = '>=0.48.0'
|
Issues = "https://github.com/A-Minos/nonebot-plugin-tetris-stats/issues"
|
||||||
nonebot-plugin-apscheduler = '>=0.4,<0.6'
|
|
||||||
nonebot-plugin-localstore = '>=0.6,<0.8'
|
|
||||||
nonebot-plugin-orm = '>=0.1.1,<0.8.0'
|
|
||||||
nonebot-plugin-session = '^0.3.1'
|
|
||||||
nonebot-plugin-session-orm = '^0.2.0'
|
|
||||||
nonebot-plugin-user = '>=0.2,<0.5'
|
|
||||||
nonebot-plugin-userinfo = '^0.2.4'
|
|
||||||
aiocache = '^0.12.2'
|
|
||||||
aiofiles = '>=23.2.1,<25.0.0'
|
|
||||||
async-lru = '^2.0.4'
|
|
||||||
httpx = '^0.27.0'
|
|
||||||
jinja2 = '^3.1.3'
|
|
||||||
lxml = '^5.1.0'
|
|
||||||
msgspec = "^0.18.6"
|
|
||||||
pandas = '>=1.4.3,<3.0.0'
|
|
||||||
pillow = '^10.3.0'
|
|
||||||
playwright = '^1.41.2'
|
|
||||||
rich = '^13.7.1'
|
|
||||||
yarl = "^1.9.4"
|
|
||||||
zstandard = '>=0.22,<0.24'
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
|
||||||
basedpyright = "^1.17.0"
|
|
||||||
mypy = '>=1.9'
|
|
||||||
pandas-stubs = '>=1.5.2,<3.0.0'
|
|
||||||
ruff = '>=0.3.0'
|
|
||||||
types-aiofiles = '>=23.2.0.20240106,<25.0.0.0'
|
|
||||||
types-lxml = '^2024.2.9'
|
|
||||||
types-pillow = '^10.2.0.20240423'
|
|
||||||
types-ujson = '^5.9.0'
|
|
||||||
nonebot2 = { extras = ['all'], version = '^2.3.0' }
|
|
||||||
nonebot-adapter-discord = '^0.1.3'
|
|
||||||
nonebot-adapter-kaiheila = '^0.3.4'
|
|
||||||
nonebot-adapter-onebot = '^2.4.1'
|
|
||||||
nonebot-adapter-qq = '^1.4.4'
|
|
||||||
nonebot-adapter-satori = '>=0.11.4,<0.13.0'
|
|
||||||
nonebot-plugin-orm = { extras = ['default'], version = '>=0.3,<0.8' }
|
|
||||||
|
|
||||||
[tool.poetry.group.debug.dependencies]
|
|
||||||
matplotlib = "^3.9.2"
|
|
||||||
memory-profiler = '^0.61.0'
|
|
||||||
objprint = '^0.2.2'
|
|
||||||
pyqt6 = "^6.7.1"
|
|
||||||
viztracer = '^0.16.2'
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ['poetry-core>=1.0.0']
|
requires = ["hatchling"]
|
||||||
build-backend = 'poetry.core.masonry.api'
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
|
[dependency-groups]
|
||||||
|
dev = [
|
||||||
|
"basedpyright>=1.19.1",
|
||||||
|
"mypy>=1.13.0",
|
||||||
|
"nonebot-adapter-discord>=0.1.8",
|
||||||
|
"nonebot-adapter-kaiheila>=0.3.4",
|
||||||
|
"nonebot-adapter-onebot>=2.4.6",
|
||||||
|
"nonebot-adapter-qq>=1.5.3",
|
||||||
|
"ruff>=0.7.1",
|
||||||
|
]
|
||||||
|
typecheck = [
|
||||||
|
"pandas-stubs>=2.2.3.241009",
|
||||||
|
"types-aiofiles>=24.1.0.20240626",
|
||||||
|
"types-lxml>=2024.9.16",
|
||||||
|
"types-pillow>=10.2.0.20240822",
|
||||||
|
]
|
||||||
|
test = ["nonebot-adapter-satori>=0.12.6", "nonebot-plugin-orm[default]>=0.7.6", "nonebot2[aiohttp,fastapi]>=2.3.3"]
|
||||||
|
debug = ["matplotlib>=3.9.2", "memory-profiler>=0.61.0", "objprint>=0.2.3", "pyqt6>=6.7.1", "viztracer>=0.17.0"]
|
||||||
|
release = ["bump-my-version>=0.28.0"]
|
||||||
|
|
||||||
|
[tool.uv]
|
||||||
|
default-groups = ["dev", "typecheck"]
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 120
|
line-length = 120
|
||||||
target-version = 'py310'
|
target-version = "py310"
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
select = [
|
select = [
|
||||||
'F', # pyflakes
|
"F", # pyflakes
|
||||||
'E', # pycodestyle errors
|
"E", # pycodestyle errors
|
||||||
'W', # pycodestyle warnings
|
"W", # pycodestyle warnings
|
||||||
'C90', # mccabe
|
"C90", # mccabe
|
||||||
'I', # isort
|
"I", # isort
|
||||||
'N', # PEP8-naming
|
"N", # PEP8-naming
|
||||||
'UP', # pyupgrade
|
"UP", # pyupgrade
|
||||||
'YTT', # flake8-2020
|
"YTT", # flake8-2020
|
||||||
'ANN', # flake8-annotations
|
"ANN", # flake8-annotations
|
||||||
'ASYNC', # flake8-async
|
"ASYNC", # flake8-async
|
||||||
'S', # flake8-bandit
|
"S", # flake8-bandit
|
||||||
'BLE', # flake8-blind-except
|
"BLE", # flake8-blind-except
|
||||||
'FBT', # flake8-boolean-trap
|
"FBT", # flake8-boolean-trap
|
||||||
'B', # flake8-bugbear
|
"B", # flake8-bugbear
|
||||||
'A', # flake8-builtins
|
"A", # flake8-builtins
|
||||||
'COM', # flake8-commas
|
"COM", # flake8-commas
|
||||||
'C4', # flake8-comprehensions
|
"C4", # flake8-comprehensions
|
||||||
'DTZ', # flake8-datetimez
|
"DTZ", # flake8-datetimez
|
||||||
'T10', # flake8-debugger
|
"T10", # flake8-debugger
|
||||||
'EM', # flake8-errmsg
|
"EM", # flake8-errmsg
|
||||||
'FA', # flake8-future-annotations
|
"FA", # flake8-future-annotations
|
||||||
'ISC', # flake8-implicit-str-concat
|
"ISC", # flake8-implicit-str-concat
|
||||||
'ICN', # flake8-import-conventions
|
"ICN", # flake8-import-conventions
|
||||||
'PIE', # flake8-pie
|
"PIE", # flake8-pie
|
||||||
'T20', # flake8-print
|
"T20", # flake8-print
|
||||||
'PYI', # flake8-pyi
|
"PYI", # flake8-pyi
|
||||||
'Q', # flake8-quotes
|
"Q", # flake8-quotes
|
||||||
'RSE', # flake8-raise
|
"RSE", # flake8-raise
|
||||||
'RET', # flake8-return
|
"RET", # flake8-return
|
||||||
'SLF', # flake8-self
|
"SLF", # flake8-self
|
||||||
'SLOT', # flake8-slots
|
"SLOT", # flake8-slots
|
||||||
'SIM', # flake8-simplify
|
"SIM", # flake8-simplify
|
||||||
'TID', # flake8-tidy-imports
|
"TID", # flake8-tidy-imports
|
||||||
'TCH', # flake8-type-checking
|
"TCH", # flake8-type-checking
|
||||||
'ARG', # flake8-unused-arguments
|
"ARG", # flake8-unused-arguments
|
||||||
'PTH', # flake8-use-pathlib
|
"PTH", # flake8-use-pathlib
|
||||||
'ERA', # eradicate
|
"ERA", # eradicate
|
||||||
'PD', # pandas-vet
|
"PD", # pandas-vet
|
||||||
'PGH', # pygrep-hooks
|
"PGH", # pygrep-hooks
|
||||||
'PL', # pylint
|
"PL", # pylint
|
||||||
'TRY', # tryceratops
|
"TRY", # tryceratops
|
||||||
'FLY', # flynt
|
"FLY", # flynt
|
||||||
'FAST', # FastAPI
|
"FAST", # FastAPI
|
||||||
'PERF', # Perflint
|
"PERF", # Perflint
|
||||||
'FURB', # refurb
|
"FURB", # refurb
|
||||||
'RUF', # Ruff-specific rules
|
"RUF", # Ruff-specific rules
|
||||||
]
|
]
|
||||||
ignore = [
|
ignore = [
|
||||||
'E501', # 过长的行由 ruff format 处理, 剩余的都是字符串
|
"E501", # 过长的行由 ruff format 处理, 剩余的都是字符串
|
||||||
'ANN101', # 由 type checker 自动推断
|
"ANN101", # 由 type checker 自动推断
|
||||||
'ANN102', # 由 type checker 自动推断
|
"ANN102", # 由 type checker 自动推断
|
||||||
'ANN202', # 向 NoneBot 注册的函数
|
"ANN202", # 向 NoneBot 注册的函数
|
||||||
'TRY003',
|
"TRY003",
|
||||||
'COM812', # 强制尾随逗号
|
"COM812", # 强制尾随逗号
|
||||||
'TID252', # 相对导入
|
"TID252", # 相对导入
|
||||||
'ISC001', # format warning
|
"ISC001", # format warning
|
||||||
]
|
]
|
||||||
flake8-quotes = { inline-quotes = 'single', multiline-quotes = 'double' }
|
flake8-quotes = { inline-quotes = "single", multiline-quotes = "double" }
|
||||||
|
|
||||||
[tool.ruff.lint.flake8-annotations]
|
[tool.ruff.lint.flake8-annotations]
|
||||||
mypy-init-return = true
|
mypy-init-return = true
|
||||||
|
|
||||||
[tool.ruff.lint.flake8-builtins]
|
[tool.ruff.lint.flake8-builtins]
|
||||||
builtins-ignorelist = ['id']
|
builtins-ignorelist = ["id"]
|
||||||
|
|
||||||
[tool.ruff.format]
|
[tool.ruff.format]
|
||||||
quote-style = 'single'
|
quote-style = "single"
|
||||||
|
|
||||||
[tool.basedpyright]
|
[tool.basedpyright]
|
||||||
pythonVersion = "3.10"
|
pythonVersion = "3.10"
|
||||||
@@ -141,5 +150,18 @@ pythonPlatform = "All"
|
|||||||
defineConstant = { PYDANTIC_V2 = true }
|
defineConstant = { PYDANTIC_V2 = true }
|
||||||
typeCheckingMode = "standard"
|
typeCheckingMode = "standard"
|
||||||
|
|
||||||
|
[tool.bumpversion]
|
||||||
|
current_version = "1.6.0"
|
||||||
|
tag = true
|
||||||
|
sign_tags = true
|
||||||
|
tag_name = "{new_version}"
|
||||||
|
commit = true
|
||||||
|
message = "🔖 {new_version}"
|
||||||
|
|
||||||
|
[[tool.bumpversion.files]]
|
||||||
|
filename = "pyproject.toml"
|
||||||
|
search = "version = \"{current_version}\""
|
||||||
|
replace = "version = \"{new_version}\""
|
||||||
|
|
||||||
[tool.nonebot]
|
[tool.nonebot]
|
||||||
plugins = ['nonebot_plugin_tetris_stats']
|
plugins = ["nonebot_plugin_tetris_stats"]
|
||||||
|
|||||||
21
renovate.json
Normal file
21
renovate.json
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"labels": ["dependencies"],
|
||||||
|
"dependencyDashboardTitle": "📌 Dependency Dashboard",
|
||||||
|
"dependencyDashboardLabels": ["dependencies"],
|
||||||
|
"commitMessagePrefix": "⬆️",
|
||||||
|
"commitMessageAction": "Upgrade",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchUpdateTypes": "pin",
|
||||||
|
"commitMessagePrefix": "📌",
|
||||||
|
"commitMessageAction": "Pin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchUpdateTypes": "rollback",
|
||||||
|
"commitMessagePrefix": "⬇️",
|
||||||
|
"commitMessageAction": "Downgrade"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"extends": ["config:recommended"]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user