mirror of
https://github.com/ikunshare/Onekey.git
synced 2026-01-15 01:23:02 +08:00
Compare commits
58 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb789d8cf7 | ||
|
|
3178303b0a | ||
|
|
738e0eb617 | ||
|
|
fb0806aea7 | ||
|
|
2a02d07e8d | ||
|
|
df4342957f | ||
|
|
e2f2120b0c | ||
|
|
580cd44247 | ||
|
|
0e57caefd1 | ||
|
|
062e58ea57 | ||
|
|
651d9f79b2 | ||
|
|
8f8aaf81a1 | ||
|
|
e8dd606db4 | ||
|
|
b50183e723 | ||
|
|
74c5464bb4 | ||
|
|
7f087983d3 | ||
|
|
9a3668a2f4 | ||
|
|
15d2d46dda | ||
|
|
c03df383a0 | ||
|
|
5893e07901 | ||
|
|
bf6024e4c1 | ||
|
|
39d426d806 | ||
|
|
26fbb82357 | ||
|
|
6fc06a681a | ||
|
|
600a8679f3 | ||
|
|
3fa925c161 | ||
|
|
3642dbde30 | ||
|
|
cec2d0fedb | ||
|
|
59bcd7bcdc | ||
|
|
57f285af37 | ||
|
|
afdcc5d51e | ||
|
|
f8bc9ace69 | ||
|
|
7135e13fd7 | ||
|
|
b87867088b | ||
|
|
fc03979107 | ||
|
|
d36678f53c | ||
|
|
0418dbb685 | ||
|
|
0c783b3a7b | ||
|
|
eb1501a43a | ||
|
|
22df5426d8 | ||
|
|
ea3b682eb7 | ||
|
|
cf0d508237 | ||
|
|
5886b1e4b5 | ||
|
|
a1cde89971 | ||
|
|
697a3769ec | ||
|
|
b1b7e720c0 | ||
|
|
0eb0fb3c7e | ||
|
|
59d5852d11 | ||
|
|
5ac9f8f28a | ||
|
|
b8d76f98da | ||
|
|
1e5f0b6774 | ||
|
|
5357ed5fe7 | ||
|
|
5cd5e89ed7 | ||
|
|
e34cad1889 | ||
|
|
4aa1c22c25 | ||
|
|
8ee7765bb0 | ||
|
|
4bd1362317 | ||
|
|
3c0f2ecd6f |
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']
|
||||
66
.github/workflows/ci.yml
vendored
Normal file
66
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
name: Build CI
|
||||
|
||||
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: 0.0.0.0
|
||||
product-version: 0.0.0.0
|
||||
file-description: Onekey_Beta_${{ github.sha }}
|
||||
copyright: Copyright © 2024 ikun0014
|
||||
output-file: Onekey_${{ github.sha }}.exe
|
||||
assume-yes-for-downloads: true
|
||||
output-dir: build
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Onekey_${{ github.sha }}.exe
|
||||
path: build/Onekey_${{ github.sha }}.exe
|
||||
|
||||
- name: Upload to Telegram Channel
|
||||
run: |
|
||||
& curl -F "chat_id=${{ secrets.TELEGRAM_TO }}" `
|
||||
-F "document=@build/Onekey_${{ github.sha }}.exe" `
|
||||
-F "caption=Onekey's New CI Build ${{ github.sha }}" `
|
||||
-F "parse_mode=Markdown" `
|
||||
"https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendDocument"
|
||||
67
.github/workflows/python-publish.yml
vendored
67
.github/workflows/python-publish.yml
vendored
@@ -1,67 +0,0 @@
|
||||
# 此工作流使用未经 GitHub 认证的操作。
|
||||
# 它们由第三方提供,并受
|
||||
# 单独的服务条款、隐私政策和支持
|
||||
# 文档。
|
||||
|
||||
# GitHub 建议将操作固定到提交 SHA。
|
||||
# 若要获取较新版本,需要更新 SHA。
|
||||
# 还可以引用标记或分支,但该操作可能会更改而不发出警告。
|
||||
|
||||
name: Upload Python Package
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
release-build:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.11"
|
||||
|
||||
- name: Build release distributions
|
||||
run: |
|
||||
# NOTE: put your own distribution build steps here.
|
||||
python -m pip install build
|
||||
python -m pip install requirements.txt
|
||||
python -m build
|
||||
|
||||
- name: Upload distributions
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-dists
|
||||
path: dist/
|
||||
|
||||
pypi-publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs:
|
||||
- release-build
|
||||
|
||||
permissions:
|
||||
# IMPORTANT: this permission is mandatory for trusted publishing
|
||||
id-token: write
|
||||
|
||||
# Dedicated environments with protections for publishing are strongly recommended.
|
||||
environment:
|
||||
name: pypi
|
||||
# OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status:
|
||||
url: https://pypi.org/p/Onekey
|
||||
|
||||
steps:
|
||||
- name: Retrieve release distributions
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: release-dists
|
||||
path: dist/
|
||||
|
||||
- name: Publish release distributions to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
@@ -7,19 +7,20 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: contains(github.event.head_commit.message, '[release]')
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- name: Check out git repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Push tag to GitHub if package.json version's tag is not tagged
|
||||
- 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:
|
||||
@@ -28,6 +29,7 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install imageio
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Build
|
||||
@@ -62,10 +64,17 @@ jobs:
|
||||
- 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
|
||||
tag_name: v${{ env.PACKAGE_VERSION }}
|
||||
files: |
|
||||
build/Onekey---v${{ env.PACKAGE_VERSION }}.exe
|
||||
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"
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -170,3 +170,5 @@ config.json
|
||||
*.exe
|
||||
*.dll
|
||||
/main.dist
|
||||
/.vscode
|
||||
/.vs
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
include README.md LICENSE
|
||||
94
README.md
94
README.md
@@ -1,62 +1,70 @@
|
||||
# Onekey
|
||||
<div align="center">
|
||||
|
||||
## 项目简介
|
||||
Onekey 是一个用于从 Steam 官方 CDN 服务器下载游戏清单数据的工具。它可以帮助用户快速获取和管理游戏数据。
|
||||

