Compare commits

..

27 Commits

Author SHA1 Message Date
ikun
5ac9f8f28a 1.2.3 2024-09-27 13:21:09 +08:00
ikun
b8d76f98da fix: 尝试修复下载速度过慢导致Timeout 2024-09-27 13:20:49 +08:00
ikun
1e5f0b6774 rm: PyPI 2024-09-22 17:18:39 +08:00
ikun
5357ed5fe7 Merge pull request #36 from muwenyan521/main
镜像源
2024-09-22 15:45:13 +08:00
WangXianming
5cd5e89ed7 feat:镜像源 2024-09-22 15:39:35 +08:00
ikun
e34cad1889 fix: 少个参数 2024-09-20 21:35:00 +08:00
ikun
4aa1c22c25 feat: 优化 2024-09-20 20:02:21 +08:00
ikun
8ee7765bb0 Revert 2024-09-19 20:41:47 +08:00
ikun
4bd1362317 Revert "Merge branch 'main' of https://github.com/ikunshare/Onekey"
This reverts commit 5356947022, reversing
changes made to 6a9fed2e39.
2024-09-19 20:40:35 +08:00
ikun
3c0f2ecd6f Update README.md 2024-09-17 15:28:58 +08:00
ikun
7590f3f791 Merge pull request #28 from muwenyan521/main
[WIP] 代码美化与优化
2024-09-17 15:10:58 +08:00
ikun
7adcf004e5 Merge branch 'main' into main 2024-09-17 15:10:50 +08:00
ikun
9ff08d0f91 up: sync 2024-09-17 15:08:53 +08:00
ikun
5356947022 Merge branch 'main' of https://github.com/ikunshare/Onekey 2024-09-17 14:54:08 +08:00
ikun
6a9fed2e39 1.2.2 2024-09-17 14:54:03 +08:00
ikun
8cefcae6a7 feat: 花里胡哨 2024-09-17 14:53:08 +08:00
WangXianming
0a3ee59d45 ReadMe更新 2024-09-16 19:30:43 +08:00
WangXianming
194e6a41d2 Merge pull request #3 from muwenyan521/Manage
版本变更
2024-09-16 18:53:11 +08:00
WangXianming
07079a6d58 版本变更 2024-09-16 18:49:27 +08:00
WangXianming
4ed51987ba Merge pull request #2 from muwenyan521/Manage
进度条美化
2024-09-16 17:37:23 +08:00
WangXianming
28db8b15db 进度条美化 2024-09-16 17:32:14 +08:00
WangXianming
c33b871188 Merge pull request #1 from muwenyan521/Manage
Manage
2024-09-16 17:14:19 +08:00
WangXianming
9bd6cc5a60 代码优化 2024-09-16 17:13:08 +08:00
ikun
87594e0bf0 Update python-publish.yml 2024-09-16 15:13:38 +08:00
WangXianming
6f4dac876f 优化代码 2024-09-16 15:06:13 +08:00
ikun
2073fbdd9a Create python-publish.yml 2024-09-16 14:39:33 +08:00
ikun
a821938f01 fix: requirements 2024-09-16 14:37:49 +08:00
13 changed files with 122 additions and 85 deletions

View File

@@ -59,3 +59,13 @@ pip install -r requirements.txt
<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)

View File

@@ -1,26 +1,28 @@
import os
import time
import ujson as json
from aiohttp import ClientError
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:
url = 'https://api.github.com/rate_limit'
async with session.get(url, headers=headers, ssl=False) as r:
if not r == None:
async with session.get(url, headers=headers, ssl=False) as r:
r_json = await r.json()
else:
log.error('孩子,你怎么做到的?')
os.system('pause')
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请求数检查失败')
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请求数检查失败,网络错误')
if remaining_requests == 0:
log.warning(f' ⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置, 不想等生成一个填配置文件里')
if remaining_requests == 0:
log.warning(f'⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置, 不想等生成一个填配置文件里')
except ClientError as e:
log.error(f'⚠ 检查Github API 请求数失败,{stack_error(e)}')

