mirror of
https://github.com/ikunshare/Onekey.git
synced 2026-01-15 01:23:02 +08:00
Compare commits
60 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
628b92b86d | ||
|
|
ee8c2242f2 | ||
|
|
76340538b8 | ||
|
|
c693220d73 | ||
|
|
324e537c60 | ||
|
|
50b9f1b724 | ||
|
|
7ba02c4e8f | ||
|
|
b2dada2018 | ||
|
|
5ca4f26242 | ||
|
|
da596964da | ||
|
|
ed8fa1cd7f | ||
|
|
485a9d85e2 | ||
|
|
41cfa244e3 | ||
|
|
09a9e48f7e | ||
|
|
7ef7297119 | ||
|
|
ad26456d6c | ||
|
|
cd18a2f49d | ||
|
|
485fca07f1 | ||
|
|
452be816b1 | ||
|
|
2ba17f1bac | ||
|
|
17e1fea9cf | ||
|
|
2fd7a13bcc | ||
|
|
4edcfa8c8e | ||
|
|
a0536fb4d6 | ||
|
|
0912841e44 | ||
|
|
3b39253d0f | ||
|
|
1ddbf5e02f | ||
|
|
fd6df047dc | ||
|
|
df2fd4a10a | ||
|
|
72bb4a7e97 | ||
|
|
6b37034360 | ||
|
|
8ca12ea7b0 | ||
|
|
b89c38721f | ||
|
|
76d3d2caeb | ||
|
|
38462bf6cd | ||
|
|
3d028a0e0c | ||
|
|
acfad07a07 | ||
|
|
479661a8a3 | ||
|
|
a5d100078b | ||
|
|
0647419bdf | ||
|
|
e9b466f6df | ||
|
|
7e72bea8a1 | ||
|
|
bb789d8cf7 | ||
|
|
3178303b0a | ||
|
|
738e0eb617 | ||
|
|
fb0806aea7 | ||
|
|
2a02d07e8d | ||
|
|
df4342957f | ||
|
|
e2f2120b0c | ||
|
|
580cd44247 | ||
|
|
0e57caefd1 | ||
|
|
062e58ea57 | ||
|
|
651d9f79b2 | ||
|
|
8f8aaf81a1 | ||
|
|
e8dd606db4 | ||
|
|
b50183e723 | ||
|
|
74c5464bb4 | ||
|
|
7f087983d3 | ||
|
|
9a3668a2f4 | ||
|
|
15d2d46dda |
15
.github/FUNDING.yml
vendored
Normal file
15
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||
polar: # Replace with a single Polar username
|
||||
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
|
||||
thanks_dev: # Replace with a single thanks.dev username
|
||||
custom: ['https://afdian.com/a/ikun0014']
|
||||
25
.github/ISSUE_TEMPLATE/bug反馈.md
vendored
Normal file
25
.github/ISSUE_TEMPLATE/bug反馈.md
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
name: Bug反馈
|
||||
about: 反馈一个虫子(确信)
|
||||
title: "[BUG]: "
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**触发Bug后出现了什么症状**
|
||||
1.
|
||||
|
||||
**如何复现该Bug**
|
||||
步骤:
|
||||
1.
|
||||
|
||||
**日志**
|
||||
复制在这里
|
||||
|
||||
**截图**
|
||||
对程序的完整截图
|
||||
|
||||
**系统:**
|
||||
- OS: Windows
|
||||
- Version: 10
|
||||
79
.github/workflows/build.yml
vendored
79
.github/workflows/build.yml
vendored
@@ -1,79 +0,0 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- name: Check out git repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Get package version
|
||||
shell: powershell
|
||||
run: |
|
||||
$version = (Get-Content package.json | ConvertFrom-Json).version
|
||||
echo "PACKAGE_VERSION=$version" >> $env:GITHUB_ENV
|
||||
|
||||
- name: Set up Python 3.11
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: 3.11.9
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install imageio
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Build
|
||||
uses: Nuitka/Nuitka-Action@main
|
||||
with:
|
||||
nuitka-version: main
|
||||
script-name: main.py
|
||||
standalone: true
|
||||
onefile: true
|
||||
show-memory: true
|
||||
windows-uac-admin: true
|
||||
windows-icon-from-ico: icon.jpg
|
||||
company-name: ikunshare
|
||||
product-name: Onekey
|
||||
file-version: ${{ env.PACKAGE_VERSION }}
|
||||
product-version: ${{ env.PACKAGE_VERSION }}
|
||||
file-description: 一个Steam仓库清单下载器
|
||||
copyright: Copyright © 2024 ikun0014
|
||||
output-file: Onekey---v${{ env.PACKAGE_VERSION }}.exe
|
||||
assume-yes-for-downloads: true
|
||||
output-dir: build
|
||||
|
||||
- name: Create git tag
|
||||
uses: pkgdeps/git-tag-action@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
github_repo: ${{ github.repository }}
|
||||
version: ${{ env.PACKAGE_VERSION }}
|
||||
git_commit_sha: ${{ github.sha }}
|
||||
git_tag_prefix: "v"
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
tag_name: v${{ env.PACKAGE_VERSION }}
|
||||
files: build/Onekey---v${{ env.PACKAGE_VERSION }}.exe
|
||||
prerelease: false
|
||||
draft: false
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Upload to Telegram Channel
|
||||
run: |
|
||||
& curl -F "chat_id=${{ secrets.TELEGRAM_TO }}" `
|
||||
-F "document=@build/Onekey---v${{ env.PACKAGE_VERSION }}.exe" `
|
||||
-F "caption=Onekey's New Update ${{ env.PACKAGE_VERSION }}" `
|
||||
-F "parse_mode=Markdown" `
|
||||
"https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendDocument"
|
||||
99
.github/workflows/release.yml
vendored
Normal file
99
.github/workflows/release.yml
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Check out git repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Get package version
|
||||
shell: powershell
|
||||
run: |
|
||||
$version = (Get-Content package.json | ConvertFrom-Json).version
|
||||
echo "PACKAGE_VERSION=$version" >> $env:GITHUB_ENV
|
||||
|
||||
- name: Set up Python 3.13.1
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: 3.13.1
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install imageio
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Build
|
||||
uses: Nuitka/Nuitka-Action@main
|
||||
with:
|
||||
nuitka-version: main
|
||||
script-name: main.py
|
||||
mode: onefile
|
||||
show-memory: true
|
||||
windows-uac-admin: true
|
||||
onefile-tempdir-spec: "%TEMP%\\onekey_%PID%_%TIME%"
|
||||
windows-icon-from-ico: icon.jpg
|
||||
company-name: ikunshare
|
||||
product-name: Onekey
|
||||
file-version: ${{ env.PACKAGE_VERSION }}
|
||||
product-version: ${{ env.PACKAGE_VERSION }}
|
||||
file-description: 一个Steam仓库清单下载器
|
||||
copyright: Copyright © 2025 ikun0014
|
||||
output-file: Onekey_v${{ env.PACKAGE_VERSION }}.exe
|
||||
assume-yes-for-downloads: true
|
||||
output-dir: build
|
||||
|
||||
- name: Create git tag
|
||||
uses: pkgdeps/git-tag-action@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
github_repo: ${{ github.repository }}
|
||||
version: ${{ env.PACKAGE_VERSION }}
|
||||
git_commit_sha: ${{ github.sha }}
|
||||
git_tag_prefix: "v"
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Onekey_v${{ env.PACKAGE_VERSION }}.exe
|
||||
path: build/Onekey_v${{ env.PACKAGE_VERSION }}.exe
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
tag_name: v${{ env.PACKAGE_VERSION }}
|
||||
files: build/Onekey_v${{ env.PACKAGE_VERSION }}.exe
|
||||
prerelease: false
|
||||
draft: false
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Gitee Release
|
||||
uses: nicennnnnnnlee/action-gitee-release@v1.0.5
|
||||
with:
|
||||
gitee_owner: ikun0014
|
||||
gitee_repo: Onekey
|
||||
gitee_token: ${{ secrets.GITEE_TOKEN }}
|
||||
gitee_tag_name: v${{ env.PACKAGE_VERSION }}
|
||||
gitee_release_name: v${{ env.PACKAGE_VERSION }}
|
||||
gitee_release_body: I don't know
|
||||
gitee_target_commitish: main
|
||||
gitee_upload_retry_times: 3
|
||||
gitee_file_name: Onekey_v${{ env.PACKAGE_VERSION }}.exe
|
||||
gitee_file_path: build/Onekey_v${{ env.PACKAGE_VERSION }}.exe
|
||||
|
||||
- name: Upload to Telegram Channel
|
||||
run: |
|
||||
& curl -F "chat_id=${{ secrets.TELEGRAM_TO }}" `
|
||||
-F "document=@build/Onekey_v${{ env.PACKAGE_VERSION }}.exe" `
|
||||
-F "caption=Onekey's New Update ${{ env.PACKAGE_VERSION }}" `
|
||||
-F "parse_mode=Markdown" `
|
||||
"https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendDocument"
|
||||
25
.github/workflows/sync.yml
vendored
Normal file
25
.github/workflows/sync.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Sync to Gitee
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
sync:
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Sync to Gitee
|
||||
uses: Yikun/hub-mirror-action@master
|
||||
with:
|
||||
src: github/ikunshare
|
||||
dst: gitee/ikun0014
|
||||
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }}
|
||||
dst_token: ${{ secrets.GITEE_TOKEN }}
|
||||
src_account_type: org
|
||||
dst_account_type: user
|
||||
white_list: "Onekey"
|
||||
force_update: true
|
||||
debug: true
|
||||
15
README.md
15
README.md
@@ -11,14 +11,15 @@
|
||||
|
||||
|
||||
## Onekey
|
||||
Onekey Steam Depot Manifest Downloader
|
||||
Onekey Steam Depot Manifest Downloader
|
||||
|
||||
## 使用方法
|
||||
先去Release下最新发布,然后去steamtools官网下steamtools,日志会有点石介意别用
|
||||
去Releases处下载最新的发布,并且安装好SteamTools或者GreenLuma
|
||||
然后打开Onekey输入App ID即可使用
|
||||
|
||||
## 开发
|
||||
本程序使用Python编程语言开发
|
||||
要求环境:
|
||||
要求环境:
|
||||
1.Python 3.10及以上
|
||||
2.Windows 10及以上
|
||||
3.使用Git进行版本管理
|
||||
@@ -38,7 +39,7 @@ pip install -r requirements.txt
|
||||
## 项目协议
|
||||
本项目基于 GPL-3.0 许可证发行,以下协议是对于 GPL-3.0 原协议的补充,如有冲突,以以下协议为准。
|
||||
|
||||
词语约定:“使用者”指签署本协议的使用者;“版权数据”指包括但不限于图像、音频、名字等在内的他人拥有所属版权的数据。
|
||||
词语约定: “使用者”指签署本协议的使用者;“版权数据”指包括但不限于图像、音频、名字等在内的他人拥有所属版权的数据。
|
||||
|
||||
本项目的数据来源原理是从Steam官方的CDN服务器中拉取游戏清单数据,经过对数据简单地筛选与合并后进行展示,因此本项目不对数据的准确性负责。
|
||||
使用本项目的过程中可能会产生版权数据,对于这些版权数据,本项目不拥有它们的所有权,为了避免造成侵权,使用者务必在24 小时内清除使用本项目的过程中所产生的版权数据。
|
||||
@@ -64,8 +65,6 @@ pip install -r requirements.txt
|
||||
查看 [FAQ](https://ikunshare.com/d/49) 获取常见问题的解答。
|
||||
|
||||
## 社区和支持
|
||||
加入我们的社区,参与讨论和支持:
|
||||
加入我们的社区,参与讨论和支持:
|
||||
- [GitHub Discussions](https://github.com/ikunshare/Onekey/discussions)
|
||||
- [Gitter Chat](https://gitter.im/ikunshare/Onekey)
|
||||
- [QQ](https://qm.qq.com/q/d7sWovfAGI)
|
||||
- [Telegram](https://t.me/ikunshare_group)
|
||||
- [Telegram](https://t.me/ikunshare_qun)
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
import time
|
||||
from aiohttp import ClientError, ConnectionTimeoutError
|
||||
from .log import log
|
||||
from .stack_error import stack_error
|
||||
|
||||
async def check_github_api_rate_limit(headers, session):
|
||||
url = 'https://api.github.com/rate_limit'
|
||||
|
||||
try:
|
||||
async with session.get(url, headers=headers, ssl=False) as r:
|
||||
r_json = await r.json()
|
||||
|
||||
if r.status == 200:
|
||||
rate_limit = r_json.get('rate', {})
|
||||
remaining_requests = rate_limit.get('remaining', 0)
|
||||
reset_time = rate_limit.get('reset', 0)
|
||||
reset_time_formatted = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(reset_time))
|
||||
|
||||
log.info(f' 🔄 剩余请求次数: {remaining_requests}')
|
||||
|
||||
if remaining_requests == 0:
|
||||
log.warning(f'⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置,建议生成一个填在配置文件里')
|
||||
else:
|
||||
log.error('⚠ Github请求数检查失败,网络错误')
|
||||
|
||||
except ClientError as e:
|
||||
log.error(f'⚠ 检查Github API 请求数失败,{stack_error(e)}')
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'⚠ 检查Github API 请求数超时: {stack_error(e)}')
|
||||
except Exception as e:
|
||||
log.error(f'⚠ 发生错误: {stack_error(e)}')
|
||||
@@ -1,42 +0,0 @@
|
||||
import os
|
||||
import sys
|
||||
import asyncio
|
||||
import ujson as json
|
||||
import aiofiles
|
||||
from .stack_error import stack_error
|
||||
from .log import log
|
||||
|
||||
DEFAULT_CONFIG = {
|
||||
"Github_Personal_Token": "",
|
||||
"Custom_Steam_Path": "",
|
||||
"QA1": "温馨提示:Github_Personal_Token可在Github设置的最底下开发者选项找到,详情看教程",
|
||||
"教程": "https://ikunshare.com/Onekey_tutorial"
|
||||
}
|
||||
|
||||
async def gen_config_file():
|
||||
try:
|
||||
async with aiofiles.open("./config.json", mode="w", encoding="utf-8") as f:
|
||||
await f.write(json.dumps(DEFAULT_CONFIG, indent=2, ensure_ascii=False, escape_forward_slashes=False))
|
||||
|
||||
log.info('🖱️ 程序可能为第一次启动或配置重置,请填写配置文件后重新启动程序')
|
||||
except Exception as e:
|
||||
log.error(f'❌ 配置文件生成失败,{stack_error(e)}')
|
||||
|
||||
async def load_config():
|
||||
if not os.path.exists('./config.json'):
|
||||
await gen_config_file()
|
||||
os.system('pause')
|
||||
sys.exit()
|
||||
|
||||
try:
|
||||
async with aiofiles.open("./config.json", mode="r", encoding="utf-8") as f:
|
||||
config = json.loads(await f.read())
|
||||
return config
|
||||
except Exception as e:
|
||||
log.error(f"配置文件加载失败,原因: {stack_error(e)},重置配置文件中...")
|
||||
os.remove("./config.json")
|
||||
await gen_config_file()
|
||||
os.system('pause')
|
||||
sys.exit()
|
||||
|
||||
config = asyncio.run(load_config())
|
||||
@@ -1,40 +0,0 @@
|
||||
import asyncio
|
||||
import aiofiles
|
||||
import vdf
|
||||
from pathlib import Path
|
||||
from .log import log
|
||||
|
||||
lock = asyncio.Lock()
|
||||
|
||||
async def depotkey_merge(config_path: Path, depots_config: dict) -> bool:
|
||||
if not config_path.exists():
|
||||
async with lock:
|
||||
log.error('👋 Steam默认配置不存在,可能是没有登录账号')
|
||||
return False
|
||||
|
||||
try:
|
||||
async with aiofiles.open(config_path, encoding='utf-8') as f:
|
||||
content = await f.read()
|
||||
|
||||
config = vdf.loads(content)
|
||||
steam = config.get('InstallConfigStore', {}).get('Software', {}).get('Valve') or \
|
||||
config.get('InstallConfigStore', {}).get('Software', {}).get('valve')
|
||||
|
||||
if steam is None:
|
||||
log.error('⚠ 找不到Steam配置,请检查配置文件')
|
||||
return False
|
||||
|
||||
depots = steam.setdefault('depots', {})
|
||||
depots.update(depots_config.get('depots', {}))
|
||||
|
||||
async with aiofiles.open(config_path, mode='w', encoding='utf-8') as f:
|
||||
new_context = vdf.dumps(config, pretty=True)
|
||||
await f.write(new_context)
|
||||
|
||||
log.info('✅ 成功合并')
|
||||
return True
|
||||
|
||||
except Exception as e:
|
||||
async with lock:
|
||||
log.error(f'❌ 合并失败,原因: {e}')
|
||||
return False
|
||||
@@ -1,43 +0,0 @@
|
||||
from pathlib import Path
|
||||
import aiofiles
|
||||
import vdf
|
||||
|
||||
from .log import log
|
||||
from .manifest_down import get
|
||||
from .stack_error import stack_error
|
||||
|
||||
|
||||
async def get_manifest(sha: str, path: str, steam_path: Path, repo: str, session) -> list:
|
||||
collected_depots = []
|
||||
depot_cache_path = steam_path / 'depotcache'
|
||||
|
||||
try:
|
||||
depot_cache_path.mkdir(exist_ok=True)
|
||||
|
||||
if path.endswith('.manifest'):
|
||||
save_path = depot_cache_path / path
|
||||
if save_path.exists():
|
||||
log.warning(f'👋 已存在清单: {save_path}')
|
||||
return collected_depots
|
||||
|
||||
content = await get(sha, path, repo, session)
|
||||
log.info(f'🔄 清单下载成功: {path}')
|
||||
|
||||
async with aiofiles.open(save_path, 'wb') as f:
|
||||
await f.write(content)
|
||||
|
||||
elif path == 'Key.vdf':
|
||||
content = await get(sha, path, repo, session)
|
||||
log.info(f'🔄 密钥下载成功: {path}')
|
||||
|
||||
depots_config = vdf.loads(content.decode('utf-8'))
|
||||
collected_depots = [
|
||||
(depot_id, depot_info['DecryptionKey'])
|
||||
for depot_id, depot_info in depots_config['depots'].items()
|
||||
]
|
||||
|
||||
except Exception as e:
|
||||
log.error(f'❌ 处理失败: {path} - {stack_error(e)}')
|
||||
raise
|
||||
|
||||
return collected_depots
|
||||
@@ -1,20 +0,0 @@
|
||||
import os
|
||||
import winreg
|
||||
from pathlib import Path
|
||||
from .log import log
|
||||
from .config import config
|
||||
from .stack_error import stack_error
|
||||
|
||||
def get_steam_path() -> Path:
|
||||
try:
|
||||
key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r'Software\Valve\Steam')
|
||||
steam_path = Path(winreg.QueryValueEx(key, 'SteamPath')[0])
|
||||
|
||||
custom_steam_path = config.get("Custom_Steam_Path", "").strip()
|
||||
return Path(custom_steam_path) if custom_steam_path else steam_path
|
||||
except Exception as e:
|
||||
log.error(f'❌ Steam路径获取失败, {stack_error(e)}, 请检查是否正确安装Steam')
|
||||
os.system('pause')
|
||||
return Path()
|
||||
|
||||
steam_path = get_steam_path()
|
||||
@@ -1,32 +0,0 @@
|
||||
from .get_steam_path import steam_path
|
||||
from pathlib import Path
|
||||
|
||||
async def greenluma_add(depot_id_list: list) -> bool:
|
||||
app_list_path = steam_path / 'AppList'
|
||||
|
||||
try:
|
||||
app_list_path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
for file in app_list_path.glob('*.txt'):
|
||||
file.unlink(missing_ok=True)
|
||||
|
||||
depot_dict = {
|
||||
int(i.stem): int(i.read_text(encoding='utf-8').strip())
|
||||
for i in app_list_path.iterdir() if i.is_file() and i.stem.isdecimal() and i.suffix == '.txt'
|
||||
}
|
||||
|
||||
for depot_id in map(int, depot_id_list):
|
||||
if depot_id not in depot_dict.values():
|
||||
index = max(depot_dict.keys(), default=-1) + 1
|
||||
while index in depot_dict:
|
||||
index += 1
|
||||
|
||||
(app_list_path / f'{index}.txt').write_text(str(depot_id), encoding='utf-8')
|
||||
|
||||
depot_dict[index] = depot_id
|
||||
|
||||
return True
|
||||
|
||||
except Exception as e:
|
||||
print(f'❌ 处理时出错: {e}')
|
||||
return False
|
||||
@@ -1,25 +0,0 @@
|
||||
from colorama import Fore, Back, Style, init
|
||||
|
||||
init()
|
||||
|
||||
from .log import log
|
||||
|
||||
def init():
|
||||
banner_lines = [
|
||||
f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} _____ __ _ _____ _ _ _____ __ __ {Style.RESET_ALL}",
|
||||
f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /{Style.RESET_ALL}",
|
||||
f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /{Style.RESET_ALL}",
|
||||
f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | | | | | |\\ | | __| | |\\ \\ | __| \\ / {Style.RESET_ALL}",
|
||||
f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | |_| | | | \\ | | |___ | | \\ \\ | |___ / /{Style.RESET_ALL}",
|
||||
f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/{Style.RESET_ALL}",
|
||||
]
|
||||
for line in banner_lines:
|
||||
print(line)
|
||||
|
||||
log.info('作者:ikun0014')
|
||||
log.info('本项目采用GNU General Public License v3开源许可证')
|
||||
log.info('版本:1.2.6')
|
||||
log.info('项目仓库:https://github.com/ikunshare/Onekey')
|
||||
log.info('官网:ikunshare.com')
|
||||
log.warning('本项目完全开源免费,如果你在淘宝,QQ群内通过购买方式获得,赶紧回去骂商家死全家\n交流群组:\nhttps://qm.qq.com/q/d7sWovfAGI\nhttps://t.me/ikunshare_qun')
|
||||
log.warning('如果本项目中的Emoji(即表情包)无法正常显示,请使用支持Emoji的终端(例如Windows Terminal)')
|
||||
@@ -1,29 +1,45 @@
|
||||
import os
|
||||
import colorama
|
||||
import logging
|
||||
import colorlog
|
||||
import logzero
|
||||
from logzero import setup_logger, LogFormatter
|
||||
from .variable import LOG_FILE, DEBUG_MODE
|
||||
|
||||
LOG_FORMAT = '%(log_color)s[%(name)s][%(levelname)s]%(message)s'
|
||||
LOG_COLORS = {
|
||||
'INFO': 'cyan',
|
||||
'WARNING': 'yellow',
|
||||
'ERROR': 'red',
|
||||
'CRITICAL': 'purple',
|
||||
}
|
||||
|
||||
def init_log(level=logging.DEBUG) -> logging.Logger:
|
||||
logger = logging.getLogger('Onekey')
|
||||
logger.setLevel(level)
|
||||
|
||||
stream_handler = logging.StreamHandler()
|
||||
stream_handler.setLevel(level)
|
||||
|
||||
fmt = colorlog.ColoredFormatter(LOG_FORMAT, log_colors=LOG_COLORS)
|
||||
stream_handler.setFormatter(fmt)
|
||||
|
||||
# 避免重复添加处理器
|
||||
if not logger.handlers:
|
||||
logger.addHandler(stream_handler)
|
||||
|
||||
return logger
|
||||
if not os.path.exists(f"./logs"):
|
||||
os.makedirs(f"./logs")
|
||||
|
||||
|
||||
log = init_log()
|
||||
def log(name: str) -> logging.Logger:
|
||||
if DEBUG_MODE:
|
||||
level = logzero.DEBUG
|
||||
else:
|
||||
level = logzero.INFO
|
||||
|
||||
colors = {
|
||||
logzero.DEBUG: colorama.Fore.CYAN,
|
||||
logzero.INFO: colorama.Fore.GREEN,
|
||||
logzero.WARNING: colorama.Fore.YELLOW,
|
||||
logzero.ERROR: colorama.Fore.RED,
|
||||
logzero.CRITICAL: colorama.Fore.MAGENTA,
|
||||
}
|
||||
|
||||
terminal_formatter = LogFormatter(
|
||||
color=True,
|
||||
fmt="%(color)s%(message)s%(end_color)s",
|
||||
datefmt="%Y-%m-%d %H:%M:%S",
|
||||
colors=colors,
|
||||
)
|
||||
|
||||
logger = setup_logger(name, level=level, formatter=terminal_formatter)
|
||||
|
||||
if LOG_FILE:
|
||||
logfile = f"./logs/{name}.log"
|
||||
file_handler = logging.FileHandler(logfile)
|
||||
file_formatter = logging.Formatter(
|
||||
"[%(asctime)s] | [%(name)s:%(levelname)s] | [%(module)s.%(funcName)s:%(lineno)d] - %(message)s",
|
||||
datefmt="%Y-%m-%d %H:%M:%S",
|
||||
)
|
||||
file_handler.setFormatter(file_formatter)
|
||||
logger.addHandler(file_handler)
|
||||
|
||||
return logger
|
||||
@@ -1,95 +0,0 @@
|
||||
import os
|
||||
from aiohttp import ClientSession, ConnectionTimeoutError
|
||||
|
||||
from common.config import config
|
||||
from common.dkey_merge import depotkey_merge
|
||||
from common.migration import migrate
|
||||
from common.st_unlock import stool_add
|
||||
from common.gl_unlock import greenluma_add
|
||||
from common.get_manifest_info import get_manifest
|
||||
from common.check import check_github_api_rate_limit
|
||||
from common.log import log
|
||||
from common.get_steam_path import steam_path
|
||||
from common.stack_error import stack_error
|
||||
|
||||
isGreenLuma = any((steam_path / dll).exists() for dll in ['GreenLuma_2024_x86.dll', 'GreenLuma_2024_x64.dll', 'User32.dll'])
|
||||
isSteamTools = (steam_path / 'config' / 'stUI').is_dir()
|
||||
|
||||
async def fetch_branch_info(session, url, headers):
|
||||
try:
|
||||
async with session.get(url, headers=headers, ssl=False) as response:
|
||||
return await response.json()
|
||||
except Exception as e:
|
||||
log.error(f'⚠ 获取信息失败: {stack_error(e)}')
|
||||
return None
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'⚠ 获取信息时超时: {stack_error(e)}')
|
||||
return None
|
||||
|
||||
async def get_latest_repo_info(session, repos, app_id, headers):
|
||||
latest_date = None
|
||||
selected_repo = None
|
||||
|
||||
for repo in repos:
|
||||
url = f'https://api.github.com/repos/{repo}/branches/{app_id}'
|
||||
r_json = await fetch_branch_info(session, url, headers)
|
||||
if r_json and 'commit' in r_json:
|
||||
date = r_json['commit']['commit']['author']['date']
|
||||
if latest_date is None or date > latest_date:
|
||||
latest_date = date
|
||||
selected_repo = repo
|
||||
|
||||
return selected_repo, latest_date
|
||||
|
||||
async def main(app_id: str, repos: list) -> bool:
|
||||
app_id_list = list(filter(str.isdecimal, app_id.strip().split('-')))
|
||||
if not app_id_list:
|
||||
log.error(f'⚠ App ID无效')
|
||||
return False
|
||||
app_id = app_id_list[0]
|
||||
|
||||
async with ClientSession() as session:
|
||||
github_token = config.get("Github_Personal_Token", "")
|
||||
headers = {'Authorization': f'Bearer {github_token}'} if github_token else None
|
||||
await check_github_api_rate_limit(headers, session)
|
||||
|
||||
selected_repo, latest_date = await get_latest_repo_info(session, repos, app_id, headers)
|
||||
|
||||
if selected_repo:
|
||||
log.info(f'🔄 选择清单仓库:{selected_repo}')
|
||||
url = f'https://api.github.com/repos/{selected_repo}/branches/{app_id}'
|
||||
r_json = await fetch_branch_info(session, url, headers)
|
||||
|
||||
if r_json and 'commit' in r_json:
|
||||
sha = r_json['commit']['sha']
|
||||
url = r_json['commit']['commit']['tree']['url']
|
||||
r2_json = await fetch_branch_info(session, url, headers)
|
||||
|
||||
if r2_json and 'tree' in r2_json:
|
||||
collected_depots = []
|
||||
for item in r2_json['tree']:
|
||||
result = await get_manifest(sha, item['path'], steam_path, selected_repo, session)
|
||||
collected_depots.extend(result)
|
||||
|
||||
if collected_depots:
|
||||
if isSteamTools:
|
||||
await migrate(st_use=True, session=session)
|
||||
await stool_add(collected_depots, app_id)
|
||||
log.info('✅ 找到SteamTools,已添加解锁文件')
|
||||
|
||||
if isGreenLuma:
|
||||
await migrate(st_use=False, session=session)
|
||||
await greenluma_add([app_id])
|
||||
depot_config = {'depots': {depot_id: {'DecryptionKey': depot_key} for depot_id, depot_key in collected_depots}}
|
||||
await depotkey_merge(steam_path / 'config' / 'config.vdf', depot_config)
|
||||
if await greenluma_add([int(i) for i in depot_config['depots'] if i.isdecimal()]):
|
||||
log.info('✅ 找到GreenLuma,已添加解锁文件')
|
||||
|
||||
log.info(f'✅ 清单最后更新时间:{latest_date}')
|
||||
log.info(f'✅ 入库成功: {app_id}')
|
||||
os.system('pause')
|
||||
return True
|
||||
|
||||
log.error(f'⚠ 清单下载或生成失败: {app_id}')
|
||||
os.system('pause')
|
||||
return False
|
||||
@@ -1,42 +0,0 @@
|
||||
from aiohttp import ClientError, ConnectionTimeoutError
|
||||
from tqdm.asyncio import tqdm_asyncio
|
||||
|
||||
from .log import log
|
||||
|
||||
|
||||
async def get(sha: str, path: str, repo: str, session, chunk_size: int = 1024) -> bytearray:
|
||||
url_list = [
|
||||
f'https://jsdelivr.pai233.top/gh/{repo}@{sha}/{path}',
|
||||
f'https://cdn.jsdmirror.com/gh/{repo}@{sha}/{path}',
|
||||
f'https://raw.gitmirror.com/{repo}/{sha}/{path}',
|
||||
f'https://raw.dgithub.xyz/{repo}/{sha}/{path}',
|
||||
f'https://gh.akass.cn/{repo}/{sha}/{path}',
|
||||
f'https://raw.githubusercontent.com/{repo}/{sha}/{path}'
|
||||
]
|
||||
retry = 3
|
||||
while retry > 0:
|
||||
for url in url_list:
|
||||
try:
|
||||
async with session.get(url, ssl=False) as response:
|
||||
if response.status == 200:
|
||||
total_size = int(response.headers.get('Content-Length', 0))
|
||||
content = bytearray()
|
||||
|
||||
with tqdm_asyncio(total=total_size, unit='B', unit_scale=True, desc=f'🔄 下载 {path}', colour='#ffadad') as pbar:
|
||||
async for chunk in response.content.iter_chunked(chunk_size):
|
||||
content.extend(chunk)
|
||||
pbar.update(len(chunk))
|
||||
|
||||
return content
|
||||
else:
|
||||
log.error(f'🔄 获取失败: {path} - 状态码: {response.status}')
|
||||
except ClientError as e:
|
||||
log.error(f'🔄 获取失败: {path} - 连接错误: {str(e)}')
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'🔄 连接超时: {url} - 错误: {str(e)}')
|
||||
|
||||
retry -= 1
|
||||
log.warning(f'🔄 重试剩余次数: {retry} - {path}')
|
||||
|
||||
log.error(f'🔄 超过最大重试次数: {path}')
|
||||
raise Exception(f'🔄 无法下载: {path}')
|
||||
@@ -1,62 +0,0 @@
|
||||
import subprocess
|
||||
import aiofiles
|
||||
from aiohttp import ConnectionTimeoutError
|
||||
from pathlib import Path
|
||||
from tqdm.asyncio import tqdm
|
||||
from .log import log
|
||||
from .get_steam_path import steam_path
|
||||
|
||||
directory = Path(steam_path) / "config" / "stplug-in"
|
||||
temp_path = Path('./temp')
|
||||
setup_url = 'https://steamtools.net/res/SteamtoolsSetup.exe'
|
||||
setup_file = temp_path / 'SteamtoolsSetup.exe'
|
||||
|
||||
async def download_setup_file(session) -> None:
|
||||
log.info('🔄 开始下载 SteamTools 安装程序...')
|
||||
try:
|
||||
async with session.get(setup_url, stream=True) as r:
|
||||
if r.status == 200:
|
||||
total_size = int(r.headers.get('Content-Length', 0))
|
||||
chunk_size = 8192
|
||||
progress = tqdm(total=total_size, unit='B', unit_scale=True, desc='下载安装程序')
|
||||
|
||||
async with aiofiles.open(setup_file, mode='wb') as f:
|
||||
async for chunk in r.content.iter_chunked(chunk_size):
|
||||
await f.write(chunk)
|
||||
progress.update(len(chunk))
|
||||
|
||||
progress.close()
|
||||
log.info('✅ 安装程序下载完成')
|
||||
else:
|
||||
log.error('⚠ 网络错误,无法下载安装程序')
|
||||
except Exception as e:
|
||||
log.error(f'⚠ 下载失败: {e}')
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'⚠ 下载时超时: {e}')
|
||||
|
||||
async def migrate(st_use: bool, session) -> None:
|
||||
if st_use:
|
||||
log.info('🔄 检测到你正在使用 SteamTools,尝试迁移旧文件')
|
||||
|
||||
if directory.exists():
|
||||
for file in directory.iterdir():
|
||||
if file.is_file() and file.name.startswith("Onekey_unlock_"):
|
||||
new_filename = file.name[len("Onekey_unlock_"):]
|
||||
|
||||
try:
|
||||
file.rename(directory / new_filename)
|
||||
log.info(f'Renamed: {file.name} -> {new_filename}')
|
||||
except Exception as e:
|
||||
log.error(f'⚠ 重命名失败 {file.name} -> {new_filename}: {e}')
|
||||
else:
|
||||
log.error('⚠ 故障,正在重新安装 SteamTools')
|
||||
temp_path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
await download_setup_file(session)
|
||||
|
||||
subprocess.run(str(setup_file), check=True)
|
||||
for file in temp_path.iterdir():
|
||||
file.unlink()
|
||||
temp_path.rmdir()
|
||||
else:
|
||||
log.info('✅ 未使用 SteamTools,停止迁移')
|
||||
@@ -1,43 +0,0 @@
|
||||
import os
|
||||
import asyncio
|
||||
import subprocess
|
||||
import aiofiles
|
||||
|
||||
from .log import log
|
||||
from .get_steam_path import steam_path
|
||||
|
||||
lock = asyncio.Lock()
|
||||
|
||||
async def stool_add(depot_data: list, app_id: str) -> bool:
|
||||
lua_filename = f"{app_id}.lua"
|
||||
lua_filepath = steam_path / "config" / "stplug-in" / lua_filename
|
||||
|
||||
async with lock:
|
||||
log.info(f'✅ SteamTools 解锁文件生成: {lua_filepath}')
|
||||
try:
|
||||
async with aiofiles.open(lua_filepath, mode="w", encoding="utf-8") as lua_file:
|
||||
await lua_file.write(f'addappid({app_id}, 1, "None")\n')
|
||||
for depot_id, depot_key in depot_data:
|
||||
await lua_file.write(f'addappid({depot_id}, 1, "{depot_key}")\n')
|
||||
|
||||
luapacka_path = steam_path / "config" / "stplug-in" / "luapacka.exe"
|
||||
log.info(f'🔄 正在处理文件: {lua_filepath}')
|
||||
|
||||
result = subprocess.run(
|
||||
[str(luapacka_path), str(lua_filepath)],
|
||||
capture_output=True
|
||||
)
|
||||
if result.returncode != 0:
|
||||
log.error(f'⚠ 调用失败: {result.stderr.decode()}')
|
||||
return False
|
||||
|
||||
log.info('✅ 处理完成')
|
||||
except Exception as e:
|
||||
log.error(f'❌ 处理过程出现错误: {e}')
|
||||
return False
|
||||
finally:
|
||||
if lua_filepath.exists():
|
||||
os.remove(lua_filepath)
|
||||
log.info(f'🗑️ 删除临时文件: {lua_filepath}')
|
||||
|
||||
return True
|
||||
@@ -1,5 +0,0 @@
|
||||
import traceback
|
||||
|
||||
def stack_error(exception: Exception) -> str:
|
||||
stack_trace = traceback.format_exception(type(exception), exception, exception.__traceback__)
|
||||
return ''.join(stack_trace)
|
||||
65
common/variable.py
Normal file
65
common/variable.py
Normal file
@@ -0,0 +1,65 @@
|
||||
import httpx
|
||||
import sys
|
||||
import winreg
|
||||
import ujson as json
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def get_steam_path(config: dict) -> Path:
|
||||
"""获取Steam安装路径"""
|
||||
try:
|
||||
if custom_path := config.get("Custom_Steam_Path"):
|
||||
return Path(custom_path)
|
||||
|
||||
with winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Valve\Steam") as key:
|
||||
return Path(winreg.QueryValueEx(key, "SteamPath")[0])
|
||||
except Exception as e:
|
||||
print(f"Steam路径获取失败: {str(e)}")
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
DEFAULT_CONFIG = {
|
||||
"Github_Personal_Token": "",
|
||||
"Custom_Steam_Path": "",
|
||||
"Debug_Mode": False,
|
||||
"Logging_Files": True,
|
||||
"QA1": "Github Personal Token可在GitHub设置的Developer settings中生成",
|
||||
"教程": "https://ikunshare.com/Onekey_tutorial",
|
||||
}
|
||||
|
||||
|
||||
def generate_config() -> None:
|
||||
try:
|
||||
with open(Path("./config.json"), "w", encoding="utf-8") as f:
|
||||
f.write(json.dumps(DEFAULT_CONFIG, indent=2, ensure_ascii=False))
|
||||
print("配置文件已生成")
|
||||
except IOError as e:
|
||||
print(f"配置文件创建失败: {str(e)}")
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
def load_config() -> dict:
|
||||
if not Path("./config.json").exists():
|
||||
generate_config()
|
||||
print("请填写配置文件后重新运行程序")
|
||||
sys.exit(0)
|
||||
|
||||
try:
|
||||
with open(Path("./config.json"), "r", encoding="utf-8") as f:
|
||||
return json.loads(f.read())
|
||||
except json.JSONDecodeError:
|
||||
print("配置文件损坏,正在重新生成...")
|
||||
generate_config()
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print(f"配置加载失败: {str(e)}")
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
CLIENT = httpx.AsyncClient(verify=False)
|
||||
CONFIG = load_config()
|
||||
DEBUG_MODE = CONFIG.get("Debug_Mode", False)
|
||||
LOG_FILE = CONFIG.get("Logging_Files", True)
|
||||
GITHUB_TOKEN = str(CONFIG.get("Github_Personal_Token", ""))
|
||||
STEAM_PATH = get_steam_path(CONFIG)
|
||||
HEADER = {"Authorization": f"Bearer {GITHUB_TOKEN}"} if GITHUB_TOKEN else None
|
||||
BIN
icon.jpg
BIN
icon.jpg
Binary file not shown.
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 262 KiB |
405
main.py
405
main.py
@@ -1,74 +1,355 @@
|
||||
import os
|
||||
import sys
|
||||
import traceback
|
||||
import asyncio
|
||||
import re
|
||||
import platform
|
||||
import aiofiles
|
||||
import httpx
|
||||
import vdf
|
||||
import time
|
||||
from typing import Tuple, List, Dict
|
||||
from pathlib import Path
|
||||
from enum import Enum
|
||||
from common import log
|
||||
from common.variable import (
|
||||
CLIENT,
|
||||
HEADER,
|
||||
STEAM_PATH,
|
||||
)
|
||||
|
||||
from colorama import Fore, Back, Style
|
||||
from colorama import init as cinit
|
||||
from common.log import log
|
||||
from common.stack_error import stack_error
|
||||
from common.init_text import init
|
||||
from common.main_func import main
|
||||
|
||||
lock = asyncio.Lock()
|
||||
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
||||
|
||||
init()
|
||||
cinit()
|
||||
|
||||
repos = [
|
||||
'ikun0014/ManifestHub',
|
||||
'Auiowu/ManifestAutoUpdate',
|
||||
'tymolu233/ManifestAutoUpdate',
|
||||
]
|
||||
class RepoChoice(Enum):
|
||||
STEAMTOOLS_DUMP = ("SteamAutoCracks/ManifestHub", "推荐使用")
|
||||
IKUN = ("ikun0014/ManifestHub", "没号更不了")
|
||||
AUIOWU = ("Auiowu/ManifestAutoUpdate", "未知维护状态的仓库")
|
||||
|
||||
def check_system_msg():
|
||||
os_type = platform.system()
|
||||
|
||||
LOCK = asyncio.Lock()
|
||||
DEFAULT_REPO = RepoChoice.STEAMTOOLS_DUMP
|
||||
|
||||
|
||||
logger = log.log("Onekey")
|
||||
|
||||
|
||||
def init() -> None:
|
||||
"""初始化控制台输出"""
|
||||
banner = r"""
|
||||
_____ __ _ _____ _ _ _____ __ __
|
||||
/ _ \ | \ | | | ____| | | / / | ____| \ \ / /
|
||||
| | | | | \| | | |__ | |/ / | |__ \ \/ /
|
||||
| | | | | |\ | | __| | |\ \ | __| \ /
|
||||
| |_| | | | \ | | |___ | | \ \ | |___ / /
|
||||
\_____/ |_| \_| |_____| |_| \_\ |_____| /_/
|
||||
"""
|
||||
logger.info(banner)
|
||||
logger.info("作者: ikun0014 | 版本: 1.4.1 | 官网: ikunshare.com")
|
||||
logger.info("项目仓库: GitHub: https://github.com/ikunshare/Onekey")
|
||||
logger.info("ikunshare.com | 严禁倒卖")
|
||||
logger.info("提示: 请确保已安装Windows 10/11并正确配置Steam;SteamTools/GreenLuma")
|
||||
logger.info("开梯子必须配置Token, 你的IP我不相信能干净到哪")
|
||||
|
||||
|
||||
async def checkcn() -> bool:
|
||||
try:
|
||||
if os_type != 'Windows':
|
||||
log.error(f'❌ 请使用Windows系统!当前系统:{os_type}')
|
||||
sys.exit()
|
||||
except Exception as e:
|
||||
log.error(f'❌ 获取系统类型失败:{stack_error(e)}')
|
||||
sys.exit()
|
||||
|
||||
try:
|
||||
os_version = platform.version().split('.')[0]
|
||||
if int(os_version) < 10:
|
||||
log.error(f'❌ 请使用Windows 10或更高版本!当前版本:Windows {os_version}')
|
||||
sys.exit()
|
||||
except Exception as e:
|
||||
log.error(f'❌ 获取系统版本失败:{stack_error(e)}')
|
||||
sys.exit()
|
||||
|
||||
def prompt_app_id():
|
||||
while True:
|
||||
app_id = input(f"{Fore.CYAN}{Back.BLACK}{Style.BRIGHT}🤔 请输入游戏AppID:{Style.RESET_ALL}").strip()
|
||||
if re.match(r'^\d+$', app_id):
|
||||
return app_id
|
||||
req = await CLIENT.get("https://mips.kugou.com/check/iscn?&format=json")
|
||||
body = req.json()
|
||||
scn = bool(body["flag"])
|
||||
if not scn:
|
||||
logger.info(
|
||||
f"您在非中国大陆地区({body['country']})上使用了项目, 已自动切换回Github官方下载CDN"
|
||||
)
|
||||
os.environ["IS_CN"] = "no"
|
||||
return False
|
||||
else:
|
||||
print(f"{Fore.RED}⚠ 无效的AppID,请输入数字!{Style.RESET_ALL}")
|
||||
|
||||
async def main_loop():
|
||||
while True:
|
||||
try:
|
||||
app_id = prompt_app_id()
|
||||
await main(app_id, repos)
|
||||
except EOFError:
|
||||
break
|
||||
|
||||
async def run():
|
||||
try:
|
||||
log.info('❗ App ID可以在SteamDB或Steam商店链接页面查看')
|
||||
await main_loop()
|
||||
os.environ["IS_CN"] = "yes"
|
||||
return True
|
||||
except KeyboardInterrupt:
|
||||
log.info("👋 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f' ⚠ 发生错误: {stack_error(e)},将在5秒后退出')
|
||||
await asyncio.sleep(5)
|
||||
logger.info("程序已退出")
|
||||
except httpx.ConnectError as e:
|
||||
os.environ["IS_CN"] = "yes"
|
||||
logger.warning("检查服务器位置失败,已忽略,自动认为你在中国大陆")
|
||||
return False
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
def stack_error(exception: Exception) -> str:
|
||||
stack_trace = traceback.format_exception(
|
||||
type(exception), exception, exception.__traceback__
|
||||
)
|
||||
return "".join(stack_trace)
|
||||
|
||||
|
||||
async def check_github_api_rate_limit(headers):
|
||||
url = "https://api.github.com/rate_limit"
|
||||
try:
|
||||
check_system_msg()
|
||||
asyncio.run(run())
|
||||
except SystemExit:
|
||||
sys.exit()
|
||||
r = await CLIENT.get(url, headers=headers)
|
||||
r_json = r.json()
|
||||
if r.status_code == 200:
|
||||
rate_limit = r_json.get("rate", {})
|
||||
remaining_requests = rate_limit.get("remaining", 0)
|
||||
reset_time = rate_limit.get("reset", 0)
|
||||
reset_time_formatted = time.strftime(
|
||||
"%Y-%m-%d %H:%M:%S", time.localtime(reset_time)
|
||||
)
|
||||
logger.info(f"剩余请求次数: {remaining_requests}")
|
||||
if remaining_requests == 0:
|
||||
logger.warning(
|
||||
f"GitHub API 请求数已用尽, 将在 {reset_time_formatted} 重置,建议生成一个填在配置文件里"
|
||||
)
|
||||
else:
|
||||
logger.error("Github请求数检查失败, 网络错误")
|
||||
except KeyboardInterrupt:
|
||||
logger.info("程序已退出")
|
||||
except httpx.ConnectError as e:
|
||||
logger.error(f"检查Github API 请求数失败, {stack_error(e)}")
|
||||
except httpx.ConnectTimeout as e:
|
||||
logger.error(f"检查Github API 请求数超时: {stack_error(e)}")
|
||||
except Exception as e:
|
||||
logger.error(f"发生错误: {stack_error(e)}")
|
||||
|
||||
|
||||
async def handle_depot_files(
|
||||
repo: str, app_id: str, steam_path: Path
|
||||
) -> List[Tuple[str, str]]:
|
||||
collected = []
|
||||
depot_map = {}
|
||||
try:
|
||||
branch_url = f"https://api.github.com/repos/{repo}/branches/{app_id}"
|
||||
branch_res = await CLIENT.get(branch_url, headers=HEADER)
|
||||
branch_res.raise_for_status()
|
||||
|
||||
tree_url = branch_res.json()["commit"]["commit"]["tree"]["url"]
|
||||
tree_res = await CLIENT.get(tree_url)
|
||||
tree_res.raise_for_status()
|
||||
|
||||
depot_cache = steam_path / "depotcache"
|
||||
depot_cache.mkdir(exist_ok=True)
|
||||
|
||||
for item in tree_res.json()["tree"]:
|
||||
file_path = str(item["path"])
|
||||
if file_path.endswith(".manifest"):
|
||||
save_path = depot_cache / file_path
|
||||
if save_path.exists():
|
||||
logger.warning(f"已存在清单: {save_path}")
|
||||
continue
|
||||
content = await fetch_from_cdn(
|
||||
branch_res.json()["commit"]["sha"], file_path, repo
|
||||
)
|
||||
logger.info(f"清单下载成功: {file_path}")
|
||||
async with aiofiles.open(save_path, "wb") as f:
|
||||
await f.write(content)
|
||||
elif "key.vdf" in file_path.lower():
|
||||
key_content = await fetch_from_cdn(
|
||||
branch_res.json()["commit"]["sha"], file_path, repo
|
||||
)
|
||||
collected.extend(parse_key_vdf(key_content))
|
||||
|
||||
for item in tree_res.json()["tree"]:
|
||||
if not item["path"].endswith(".manifest"):
|
||||
continue
|
||||
|
||||
filename = Path(item["path"]).stem
|
||||
if "_" not in filename:
|
||||
continue
|
||||
|
||||
depot_id, manifest_id = filename.replace(".manifest", "").split("_", 1)
|
||||
if not (depot_id.isdigit() and manifest_id.isdigit()):
|
||||
continue
|
||||
|
||||
depot_map.setdefault(depot_id, []).append(manifest_id)
|
||||
|
||||
for depot_id in depot_map:
|
||||
depot_map[depot_id].sort(key=lambda x: int(x), reverse=True)
|
||||
|
||||
except httpx.HTTPStatusError as e:
|
||||
logger.error(f"HTTP错误: {e.response.status_code}")
|
||||
except Exception as e:
|
||||
logger.error(f"文件处理失败: {str(e)}")
|
||||
return collected, depot_map
|
||||
|
||||
|
||||
async def fetch_from_cdn(sha: str, path: str, repo: str):
|
||||
if os.environ.get("IS_CN") == "yes":
|
||||
url_list = [
|
||||
f"https://jsdelivr.pai233.top/gh/{repo}@{sha}/{path}",
|
||||
f"https://cdn.jsdmirror.com/gh/{repo}@{sha}/{path}",
|
||||
f"https://raw.gitmirror.com/{repo}/{sha}/{path}",
|
||||
f"https://raw.dgithub.xyz/{repo}/{sha}/{path}",
|
||||
f"https://gh.akass.cn/{repo}/{sha}/{path}",
|
||||
]
|
||||
else:
|
||||
url_list = [f"https://raw.githubusercontent.com/{repo}/{sha}/{path}"]
|
||||
retry = 3
|
||||
while retry > 0:
|
||||
for url in url_list:
|
||||
try:
|
||||
r = await CLIENT.get(url, headers=HEADER, timeout=30)
|
||||
if r.status_code == 200:
|
||||
return r.read()
|
||||
else:
|
||||
logger.error(f"获取失败: {path} - 状态码: {r.status_code}")
|
||||
except KeyboardInterrupt:
|
||||
logger.info("程序已退出")
|
||||
except httpx.ConnectError as e:
|
||||
logger.error(f"获取失败: {path} - 连接错误: {str(e)}")
|
||||
except httpx.ConnectTimeout as e:
|
||||
logger.error(f"连接超时: {url} - 错误: {str(e)}")
|
||||
|
||||
retry -= 1
|
||||
logger.warning(f"重试剩余次数: {retry} - {path}")
|
||||
|
||||
logger.error(f"超过最大重试次数: {path}")
|
||||
raise Exception(f"无法下载: {path}")
|
||||
|
||||
|
||||
def parse_key_vdf(content: bytes) -> List[Tuple[str, str]]:
|
||||
try:
|
||||
depots = vdf.loads(content.decode("utf-8"))["depots"]
|
||||
return [(d_id, d_info["DecryptionKey"]) for d_id, d_info in depots.items()]
|
||||
except Exception as e:
|
||||
logger.error(f"密钥解析失败: {str(e)}")
|
||||
return []
|
||||
|
||||
|
||||
async def setup_unlock_tool(
|
||||
depot_data: List[Tuple[str, str]],
|
||||
app_id: str,
|
||||
tool_choice: int,
|
||||
depot_map: Dict,
|
||||
) -> bool:
|
||||
isGreenLuma = any(
|
||||
(STEAM_PATH / dll).exists()
|
||||
for dll in ["GreenLuma_2024_x86.dll", "GreenLuma_2024_x64.dll", "User32.dll"]
|
||||
)
|
||||
isSteamTools = (STEAM_PATH / "config" / "stUI").is_dir()
|
||||
|
||||
if (tool_choice == 1) and (isSteamTools):
|
||||
return await setup_steamtools(depot_data, app_id, depot_map)
|
||||
elif (tool_choice == 2) and (isGreenLuma):
|
||||
return await setup_greenluma(depot_data)
|
||||
else:
|
||||
logger.error("你选的啥?")
|
||||
return False
|
||||
|
||||
|
||||
async def setup_steamtools(
|
||||
depot_data: List[Tuple[str, str]], app_id: str, depot_map: Dict
|
||||
) -> bool:
|
||||
st_path = STEAM_PATH / "config" / "stplug-in"
|
||||
st_path.mkdir(exist_ok=True)
|
||||
|
||||
choice = input(f"是否锁定版本(推荐在选择仓库1时使用)?(y/n): \n").lower()
|
||||
|
||||
if choice == "y":
|
||||
versionlock = True
|
||||
else:
|
||||
versionlock = False
|
||||
|
||||
lua_content = f'addappid({app_id}, 1, "None")\n'
|
||||
for d_id, d_key in depot_data:
|
||||
if versionlock:
|
||||
for manifest_id in depot_map[d_id]:
|
||||
lua_content += f'addappid({d_id}, 1, "{d_key}")\nsetManifestid({d_id},"{manifest_id}")\n'
|
||||
else:
|
||||
lua_content += f'addappid({d_id}, 1, "{d_key}")\n'
|
||||
|
||||
lua_file = st_path / f"{app_id}.lua"
|
||||
async with aiofiles.open(lua_file, "w") as f:
|
||||
await f.write(lua_content)
|
||||
|
||||
proc = await asyncio.create_subprocess_exec(
|
||||
str(st_path / "luapacka.exe"),
|
||||
str(lua_file),
|
||||
stdout=asyncio.subprocess.PIPE,
|
||||
stderr=asyncio.subprocess.PIPE,
|
||||
)
|
||||
await proc.wait()
|
||||
|
||||
if proc.returncode != 0:
|
||||
logger.error(f"Lua编译失败: {await proc.stderr.read()}")
|
||||
return False
|
||||
|
||||
if lua_file.exists():
|
||||
os.remove(lua_file)
|
||||
logger.info(f"删除临时文件: {lua_file}")
|
||||
|
||||
return True
|
||||
|
||||
|
||||
async def setup_greenluma(depot_data: List[Tuple[str, str]]) -> bool:
|
||||
applist_dir = STEAM_PATH / "AppList"
|
||||
applist_dir.mkdir(exist_ok=True)
|
||||
|
||||
for f in applist_dir.glob("*.txt"):
|
||||
f.unlink()
|
||||
|
||||
for idx, (d_id, _) in enumerate(depot_data, 1):
|
||||
(applist_dir / f"{idx}.txt").write_text(str(d_id))
|
||||
|
||||
config_path = STEAM_PATH / "config" / "config.vdf"
|
||||
async with aiofiles.open(config_path, "r+") as f:
|
||||
content = vdf.loads(await f.read())
|
||||
content.setdefault("depots", {}).update(
|
||||
{d_id: {"DecryptionKey": d_key} for d_id, d_key in depot_data}
|
||||
)
|
||||
await f.seek(0)
|
||||
await f.write(vdf.dumps(content))
|
||||
return True
|
||||
|
||||
|
||||
async def main_flow(app_id: str):
|
||||
app_id_list = list(filter(str.isdecimal, app_id.strip().split("-")))
|
||||
if not app_id_list:
|
||||
logger.error(f"App ID无效")
|
||||
os.system("pause")
|
||||
return False
|
||||
|
||||
app_id = app_id_list[0]
|
||||
|
||||
try:
|
||||
await checkcn()
|
||||
await check_github_api_rate_limit(HEADER)
|
||||
|
||||
print(
|
||||
"\n".join(
|
||||
[f"{idx+1}. {item.value[1]}" for idx, item in enumerate(RepoChoice)]
|
||||
)
|
||||
)
|
||||
repo_choice = int(input("请选择清单仓库 (默认1): \n") or 1)
|
||||
selected_repo = list(RepoChoice)[repo_choice - 1].value[0]
|
||||
|
||||
tool_choice = int(input("请选择解锁工具 (1.SteamTools 2.GreenLuma): \n"))
|
||||
|
||||
depot_data, depot_map = await handle_depot_files(
|
||||
selected_repo, app_id, STEAM_PATH
|
||||
)
|
||||
|
||||
if await setup_unlock_tool(depot_data, app_id, tool_choice, depot_map):
|
||||
logger.info("游戏解锁配置成功!")
|
||||
logger.info("重启Steam后生效")
|
||||
else:
|
||||
logger.error("配置失败,请检查日志")
|
||||
|
||||
os.system("pause")
|
||||
return True
|
||||
except Exception as e:
|
||||
logger.error(f"运行错误: {stack_error(e)}")
|
||||
return False
|
||||
except KeyboardInterrupt:
|
||||
return False
|
||||
finally:
|
||||
await CLIENT.aclose()
|
||||
return True
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
init()
|
||||
app_id = input(f"请输入游戏AppID: \n").strip()
|
||||
asyncio.run(main_flow(app_id))
|
||||
except (asyncio.CancelledError, KeyboardInterrupt):
|
||||
os.system("pause")
|
||||
except Exception as e:
|
||||
logger.error(f"错误:{stack_error(e)}")
|
||||
os.system("pause")
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "onekey",
|
||||
"version": "1.2.7",
|
||||
"version": "1.4.1",
|
||||
"description": "一个Steam仓库清单下载器",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
aiofiles==24.1.0
|
||||
aiohttp==3.10.2
|
||||
colorama==0.4.6
|
||||
colorlog==6.8.2
|
||||
tqdm==4.66.5
|
||||
ujson==5.10.0
|
||||
vdf==3.4
|
||||
aiofiles
|
||||
httpx
|
||||
logzero
|
||||
ujson
|
||||
vdf
|
||||
|
||||
Reference in New Issue
Block a user