Compare commits

...

22 Commits

Author SHA1 Message Date
ikun0014
c03df383a0 1.2.7 2024-10-13 15:46:21 +08:00
ikun0014
5893e07901 feat: 增加Github CDN 2024-10-13 15:45:44 +08:00
ikun0014
bf6024e4c1 feat: 加多点try防止出事 2024-10-13 15:45:22 +08:00
ikun0014
39d426d806 Merge pull request #43 from muwenyan521/main
chore:改点东西
2024-10-12 20:48:19 +08:00
WangXianming
26fbb82357 Update build.yml 2024-10-12 20:28:29 +08:00
WangXianming
6fc06a681a 1.2.6 2024-10-12 20:19:00 +08:00
WangXianming
600a8679f3 chore:改点东西 2024-10-12 20:06:27 +08:00
WangXianming
3fa925c161 Merge branch 'main' of https://github.com/muwenyan521/Onekey 2024-10-12 19:23:41 +08:00
ikun0014
3642dbde30 chore: 修改一下 2024-10-12 16:31:34 +08:00
ikun0014
cec2d0fedb fix: 再修一次 2024-10-12 16:19:11 +08:00
ikun0014
59bcd7bcdc chore: 再加点料 2024-10-12 15:58:06 +08:00
ikun0014
57f285af37 fix: 这次总能用了吧 2024-10-12 15:57:10 +08:00
ikun0014
afdcc5d51e fix 2024-10-11 21:48:18 +08:00
ikun0014
f8bc9ace69 chore: 让我微调一下() 2024-10-11 21:21:25 +08:00
ikun0014
7135e13fd7 更新 build.yml 2024-10-11 20:12:30 +08:00
ikun0014
b87867088b 1.2.5 2024-10-11 20:05:01 +08:00
ikun0014
fc03979107 chore: 丝滑刷版本号测试 2024-10-11 20:04:42 +08:00
WangXianming
d36678f53c 更新 .gitignore 2024-10-05 17:51:55 +08:00
WangXianming
0418dbb685 Merge branch 'ikunshare:main' into main 2024-10-02 21:46:52 +08:00
WangXianming
0c783b3a7b 更新 .gitignore 2024-10-02 18:34:03 +08:00
dependabot[bot]
eb1501a43a Merge pull request #42 from ikunshare/dependabot/pip/aiohttp-3.10.2 2024-10-01 14:10:32 +00:00
dependabot[bot]
ea3b682eb7 build(deps): bump aiohttp from 3.9.5 to 3.10.2
Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.9.5 to 3.10.2.
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](https://github.com/aio-libs/aiohttp/compare/v3.9.5...v3.10.2)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-01 13:57:35 +00:00
16 changed files with 83 additions and 78 deletions

View File

@@ -7,19 +7,19 @@ on:
jobs:
build:
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:
@@ -63,10 +63,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
View File

@@ -170,3 +170,5 @@ config.json
*.exe
*.dll
/main.dist
/.vscode
/.vs

View File

@@ -1,6 +1,5 @@
import time
import ujson as json
from aiohttp import ClientError
from aiohttp import ClientError, ConnectionTimeoutError
from .log import log
from .stack_error import stack_error
@@ -20,11 +19,13 @@ async def check_github_api_rate_limit(headers, session):
log.info(f' 🔄 剩余请求次数: {remaining_requests}')
if remaining_requests == 0:
log.warning(f'⚠ GitHub API 请求数已用尽将在 {reset_time_formatted} 重置建议生成一个填在配置文件里')
log.warning(f'⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置,建议生成一个填在配置文件里')
else:
log.error('⚠ Github请求数检查失败网络错误')
log.error('⚠ Github请求数检查失败,网络错误')
except ClientError as e:
log.error(f'⚠ 检查Github API 请求数失败{stack_error(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)}')

View File

@@ -13,22 +13,14 @@ DEFAULT_CONFIG = {
"教程": "https://ikunshare.com/Onekey_tutorial"
}
def validate_config(config):
# 检查配置文件的有效性
required_keys = DEFAULT_CONFIG.keys()
for key in required_keys:
if key not in config:
return False
return True
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('🖱️ 程序可能为第一次启动或配置重置请填写配置文件后重新启动程序')
log.info('🖱️ 程序可能为第一次启动或配置重置,请填写配置文件后重新启动程序')
except Exception as e:
log.error(f' 配置文件生成失败{stack_error(e)}')
log.error(f' 配置文件生成失败,{stack_error(e)}')
async def load_config():
if not os.path.exists('./config.json'):
@@ -39,16 +31,9 @@ async def load_config():
try:
async with aiofiles.open("./config.json", mode="r", encoding="utf-8") as f:
config = json.loads(await f.read())
if not validate_config(config):
log.error("配置文件格式无效,正在重置为默认配置...")
await gen_config_file()
os.system('pause')
sys.exit()
return config
except Exception as e:
log.error(f"配置文件加载失败,原因: {stack_error(e)}")
log.error(f"配置文件加载失败,原因: {stack_error(e)},重置配置文件中...")
os.remove("./config.json")
await gen_config_file()
os.system('pause')

View File

@@ -9,7 +9,7 @@ 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默认配置不存在可能是没有登录账号')
log.error('👋 Steam默认配置不存在,可能是没有登录账号')
return False
try:
@@ -21,7 +21,7 @@ async def depotkey_merge(config_path: Path, depots_config: dict) -> bool:
config.get('InstallConfigStore', {}).get('Software', {}).get('valve')
if steam is None:
log.error('⚠ 找不到Steam配置请检查配置文件')
log.error('⚠ 找不到Steam配置,请检查配置文件')
return False
depots = steam.setdefault('depots', {})
@@ -36,5 +36,5 @@ async def depotkey_merge(config_path: Path, depots_config: dict) -> bool:
except Exception as e:
async with lock:
log.error(f' 合并失败原因: {e}')
log.error(f' 合并失败,原因: {e}')
return False

View File

@@ -37,7 +37,7 @@ async def get_manifest(sha: str, path: str, steam_path: Path, repo: str, session
]
except Exception as e:
log.error(f' 处理失败: {path} - {stack_error(e)}')
log.error(f' 处理失败: {path} - {stack_error(e)}')
raise
return collected_depots

View File

@@ -13,7 +13,7 @@ def get_steam_path() -> Path:
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)}')
log.error(f'Steam路径获取失败, {stack_error(e)}, 请检查是否正确安装Steam')
os.system('pause')
return Path()