View File

@@ -9,23 +9,26 @@ from .log import log
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:
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('🖱️ 程序可能为第一次启动,请填写配置文件后重新启动程序')
except Exception as e:
log.error(f'❗ 配置文件生成失败,{stack_error(e)}')
async def load_config():

View File

@@ -6,7 +6,7 @@ from .log import log
from .manifest_down import get
from .stack_error import stack_error
# 获取清单信息
async def get_manifest(sha, path, steam_path: Path, repo, session):
collected_depots = []
try:

View File

@@ -1,15 +1,19 @@
from colorama import Fore, Back, Style, init
init()
from .log import log
def init():
print('\033[1;32;40m _____ __ _ _____ _ _ _____ __ __ ' + '\033[0m')
print('\033[1;32;40m / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /' + '\033[0m')
print('\033[1;32;40m | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /' + '\033[0m')
print('\033[1;32;40m | | | | | |\\ | | __| | |\\ \\ | __| \\ / ' + '\033[0m')
print('\033[1;32;40m | |_| | | | \\ | | |___ | | \\ \\ | |___ / /' + '\033[0m')
print('\033[1;32;40m \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/' + '\033[0m')
log.info('作者ikun0014')
log.info('本项目基于wxy1343/ManifestAutoUpdate进行修改采用GPL-3.0许可证')
log.info('版本1.2.1')
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.3')
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.warning('本项目完全开源免费如果你在淘宝QQ群内通过购买方式获得赶紧回去骂商家死全家\n交流群组:\nhttps://qm.qq.com/q/d7sWovfAGI\nhttps://t.me/ikunshare_group')

View File

@@ -18,16 +18,18 @@ isSteamTools = (steam_path / 'config' / 'stUI').is_dir()
async def main(app_id, repos):
app_id_list = list(filter(str.isdecimal, app_id.strip().split('-')))
app_id = app_id_list[0]
if not app_id_list:
log.error(f'⚠ App ID无效')
return False
else:
app_id = app_id_list[0]
async with ClientSession() as session:
github_token = config["Github_Personal_Token"]
headers = {'Authorization': f'Bearer {github_token}'} if github_token else None
latest_date = None
selected_repo = 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:
@@ -39,7 +41,8 @@ async def main(app_id, repos):
latest_date = date
selected_repo = repo
except Exception as e:
log.error(f' ⚠ 获取分支信息失败: {stack_error(e)}')
log.error(f'⚠ 获取分支信息失败: {stack_error(e)}')
if selected_repo:
log.info(f' 🔄 选择清单仓库:{selected_repo}')
url = f'https://api.github.com/repos/{selected_repo}/branches/{app_id}'
@@ -57,20 +60,21 @@ async def main(app_id, repos):
collected_depots.extend(result)
if collected_depots:
if isSteamTools:
migrate(st_use=True)
await migrate(st_use=True, session=session)
await stool_add(collected_depots, app_id)
log.info(' ✅ 找到SteamTools已添加解锁文件')
if isGreenLuma:
migrate(st_use=False)
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' ✅ 清单最后更新时间:{date}')
log.info(f' ✅ 入库成功: {app_id}')
log.info('✅ 找到GreenLuma已添加解锁文件')
log.info(f'✅ 清单最后更新时间:{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

View File

@@ -8,8 +8,9 @@ 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}',
f'https://raw.dgithub.xyz/{repo}/{sha}/{path}',
f'https://raw.gitmirror.com/{repo}/{sha}/{path}',
f'https://raw.githubusercontent.com/{repo}/{sha}/{path}'
]
retry = 3
while retry:
@@ -18,20 +19,19 @@ async def get(sha, path, repo, session):
async with session.get(url, ssl=False) as r:
if r.status == 200:
total_size = int(r.headers.get('Content-Length', 0))
chunk_size = 1024
chunk_size = 2048
content = bytearray()
with tqdm_asyncio(total=total_size, unit='B', unit_scale=True, desc=f'下载 {path}') as pbar:
with tqdm_asyncio(total=total_size, unit='B', unit_scale=True, desc=f'下载 {path}', colour='#ffadad') as pbar:
async for chunk in r.content.iter_chunked(chunk_size):
content.extend(chunk)
pbar.update(len(chunk))
return content
else:
log.error(f' 🔄 获取失败: {path} - 状态码: {r.status}')
log.error(f'🔄 获取失败: {path} - 状态码: {r.status}')
except ClientError:
log.error(f' 🔄 获取失败: {path} - 连接错误')
log.error(f'🔄 获取失败: {path} - 连接错误')
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}')