|
||||
|
||||
## 安装和使用
|
||||
### 安装步骤
|
||||
1. 下载最新版本:前往 [Releases](https://github.com/ikunshare/Onekey/releases/latest) 页面下载最新版本。
|
||||
2. 安装依赖:
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
```
|
||||

|
||||
[](https://github.com/ikunshare/Onekey/releases/latest)
|
||||
[](https://github.com/ikunshare/Onekey/releases)
|
||||
[](https://github.com/ikunshare/Onekey/blob/main/LICENSE)
|
||||
|
||||
### 使用方法
|
||||
1. 运行程序并按照提示操作。
|
||||
</div>
|
||||
|
||||
## 开发环境要求
|
||||
- Python 3.10 及以上
|
||||
- Windows 10 及以上
|
||||
- Git 版本管理
|
||||
|
||||
## 克隆和安装
|
||||
1. 克隆项目到本地:
|
||||
```bash
|
||||
git clone https://github.com/ikunshare/Onekey
|
||||
```
|
||||
2. 安装依赖:
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
## Onekey
|
||||
Onekey Steam Depot Manifest Downloader
|
||||
|
||||
## 使用方法
|
||||
先去Release下最新发布,然后去steamtools官网下steamtools,日志会有点石介意别用
|
||||
|
||||
## 开发
|
||||
本程序使用Python编程语言开发
|
||||
要求环境:
|
||||
1.Python 3.10及以上
|
||||
2.Windows 10及以上
|
||||
3.使用Git进行版本管理
|
||||
|
||||
1.克隆项目到本地
|
||||
|
||||
```
|
||||
git clone https://github.com/ikunshare/Onekey
|
||||
```
|
||||
|
||||
2.安装依赖
|
||||
|
||||
```
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
## 项目协议
|
||||
本项目基于 GPL-3.0 许可证发行。使用者在使用过程中应遵守以下条款:
|
||||
- 24小时内清除产生的版权数据
|
||||
- 承担使用本项目可能产生的任何损害
|
||||
- 禁止商业用途和未经允许的二次修改
|
||||
本项目基于 GPL-3.0 许可证发行,以下协议是对于 GPL-3.0 原协议的补充,如有冲突,以以下协议为准。
|
||||
|
||||
## 贡献者
|
||||
感谢所有贡献者的支持:
|
||||
<a href="https://github.com/ikunshare/Onekey/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=ikunshare/Onekey" />
|
||||
</a>
|
||||
词语约定:“使用者”指签署本协议的使用者;“版权数据”指包括但不限于图像、音频、名字等在内的他人拥有所属版权的数据。
|
||||
|
||||
本项目的数据来源原理是从Steam官方的CDN服务器中拉取游戏清单数据,经过对数据简单地筛选与合并后进行展示,因此本项目不对数据的准确性负责。
|
||||
使用本项目的过程中可能会产生版权数据,对于这些版权数据,本项目不拥有它们的所有权,为了避免造成侵权,使用者务必在24 小时内清除使用本项目的过程中所产生的版权数据。
|
||||
由于使用本项目产生的包括由于本协议或由于使用或无法使用本项目而引起的任何性质的任何直接、间接、特殊、偶然或结果性损害(包括但不限于因商誉损失、停工、计算机故障或故障引起的损害赔偿,或任何及所有其他商业损害或损失)由使用者负责。
|
||||
本项目完全免费,且开源发布于 GitHub 面向全世界人用作对技术的学习交流,本项目不对项目内的技术可能存在违反当地法律法规的行为作保证,禁止在违反当地法律法规的情况下使用本项目,对于使用者在明知或不知当地法律法规不允许的情况下使用本项目所造成的任何违法违规行为由使用者承担,本项目不承担由此造成的任何直接、间接、特殊、偶然或结果性责任。
|
||||
而且,本项目已禁止使用于商业用途,以及不得进行未经允许的二次修改,否则必须同时发布源代码。
|
||||
若你使用了本项目,将代表你接受以上协议。
|
||||
|
||||
Steam正版平台不易,请尊重版权,支持正版。
|
||||
本项目仅用于对技术可行性的探索及研究,不接受任何商业(包括但不限于广告等)合作。
|
||||
|
||||
## Star 趋势图
|
||||
[](https://starchart.cc/ikunshare/Onekey)
|
||||
|
||||
## 贡献指南
|
||||
欢迎参与本项目的开发和维护。
|
||||
[](https://starchart.cc/ikunshare/Onekey)
|
||||
|
||||
## 贡献者
|
||||
|
||||
<a href="https://github.com/ikunshare/Onekey/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=ikunshare/Onekey" />
|
||||
</a>
|
||||
|
||||
## 常见问题解答(FAQ)
|
||||
查看 [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)
|
||||
|
||||
## 许可证
|
||||
本项目采用 [GPL-3.0](https://github.com/ikunshare/Onekey/blob/main/LICENSE) 许可证。
|
||||
- [Telegram](https://t.me/ikunshare_qun)
|
||||
|
||||
@@ -1,28 +1,33 @@
|
||||
import os
|
||||
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()
|
||||
|
||||
async with session.get(url, headers=headers, ssl=False) as r:
|
||||
if r is None:
|
||||
log.error('孩子,你怎么做到的?')
|
||||
os.system('pause')
|
||||
return
|
||||
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}')
|
||||
|
||||
r_json = await r.json()
|
||||
|
||||
if r.status == 200:
|
||||
rate_limit = r_json['rate']
|
||||
remaining_requests = rate_limit['remaining']
|
||||
reset_time = rate_limit['reset']
|
||||
reset_time_formatted = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(reset_time))
|
||||
log.info(f'🔄 剩余请求次数: {remaining_requests}')
|
||||
else:
|
||||
log.error('Github请求数检查失败')
|
||||
return
|
||||
|
||||
if remaining_requests == 0:
|
||||
log.warning(f'⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置, 不想等生成一个填配置文件里')
|
||||
if remaining_requests == 0:
|
||||
log.warning(f'GitHub API 请求数已用尽, 将在 {reset_time_formatted} 重置,建议生成一个填在配置文件里')
|
||||
else:
|
||||
log.error('Github请求数检查失败, 网络错误')
|
||||
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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)}')
|
||||
|
||||
26
common/checkcn.py
Normal file
26
common/checkcn.py
Normal file
@@ -0,0 +1,26 @@
|
||||
import os
|
||||
import requests
|
||||
from .log import log
|
||||
from .stack_error import stack_error
|
||||
|
||||
def checkcn():
|
||||
try:
|
||||
req = requests.get('https://mips.kugou.com/check/iscn?&format=json')
|
||||
req.raise_for_status()
|
||||
body = req.json()
|
||||
scn = bool(body['flag'])
|
||||
if not scn:
|
||||
log.info(f"您在非中国大陆地区({body['country']})上使用了项目, 已自动切换回Github官方下载CDN")
|
||||
os.environ['IS_CN'] = 'no'
|
||||
return False
|
||||
else:
|
||||
os.environ['IS_CN'] = 'yes'
|
||||
return True
|
||||
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except requests.RequestException as e:
|
||||
os.environ['IS_CN'] = 'yes'
|
||||
log.warning('检查服务器位置失败,已忽略,自动认为你在中国大陆')
|
||||
log.warning(stack_error(e))
|
||||
return False
|
||||
@@ -3,47 +3,44 @@ 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():
|
||||
qa1 = "温馨提示:Github_Personal_Token可在Github设置的最底下开发者选项找到,详情看教程"
|
||||
tutorial = "https://ikunshare.com/Onekey_tutorial"
|
||||
default_config ={
|
||||
"Github_Personal_Token": "",
|
||||
"Custom_Steam_Path": "",
|
||||
"QA1": qa1,
|
||||
"教程": tutorial
|
||||
}
|
||||
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))
|
||||
await f.close()
|
||||
log.info('🖱️ 程序可能为第一次启动,请填写配置文件后重新启动程序')
|
||||
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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()
|
||||
else:
|
||||
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")
|
||||
os.system('pause')
|
||||
|
||||
|
||||
try:
|
||||
async with aiofiles.open("./config.json", mode="r", encoding="utf-8") as f:
|
||||
config = json.loads(await f.read())
|
||||
return config
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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,30 +1,42 @@
|
||||
import asyncio
|
||||
import aiofiles
|
||||
import vdf
|
||||
|
||||
from pathlib import Path
|
||||
from .log import log
|
||||
|
||||
lock = asyncio.Lock()
|
||||
|
||||
|
||||
async def depotkey_merge(config_path, depots_config):
|
||||
async def depotkey_merge(config_path: Path, depots_config: dict) -> bool:
|
||||
if not config_path.exists():
|
||||
async with lock:
|
||||
log.error('👋 Steam默认配置不存在,可能是没有登录账号')
|
||||
return
|
||||
|
||||
async with aiofiles.open(config_path, encoding='utf-8') as f:
|
||||
content = await f.read()
|
||||
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)
|
||||
software = config['InstallConfigStore']['Software']
|
||||
valve = software.get('Valve') or software.get('valve')
|
||||
steam = valve.get('Steam') or valve.get('steam')
|
||||
|
||||
steam.setdefault('depots', {}).update(depots_config['depots'])
|
||||
|
||||
async with aiofiles.open(config_path, mode='w', encoding='utf-8') as f:
|
||||
new_content = vdf.dumps(config, pretty=True)
|
||||
await f.write(new_content)
|
||||
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
|
||||
|
||||
return True
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
async with lock:
|
||||
log.error(f'合并失败, 原因: {e}')
|
||||
return False
|
||||
|
||||
@@ -7,34 +7,39 @@ from .manifest_down import get
|
||||
from .stack_error import stack_error
|
||||
|
||||
|
||||
async def get_manifest(sha, path, steam_path: Path, repo, session):
|
||||
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'):
|
||||
depot_cache_path = steam_path / 'depotcache'
|
||||
depot_cache_path.mkdir(exist_ok=True) if not depot_cache_path.exists() else None
|
||||
save_path = depot_cache_path / path
|
||||
|
||||
if save_path.exists():
|
||||
log.warning(f'👋已存在清单: {path}')
|
||||
log.warning(f'已存在清单: {save_path}')
|
||||
return collected_depots
|
||||
|
||||
|
||||
content = await get(sha, path, repo, session)
|
||||
log.info(f'🔄 清单下载成功: {path}')
|
||||
|
||||
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}')
|
||||
log.info(f'密钥下载成功: {path}')
|
||||
|
||||
depots_config = vdf.loads(content.decode('utf-8'))
|
||||
|
||||
for depot_id, depot_info in depots_config['depots'].items():
|
||||
collected_depots.append((depot_id, depot_info['DecryptionKey']))
|
||||
|
||||
collected_depots = [
|
||||
(depot_id, depot_info['DecryptionKey'])
|
||||
for depot_id, depot_info in depots_config['depots'].items()
|
||||
]
|
||||
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'处理失败: {path} - {stack_error(e)}')
|
||||
raise
|
||||
|
||||
return collected_depots
|
||||
|
||||
return collected_depots
|
||||
|
||||
@@ -5,19 +5,18 @@ from .log import log
|
||||
from .config import config
|
||||
from .stack_error import stack_error
|
||||
|
||||
def get_steam_path():
|
||||
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["Custom_Steam_Path"]
|
||||
|
||||
if custom_steam_path:
|
||||
return Path(custom_steam_path)
|
||||
|
||||
return steam_path
|
||||
custom_steam_path = config.get("Custom_Steam_Path", "").strip()
|
||||
return Path(custom_steam_path) if custom_steam_path else steam_path
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'❗ Steam路径获取失败, {stack_error(e)}')
|
||||
log.error(f'Steam路径获取失败, {stack_error(e)}, 请检查是否正确安装Steam')
|
||||
os.system('pause')
|
||||
return None
|
||||
return Path()
|
||||
|
||||
steam_path = get_steam_path()
|
||||
steam_path = get_steam_path()
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
from .get_steam_path import steam_path
|
||||
from pathlib import Path
|
||||
|
||||
async def greenluma_add(depot_id_list):
|
||||
async def greenluma_add(depot_id_list: list) -> bool:
|
||||
app_list_path = steam_path / 'AppList'
|
||||
if app_list_path.exists() and app_list_path.is_file():
|
||||
app_list_path.unlink(missing_ok=True)
|
||||
|
||||
if not app_list_path.is_dir():
|
||||
|
||||
try:
|
||||
app_list_path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
depot_dict = {int(i.stem): None for i in app_list_path.iterdir() if i.stem.isdecimal() and i.suffix == '.txt'}
|
||||
|
||||
for i in app_list_path.iterdir():
|
||||
if i.stem.isdecimal() and i.suffix == '.txt':
|
||||
with i.open('r', encoding='utf-8') as f:
|
||||
app_id_ = f.read().strip()
|
||||
if app_id_.isdecimal():
|
||||
depot_dict[int(i.stem)] = int(app_id_)
|
||||
|
||||
for depot_id in depot_id_list:
|
||||
if int(depot_id) not in depot_dict.values():
|
||||
index = max(depot_dict.keys(), default=-1) + 1
|
||||
for i in range(max(depot_dict.keys(), default=-1) + 1):
|
||||
if i not in depot_dict:
|
||||
index = i
|
||||
break
|
||||
|
||||
with (app_list_path / f'{index}.txt').open('w', encoding='utf-8') as f:
|
||||
f.write(str(depot_id))
|
||||
depot_dict[index] = int(depot_id)
|
||||
|
||||
return 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
|
||||
|
||||
@@ -5,15 +5,20 @@ init()
|
||||
from .log import log
|
||||
|
||||
def init():
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} _____ __ _ _____ _ _ _____ __ __ {Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /{Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /{Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | | | | | |\\ | | __| | |\\ \\ | __| \\ / {Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | |_| | | | \\ | | |___ | | \\ \\ | |___ / /{Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/{Style.RESET_ALL}")
|
||||
log.info('作者ikun0014')
|
||||
log.info('本项目采用GNU General Public License v3开源许可证')
|
||||
log.info('版本:1.2.2')
|
||||
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_group')
|
||||
banner_lines = [
|
||||
f" _____ __ _ _____ _ _ _____ __ __ ",
|
||||
f" / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /",
|
||||
f" | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /",
|
||||
f" | | | | | |\\ | | __| | |\\ \\ | __| \\ / ",
|
||||
f" | |_| | | | \\ | | |___ | | \\ \\ | |___ / /",
|
||||
f" \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/",
|
||||
]
|
||||
for line in banner_lines:
|
||||
log.info(line)
|
||||
|
||||
log.info(f'作者: ikun0014')
|
||||
log.warning(f'本项目采用GNU General Public License v3开源许可证,请勿用于商业用途')
|
||||
log.info(f'版本: 1.3.0')
|
||||
log.info(f'项目Github仓库: https://github.com/ikunshare/Onekey')
|
||||
log.info(f'官网: ikunshare.com')
|
||||
log.warning(f'本项目完全开源免费, 如果你在淘宝, QQ群内通过购买方式获得, 赶紧回去骂商家死全家\n 交流群组:\n https://t.me/ikunshare_qun')
|
||||
@@ -1,26 +1,29 @@
|
||||
import logging
|
||||
import colorlog
|
||||
|
||||
def init_log():
|
||||
LOG_FORMAT = '%(log_color)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(logging.DEBUG)
|
||||
logger.setLevel(level)
|
||||
|
||||
stream_handler = logging.StreamHandler()
|
||||
stream_handler.setLevel(logging.DEBUG)
|
||||
|
||||
fmt_string = '%(log_color)s[%(name)s][%(levelname)s]%(message)s'
|
||||
log_colors = {
|
||||
'DEBUG': 'blue',
|
||||
'INFO': 'cyan',
|
||||
'WARNING': 'yellow',
|
||||
'ERROR': 'red',
|
||||
'CRITICAL': 'purple'
|
||||
}
|
||||
fmt = colorlog.ColoredFormatter(fmt_string, log_colors=log_colors)
|
||||
stream_handler.setLevel(level)
|
||||
|
||||
fmt = colorlog.ColoredFormatter(LOG_FORMAT, log_colors=LOG_COLORS)
|
||||
stream_handler.setFormatter(fmt)
|
||||
logger.addHandler(stream_handler)
|
||||
|
||||
# 避免重复添加处理器
|
||||
if not logger.handlers:
|
||||
logger.addHandler(stream_handler)
|
||||
|
||||
return logger
|
||||
|
||||
|
||||
log = init_log()
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import os
|
||||
from aiohttp import ClientSession
|
||||
from aiohttp import ClientSession, ConnectionTimeoutError
|
||||
|
||||
from common.checkcn import checkcn
|
||||
from common.config import config
|
||||
from common.dkey_merge import depotkey_merge
|
||||
from common.migration import migrate
|
||||
@@ -14,65 +16,85 @@ 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 main(app_id, repos):
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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("无有效的应用ID")
|
||||
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
|
||||
latest_date = None
|
||||
selected_repo = None
|
||||
checkcn()
|
||||
|
||||
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)
|
||||
|
||||
for repo in repos:
|
||||
url = f'https://api.github.com/repos/{repo}/branches/{app_id}'
|
||||
try:
|
||||
async with session.get(url, headers=headers, ssl=False) as r:
|
||||
r_json = await r.json()
|
||||
if '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
|
||||
except Exception as e:
|
||||
log.error(f' ⚠ 获取分支信息失败: {stack_error(e)}')
|
||||
selected_repo, latest_date = await get_latest_repo_info(session, repos, app_id, headers)
|
||||
|
||||
if selected_repo:
|
||||
log.info(f'🔄 选择清单仓库:{selected_repo}')
|
||||
log.info(f'选择清单仓库:{selected_repo}')
|
||||
url = f'https://api.github.com/repos/{selected_repo}/branches/{app_id}'
|
||||
async with session.get(url, headers=headers, ssl=False) as r:
|
||||
r_json = await r.json()
|
||||
if 'commit' in r_json:
|
||||
sha = r_json['commit']['sha']
|
||||
url = r_json['commit']['commit']['tree']['url']
|
||||
async with session.get(url, headers=headers, ssl=False) as r2:
|
||||
r2_json = await r2.json()
|
||||
if 'tree' in r2_json:
|
||||
collected_depots = []
|
||||
for i in r2_json['tree']:
|
||||
result = await get_manifest(sha, i['path'], steam_path, selected_repo, session)
|
||||
collected_depots.extend(result)
|
||||
if collected_depots:
|
||||
if isSteamTools:
|
||||
migrate(st_use=True)
|
||||
await stool_add(collected_depots, app_id)
|
||||
log.info('✅ 找到SteamTools,已添加解锁文件')
|
||||
if isGreenLuma:
|
||||
migrate(st_use=False)
|
||||
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}')
|
||||
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,38 +1,48 @@
|
||||
from aiohttp import ClientError
|
||||
import os
|
||||
from aiohttp import ClientError, ConnectionTimeoutError
|
||||
from tqdm.asyncio import tqdm_asyncio
|
||||
|
||||
from .log import log
|
||||
|
||||
async def get(sha, path, repo, session):
|
||||
url_list = [
|
||||
f'https://cdn.jsdmirror.com/gh/{repo}@{sha}/{path}',
|
||||
f'https://jsd.onmicrosoft.cn/gh/{repo}@{sha}/{path}',
|
||||
# f'https://mirror.ghproxy.com/https://raw.githubusercontent.com/{repo}/{sha}/{path}',
|
||||
f'https://raw.githubusercontent.com/{repo}/{sha}/{path}',
|
||||
]
|
||||
async def get(sha: str, path: str, repo: str, session, chunk_size: int = 1024) -> bytearray:
|
||||
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:
|
||||
while retry > 0:
|
||||
for url in url_list:
|
||||
try:
|
||||
async with session.get(url, ssl=False) as r:
|
||||
if r.status == 200:
|
||||
total_size = int(r.headers.get('Content-Length', 0))
|
||||
if total_size == 0:
|
||||
log.error(f'🔄 获取失败: {path} - 内容为空')
|
||||
break
|
||||
chunk_size = 1024
|
||||
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}', bar_format="{l_bar}{bar} [{n_fmt}/{total_fmt}] {postfix}") as pbar:
|
||||
async for chunk in r.content.iter_chunked(chunk_size):
|
||||
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} - 状态码: {r.status}')
|
||||
except ClientError:
|
||||
log.error(f'🔄 获取失败: {path} - 连接错误')
|
||||
log.error(f'获取失败: {path} - 状态码: {response.status}')
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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}')
|
||||
log.warning(f'重试剩余次数: {retry} - {path}')
|
||||
|
||||
log.error(f'超过最大重试次数: {path}')
|
||||
raise Exception(f'无法下载: {path}')
|
||||
|
||||
@@ -1,46 +1,64 @@
|
||||
import os
|
||||
import subprocess
|
||||
import requests
|
||||
|
||||
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")
|
||||
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'
|
||||
|
||||
def migrate(st_use):
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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 filename in os.listdir(directory):
|
||||
if filename.startswith("Onekey_unlock_"):
|
||||
new_filename = filename[len("Onekey_unlock_"):]
|
||||
log.info('检测到你正在使用 SteamTools,尝试迁移旧文件')
|
||||
|
||||
old_file = os.path.join(directory, filename)
|
||||
new_file = os.path.join(directory, new_filename)
|
||||
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:
|
||||
os.replace(old_file, new_file)
|
||||
log.info(f'Renamed: {filename} -> {new_filename}')
|
||||
file.rename(directory / new_filename)
|
||||
log.info(f'Renamed: {file.name} -> {new_filename}')
|
||||
except Exception as e:
|
||||
log.error(f'Failed to rename {filename} -> {new_filename}: {e}')
|
||||
log.error(f'重命名失败 {file.name} -> {new_filename}: {e}')
|
||||
else:
|
||||
log.error('❗ 故障,正在重新安装SteamTools')
|
||||
temp_path = Path('./temp')
|
||||
temp_path.mkdir(exist_ok=True)
|
||||
down_url = 'https://steamtools.net/res/SteamtoolsSetup.exe'
|
||||
out_path = temp_path / 'SteamtoolsSetup.exe'
|
||||
try:
|
||||
with requests.get(down_url, stream=True) as r:
|
||||
r.raise_for_status()
|
||||
with open(out_path, 'wb') as f:
|
||||
for chunk in r.iter_content(chunk_size=8192):
|
||||
f.write(chunk)
|
||||
except requests.HTTPError:
|
||||
log.error('下载失败,网络错误')
|
||||
return
|
||||
log.error('故障,正在重新安装 SteamTools')
|
||||
temp_path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
subprocess.run([str(out_path)], check=True)
|
||||
subprocess.run(['rm', '-rf', str(temp_path)])
|
||||
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,停止迁移')
|
||||
log.info('未使用 SteamTools,停止迁移')
|
||||
|
||||
@@ -8,18 +8,38 @@ from .get_steam_path import steam_path
|
||||
|
||||
lock = asyncio.Lock()
|
||||
|
||||
async def stool_add(depot_data, app_id):
|
||||
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}')
|
||||
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')
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'处理过程出现错误: {e}')
|
||||
return False
|
||||
finally:
|
||||
if lua_filepath.exists():
|
||||
os.remove(lua_filepath)
|
||||
log.info(f'🗑️ 删除临时文件: {lua_filepath}')
|
||||
|
||||
luapacka_path = steam_path / "config" / "stplug-in" / "luapacka.exe"
|
||||
subprocess.run([str(luapacka_path), str(lua_filepath)], check=True)
|
||||
os.remove(lua_filepath)
|
||||
return True
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import traceback
|
||||
|
||||
def stack_error(exception):
|
||||
def stack_error(exception: Exception) -> str:
|
||||
stack_trace = traceback.format_exception(type(exception), exception, exception.__traceback__)
|
||||
return ''.join(stack_trace)
|
||||
return ''.join(stack_trace)
|
||||
|
||||
BIN
icon.jpg
BIN
icon.jpg
Binary file not shown.
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 262 KiB |
51
main.py
51
main.py
@@ -1,32 +1,57 @@
|
||||
import os
|
||||
import time
|
||||
import sys
|
||||
import asyncio
|
||||
import re
|
||||
|
||||
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()
|
||||
|
||||
init()
|
||||
cinit()
|
||||
|
||||
repos = [
|
||||
'ikun0014/ManifestHub',
|
||||
'Auiowu/ManifestAutoUpdate',
|
||||
'tymolu233/ManifestAutoUpdate'
|
||||
'tymolu233/ManifestAutoUpdate',
|
||||
]
|
||||
|
||||
def get_app_id():
|
||||
log.info('App ID可以在SteamDB或Steam商店链接页面查看')
|
||||
return input("请输入游戏AppID:").strip()
|
||||
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
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except EOFError:
|
||||
break
|
||||
|
||||
async def run():
|
||||
try:
|
||||
log.info('App ID可以在SteamDB或Steam商店链接页面查看')
|
||||
await main_loop()
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'发生错误: {stack_error(e)}, 将在5秒后退出')
|
||||
await asyncio.sleep(5)
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
while True:
|
||||
app_id = get_app_id()
|
||||
asyncio.run(main(app_id, repos))
|
||||
asyncio.run(run())
|
||||
except KeyboardInterrupt:
|
||||
exit()
|
||||
except Exception as e:
|
||||
log.error(f' ⚠ 发生错误: {stack_error(e)},将在5秒后退出')
|
||||
time.sleep(5)
|
||||
log.info("\n 程序已退出")
|
||||
except SystemExit:
|
||||
sys.exit()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "onekey",
|
||||
"version": "1.2.2",
|
||||
"version": "1.3.0",
|
||||
"description": "一个Steam仓库清单下载器",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
aiofiles
|
||||
colorlog
|
||||
ujson
|
||||
vdf
|
||||
requests
|
||||
imageio
|
||||
aiohttp
|
||||
tqdm
|
||||
aiofiles==24.1.0
|
||||
aiohttp==3.10.2
|
||||
colorama==0.4.6
|
||||
colorlog==6.8.2
|
||||
Requests==2.32.3
|
||||
tqdm==4.66.5
|
||||
ujson==5.10.0
|
||||
vdf==3.4
|
||||
|
||||
115
setup.py
115
setup.py
@@ -1,115 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Note: To use the 'upload' functionality of this file, you must:
|
||||
# $ pipenv install twine --dev
|
||||
|
||||
import io
|
||||
import os
|
||||
import sys
|
||||
from shutil import rmtree
|
||||
|
||||
from setuptools import find_packages, setup, Command
|
||||
|
||||
# Package meta-data.
|
||||
NAME = 'Onekey'
|
||||
DESCRIPTION = 'Onekey Steam Depot Manifest Downloader.'
|
||||
URL = 'https://github.com/ikunshare/Onekey'
|
||||
EMAIL = 'ikun0014@qq.com'
|
||||
AUTHOR = 'ikun0014'
|
||||
REQUIRES_PYTHON = '>=3.10.0'
|
||||
VERSION = '1.2.2'
|
||||
|
||||
REQUIRED = [
|
||||
'aiohttp',
|
||||
'aiofiles',
|
||||
'colorlog',
|
||||
'ujson',
|
||||
'vdf',
|
||||
'requests',
|
||||
'tqdm'
|
||||
]
|
||||
|
||||
EXTRAS = {}
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
try:
|
||||
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
|
||||
long_description = '\n' + f.read()
|
||||
except FileNotFoundError:
|
||||
long_description = DESCRIPTION
|
||||
|
||||
about = {}
|
||||
if not VERSION:
|
||||
project_slug = NAME.lower().replace("-", "_").replace(" ", "_")
|
||||
with open(os.path.join(here, project_slug, '__version__.py')) as f:
|
||||
exec(f.read(), about)
|
||||
else:
|
||||
about['__version__'] = VERSION
|
||||
|
||||
|
||||
class UploadCommand(Command):
|
||||
"""Support setup.py upload."""
|
||||
|
||||
description = 'Build and publish the package.'
|
||||
user_options = []
|
||||
|
||||
@staticmethod
|
||||
def status(s):
|
||||
"""Prints things in bold."""
|
||||
print('\033[1m{0}\033[0m'.format(s))
|
||||
|
||||
def initialize_options(self):
|
||||
pass
|
||||
|
||||
def finalize_options(self):
|
||||
pass
|
||||
|
||||
def run(self):
|
||||
try:
|
||||
self.status('Removing previous builds…')
|
||||
rmtree(os.path.join(here, 'dist'))
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
self.status('Building Source and Wheel (universal) distribution…')
|
||||
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
|
||||
|
||||
self.status('Uploading the package to PyPI via Twine…')
|
||||
os.system('twine upload dist/*')
|
||||
|
||||
self.status('Pushing git tags…')
|
||||
os.system('git tag v{0}'.format(about['__version__']))
|
||||
os.system('git push --tags')
|
||||
|
||||
sys.exit()
|
||||
|
||||
|
||||
setup(
|
||||
name=NAME,
|
||||
version=about['__version__'],
|
||||
description=DESCRIPTION,
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
author=AUTHOR,
|
||||
author_email=EMAIL,
|
||||
python_requires=REQUIRES_PYTHON,
|
||||
url=URL,
|
||||
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
|
||||
install_requires=REQUIRED,
|
||||
extras_require=EXTRAS,
|
||||
include_package_data=True,
|
||||
license='GNU General Public License v3',
|
||||
classifiers=[
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Natural Language :: Chinese (Simplified)'
|
||||
],
|
||||
# $ setup.py publish support.
|
||||
cmdclass={
|
||||
'upload': UploadCommand,
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user