View File

@@ -28,5 +28,5 @@ async def greenluma_add(depot_id_list: list) -> bool:
return True
except Exception as e:
print(f' 处理时出错: {e}')
print(f' 处理时出错: {e}')
return False

View File

@@ -16,9 +16,10 @@ def init():
for line in banner_lines:
print(line)
log.info('作者ikun0014')
log.info('作者:ikun0014')
log.info('本项目采用GNU General Public License v3开源许可证')
log.info('版本1.2.4')
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')
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)')

View File

@@ -1,5 +1,5 @@
import os
from aiohttp import ClientSession
from aiohttp import ClientSession, ConnectionTimeoutError
from common.config import config
from common.dkey_merge import depotkey_merge
@@ -22,6 +22,9 @@ async def fetch_branch_info(session, url, headers):
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
@@ -53,7 +56,7 @@ async def main(app_id: str, repos: list) -> bool:
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}'
r_json = await fetch_branch_info(session, url, headers)
@@ -72,7 +75,7 @@ async def main(app_id: str, repos: list) -> bool:
if isSteamTools:
await migrate(st_use=True, session=session)
await stool_add(collected_depots, app_id)
log.info('✅ 找到SteamTools已添加解锁文件')
log.info('✅ 找到SteamTools,已添加解锁文件')
if isGreenLuma:
await migrate(st_use=False, session=session)
@@ -80,9 +83,9 @@ async def main(app_id: str, repos: list) -> bool:
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('✅ 找到GreenLuma,已添加解锁文件')
log.info(f'✅ 清单最后更新时间{latest_date}')
log.info(f'✅ 清单最后更新时间:{latest_date}')
log.info(f'✅ 入库成功: {app_id}')
os.system('pause')
return True

View File

