mirror of
https://github.com/ikunshare/Onekey.git
synced 2026-01-15 01:23:02 +08:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb789d8cf7 | ||
|
|
3178303b0a | ||
|
|
738e0eb617 | ||
|
|
fb0806aea7 | ||
|
|
2a02d07e8d | ||
|
|
df4342957f | ||
|
|
e2f2120b0c | ||
|
|
580cd44247 | ||
|
|
0e57caefd1 | ||
|
|
062e58ea57 | ||
|
|
651d9f79b2 | ||
|
|
8f8aaf81a1 | ||
|
|
e8dd606db4 | ||
|
|
b50183e723 |
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"
|
||||
@@ -7,6 +7,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: contains(github.event.head_commit.message, '[release]')
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: windows-2019
|
||||
@@ -16,16 +16,18 @@ async def check_github_api_rate_limit(headers, session):
|
||||
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}')
|
||||
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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
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)}')
|
||||
log.error(f'检查Github API 请求数超时: {stack_error(e)}')
|
||||
except Exception as e:
|
||||
log.error(f'⚠ 发生错误: {stack_error(e)}')
|
||||
log.error(f'发生错误: {stack_error(e)}')
|
||||
|
||||
@@ -6,17 +6,21 @@ 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):
|
||||
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 Exception as e:
|
||||
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except requests.RequestException as e:
|
||||
os.environ['IS_CN'] = 'yes'
|
||||
log.warning('❗ 检查服务器位置失败,已忽略,自动认为你在中国大陆')
|
||||
log.warning('检查服务器位置失败,已忽略,自动认为你在中国大陆')
|
||||
log.warning(stack_error(e))
|
||||
return False
|
||||
return False
|
||||
|
||||
@@ -19,8 +19,10 @@ async def gen_config_file():
|
||||
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)}')
|
||||
log.error(f'配置文件生成失败,{stack_error(e)}')
|
||||
|
||||
async def load_config():
|
||||
if not os.path.exists('./config.json'):
|
||||
@@ -32,6 +34,8 @@ async def load_config():
|
||||
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")
|
||||
|
||||
@@ -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', {})
|
||||
@@ -31,10 +31,12 @@ async def depotkey_merge(config_path: Path, depots_config: dict) -> bool:
|
||||
new_context = vdf.dumps(config, pretty=True)
|
||||
await f.write(new_context)
|
||||
|
||||
log.info('✅ 成功合并')
|
||||
log.info('成功合并')
|
||||
return True
|
||||
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
async with lock:
|
||||
log.error(f'❌ 合并失败,原因: {e}')
|
||||
log.error(f'合并失败, 原因: {e}')
|
||||
return False
|
||||
|
||||
@@ -17,18 +17,18 @@ async def get_manifest(sha: str, path: str, steam_path: Path, repo: str, session
|
||||
if path.endswith('.manifest'):
|
||||
save_path = depot_cache_path / path
|
||||
if save_path.exists():
|
||||
log.warning(f'👋 已存在清单: {save_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'))
|
||||
collected_depots = [
|
||||
@@ -36,8 +36,10 @@ async def get_manifest(sha: str, path: str, steam_path: Path, repo: str, session
|
||||
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)}')
|
||||
log.error(f'处理失败: {path} - {stack_error(e)}')
|
||||
raise
|
||||
|
||||
return collected_depots
|
||||
|
||||
@@ -12,8 +12,10 @@ 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 KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'❌ Steam路径获取失败, {stack_error(e)}, 请检查是否正确安装Steam')
|
||||
log.error(f'Steam路径获取失败, {stack_error(e)}, 请检查是否正确安装Steam')
|
||||
os.system('pause')
|
||||
return Path()
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -6,20 +6,19 @@ 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}",
|
||||
f" _____ __ _ _____ _ _ _____ __ __ ",
|
||||
f" / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /",
|
||||
f" | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /",
|
||||
f" | | | | | |\\ | | __| | |\\ \\ | __| \\ / ",
|
||||
f" | |_| | | | \\ | | |___ | | \\ \\ | |___ / /",
|
||||
f" \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/",
|
||||
]
|
||||
for line in banner_lines:
|
||||
print(line)
|
||||
log.info(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)')
|
||||
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,7 +1,7 @@
|
||||
import logging
|
||||
import colorlog
|
||||
|
||||
LOG_FORMAT = '%(log_color)s[%(name)s][%(levelname)s]%(message)s'
|
||||
LOG_FORMAT = '%(log_color)s%(message)s'
|
||||
LOG_COLORS = {
|
||||
'INFO': 'cyan',
|
||||
'WARNING': 'yellow',
|
||||
|
||||
@@ -20,11 +20,13 @@ 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)}')
|
||||
log.error(f'获取信息失败: {stack_error(e)}')
|
||||
return None
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'⚠ 获取信息时超时: {stack_error(e)}')
|
||||
log.error(f'获取信息时超时: {stack_error(e)}')
|
||||
return None
|
||||
|
||||
async def get_latest_repo_info(session, repos, app_id, headers):
|
||||
@@ -45,7 +47,7 @@ async def get_latest_repo_info(session, repos, app_id, headers):
|
||||
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无效')
|
||||
log.error(f'App ID无效')
|
||||
return False
|
||||
app_id = app_id_list[0]
|
||||
|
||||
@@ -59,7 +61,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)
|
||||
|
||||
@@ -78,7 +80,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)
|
||||
@@ -86,13 +88,13 @@ 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'✅ 入库成功: {app_id}')
|
||||
log.info(f'清单最后更新时间:{latest_date}')
|
||||
log.info(f'入库成功: {app_id}')
|
||||
os.system('pause')
|
||||
return True
|
||||
|
||||
log.error(f'⚠ 清单下载或生成失败: {app_id}')
|
||||
log.error(f'清单下载或生成失败: {app_id}')
|
||||
os.system('pause')
|
||||
return False
|
||||
|
||||
@@ -26,21 +26,23 @@ 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))
|
||||
|
||||
return content
|
||||
else:
|
||||
log.error(f'🔄 获取失败: {path} - 状态码: {response.status}')
|
||||
log.error(f'获取失败: {path} - 状态码: {response.status}')
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except ClientError as e:
|
||||
log.error(f'🔄 获取失败: {path} - 连接错误: {str(e)}')
|
||||
log.error(f'获取失败: {path} - 连接错误: {str(e)}')
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'🔄 连接超时: {url} - 错误: {str(e)}')
|
||||
log.error(f'连接超时: {url} - 错误: {str(e)}')
|
||||
|
||||
retry -= 1
|
||||
log.warning(f'🔄 重试剩余次数: {retry} - {path}')
|
||||
log.warning(f'重试剩余次数: {retry} - {path}')
|
||||
|
||||
log.error(f'🔄 超过最大重试次数: {path}')
|
||||
raise Exception(f'🔄 无法下载: {path}')
|
||||
log.error(f'超过最大重试次数: {path}')
|
||||
raise Exception(f'无法下载: {path}')
|
||||
|
||||
@@ -12,7 +12,7 @@ setup_url = 'https://steamtools.net/res/SteamtoolsSetup.exe'
|
||||
setup_file = temp_path / 'SteamtoolsSetup.exe'
|
||||
|
||||
async def download_setup_file(session) -> None:
|
||||
log.info('🔄 开始下载 SteamTools 安装程序...')
|
||||
log.info('开始下载 SteamTools 安装程序...')
|
||||
try:
|
||||
async with session.get(setup_url, stream=True) as r:
|
||||
if r.status == 200:
|
||||
@@ -26,17 +26,19 @@ async def download_setup_file(session) -> None:
|
||||
progress.update(len(chunk))
|
||||
|
||||
progress.close()
|
||||
log.info('✅ 安装程序下载完成')
|
||||
log.info('安装程序下载完成')
|
||||
else:
|
||||
log.error('⚠ 网络错误,无法下载安装程序')
|
||||
log.error('网络错误,无法下载安装程序')
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'⚠ 下载失败: {e}')
|
||||
log.error(f'下载失败: {e}')
|
||||
except ConnectionTimeoutError as e:
|
||||
log.error(f'⚠ 下载时超时: {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,9 +49,9 @@ async def migrate(st_use: bool, session) -> None:
|
||||
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}')
|
||||
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)
|
||||
@@ -59,4 +61,4 @@ async def migrate(st_use: bool, session) -> None:
|
||||
file.unlink()
|
||||
temp_path.rmdir()
|
||||
else:
|
||||
log.info('✅ 未使用 SteamTools,停止迁移')
|
||||
log.info('未使用 SteamTools,停止迁移')
|
||||
|
||||
@@ -13,7 +13,7 @@ async def stool_add(depot_data: list, app_id: str) -> bool:
|
||||
lua_filepath = steam_path / "config" / "stplug-in" / lua_filename
|
||||
|
||||
async with lock:
|
||||
log.info(f'✅ SteamTools 解锁文件生成: {lua_filepath}')
|
||||
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')
|
||||
@@ -21,19 +21,21 @@ async def stool_add(depot_data: list, app_id: str) -> bool:
|
||||
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}')
|
||||
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()}')
|
||||
log.error(f'调用失败: {result.stderr.decode()}')
|
||||
return False
|
||||
|
||||
log.info('✅ 处理完成')
|
||||
log.info('处理完成')
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f'❌ 处理过程出现错误: {e}')
|
||||
log.error(f'处理过程出现错误: {e}')
|
||||
return False
|
||||
finally:
|
||||
if lua_filepath.exists():
|
||||
|
||||
BIN
icon.jpg
BIN
icon.jpg
Binary file not shown.
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 262 KiB |
35
main.py
35
main.py
@@ -1,7 +1,6 @@
|
||||
import sys
|
||||
import asyncio
|
||||
import re
|
||||
import platform
|
||||
|
||||
from colorama import Fore, Back, Style
|
||||
from colorama import init as cinit
|
||||
@@ -21,54 +20,38 @@ 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():
|
||||
while True:
|
||||
app_id = input(f"{Fore.CYAN}{Back.BLACK}{Style.BRIGHT}🤔 请输入游戏AppID:{Style.RESET_ALL}").strip()
|
||||
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:
|
||||
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商店链接页面查看')
|
||||
log.info('App ID可以在SteamDB或Steam商店链接页面查看')
|
||||
await main_loop()
|
||||
except KeyboardInterrupt:
|
||||
log.info("👋 程序已退出")
|
||||
log.info("\n 程序已退出")
|
||||
except Exception as e:
|
||||
log.error(f' ⚠ 发生错误: {stack_error(e)},将在5秒后退出')
|
||||
log.error(f'发生错误: {stack_error(e)}, 将在5秒后退出')
|
||||
await asyncio.sleep(5)
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
check_system_msg()
|
||||
asyncio.run(run())
|
||||
except KeyboardInterrupt:
|
||||
log.info("\n 程序已退出")
|
||||
except SystemExit:
|
||||
sys.exit()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "onekey",
|
||||
"version": "1.2.8",
|
||||
"version": "1.3.0",
|
||||
"description": "一个Steam仓库清单下载器",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user