View File

@@ -1,21 +1,22 @@
import os
import subprocess
import requests
import aiofiles
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")
def migrate(st_use):
async def migrate(st_use, session):
if st_use == True:
log.info('检测到你正在使用SteamTools尝试迁移旧文件')
log.info('🔄 检测到你正在使用SteamTools尝试迁移旧文件')
if os.path.exists(directory):
for filename in os.listdir(directory):
if filename.startswith("Onekey_unlock_"):
new_filename = filename[len("Onekey_unlock_"):]
old_file = os.path.join(directory, filename)
new_file = os.path.join(directory, new_filename)
@@ -25,20 +26,29 @@ def migrate(st_use):
except Exception as e:
log.error(f'Failed to rename {filename} -> {new_filename}: {e}')
else:
log.error('故障正在重新安装SteamTools')
log.error('故障正在重新安装SteamTools')
temp_path = './temp'
if not os.path.exists(temp_path):
os.mkdir(temp_path)
down_url = 'https://steamtools.net/res/SteamtoolsSetup.exe'
out_path = './temp/SteamtoolsSetup.exe'
with requests.get(down_url, stream=True) as r:
if r.status_code == 200:
with open(out_path, 'wb') as f:
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)
async with session.get(down_url, stream=True) as r:
if r.status == 200:
total_size = int(await r.headers.get('Content-Length', 0))
chunk_size = 8192
progress = tqdm(total=total_size, unit='B', unit_scale=True)
async with aiofiles.open(out_path, mode='wb') as f:
async for chunk in r.content.iter_chunked(chunk_size=chunk_size):
await f.write(chunk)
await progress.update(len(chunk))
await progress.close()
else:
log.error('网络错误')
log.error('网络错误')
subprocess.run(str(out_path))
os.rmdir(temp_path)
else:
log.info('未使用SteamTools停止迁移')
log.info('未使用SteamTools停止迁移')

View File

@@ -13,7 +13,7 @@ async def stool_add(depot_data, app_id):
lua_filepath = steam_path / "config" / "stplug-in" / lua_filename
async with lock:
log.info(f' ✅ SteamTools解锁文件生成: {lua_filepath}')
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:

BIN
icon.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 42 KiB

10
main.py
View File

@@ -2,6 +2,8 @@ import os
import time
import asyncio
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
@@ -10,17 +12,19 @@ from common.main_func import main
lock = asyncio.Lock()
init()
cinit()
repos = [
'ikun0014/ManifestHub',
'Auiowu/ManifestAutoUpdate',
'tymolu233/ManifestAutoUpdate'
'tymolu233/ManifestAutoUpdate',
]
if __name__ == '__main__':
try:
log.info('❗ App ID可以在SteamDB或Steam商店链接页面查看')
while True:
log.info('App ID可以在SteamDB或Steam商店链接页面查看')
app_id = input("请输入游戏AppID").strip()
app_id = input(f"{Fore.CYAN}{Back.BLACK}{Style.BRIGHT}🤔 请输入游戏AppID{Style.RESET_ALL}").strip()
asyncio.run(main(app_id, repos))
except KeyboardInterrupt:
exit()

View File

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

View File

@@ -2,7 +2,7 @@ aiofiles
colorlog
ujson
vdf
nuitka
requests
imageio
aiohttp
aiohttp
tqdm