@@ -1,6 +1,5 @@
from aiohttp import ClientError, ClientResponse
from aiohttp import ClientError, ConnectionTimeoutError
from tqdm.asyncio import tqdm_asyncio
from typing import Union
from .log import log
@@ -9,25 +8,11 @@ async def get(sha: str, path: str, repo: str, session, chunk_size: int = 1024) -
url_list = [
f'https://jsdelivr.pai233.top/gh/{repo}@{sha}/{path}',
f'https://cdn.jsdmirror.com/gh/{repo}@{sha}/{path}',
f'https://raw.kkgithub.com/{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}'
]
'''
下载时间 (20MB 从小到大):
https://jsdelivr.pai233.top/gh/{repo}@{sha}/{path} - 0.95秒
https://cdn.jsdmirror.com/gh/{repo}@{sha}/{path} - 6.74秒
https://raw.kkgithub.com/{repo}/{sha}/{path} - 6.76秒
https://raw.dgithub.xyz/{repo}/{sha}/{path} - 8.30秒
https://raw.gitmirror.com/{repo}/{sha}/{path} - 15.60秒
https://ghproxy.net/https://raw.githubusercontent.com/{repo}/{sha}/{path} - 16.59秒
https://fastly.jsdelivr.net/gh/{repo}@{sha}/{path} - 20.08秒
https://jsd.onmicrosoft.cn/gh/{repo}@{sha}/{path} - 22.07秒
https://gitdl.cn/https://raw.githubusercontent.com/{repo}/{sha}/{path} - 47.33秒
https://ghp.ci/https://raw.githubusercontent.com/{repo}/{sha}/{path} - 96.56秒
https://raw.githubusercontent.com/{repo}/{sha}/{path} - 458.75秒
https://cdn.jsdelivr.net/gh/{repo}@{sha}/{path} - 下载时出错
'''
retry = 3
while retry > 0:
for url in url_list:
@@ -37,7 +22,7 @@ async def get(sha: str, path: str, repo: str, session, chunk_size: int = 1024) -
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:
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))
@@ -47,6 +32,8 @@ async def get(sha: str, path: str, repo: str, session, chunk_size: int = 1024) -
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}')

View File

@@ -1,6 +1,6 @@
import os
import subprocess
import aiofiles
from aiohttp import ConnectionTimeoutError
from pathlib import Path
from tqdm.asyncio import tqdm
from .log import log
@@ -31,10 +31,12 @@ async def download_setup_file(session) -> None:
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尝试迁移旧文件')
log.info('🔄 检测到你正在使用 SteamTools,尝试迁移旧文件')
if directory.exists():
for file in directory.iterdir():
@@ -47,7 +49,7 @@ async def migrate(st_use: bool, session) -> None:
except Exception as e:
log.error(f'⚠ 重命名失败 {file.name} -> {new_filename}: {e}')
else:
log.error('⚠ 故障正在重新安装 SteamTools')
log.error('⚠ 故障,正在重新安装 SteamTools')
temp_path.mkdir(parents=True, exist_ok=True)
await download_setup_file(session)
@@ -57,4 +59,4 @@ async def migrate(st_use: bool, session) -> None:
file.unlink()
temp_path.rmdir()
else:
log.info('✅ 未使用 SteamTools停止迁移')
log.info('✅ 未使用 SteamTools,停止迁移')

View File

@@ -2,7 +2,6 @@ import os
import asyncio
import subprocess
import aiofiles
from pathlib import Path
from .log import log
from .get_steam_path import steam_path
@@ -34,7 +33,7 @@ async def stool_add(depot_data: list, app_id: str) -> bool:
log.info('✅ 处理完成')
except Exception as e:
log.error(f' 处理过程出现错误: {e}')
log.error(f' 处理过程出现错误: {e}')
return False
finally:
if lua_filepath.exists():

32
main.py
View File

@@ -1,8 +1,7 @@
import os
import time
import sys
import asyncio
import re
import platform
from colorama import Fore, Back, Style
from colorama import init as cinit
@@ -22,12 +21,32 @@ repos = [
'tymolu233/ManifestAutoUpdate',
]
def check_system_msg():
os_type = platform.system()
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():
app_id = input(f"{Fore.CYAN}{Back.BLACK}{Style.BRIGHT}🤔 请输入游戏AppID{Style.RESET_ALL}").strip()
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}")
print(f"{Fore.RED}⚠ 无效的AppID,请输入数字!{Style.RESET_ALL}")
async def main_loop():
while True:
@@ -44,13 +63,12 @@ async def run():
except KeyboardInterrupt:
log.info("👋 程序已退出")
except Exception as e:
log.error(f' ⚠ 发生错误: {stack_error(e)}将在5秒后退出')
log.error(f' ⚠ 发生错误: {stack_error(e)},将在5秒后退出')
await asyncio.sleep(5)
finally:
asyncio.get_event_loop().stop()
if __name__ == '__main__':
try:
check_system_msg()
asyncio.run(run())
except SystemExit:
sys.exit()

View File

@@ -1,6 +1,6 @@
{
"name": "onekey",
"version": "1.2.4",
"version": "1.2.7",
"description": "一个Steam仓库清单下载器",
"main": "index.js",
"scripts": {

View File

@@ -1,5 +1,5 @@
aiofiles==24.1.0
aiohttp==3.9.5
aiohttp==3.10.2
colorama==0.4.6
colorlog==6.8.2
tqdm==4.66.5