Проверка хэша при установке
This commit is contained in:
parent
109168160c
commit
699b7c5f14
2 changed files with 33 additions and 5 deletions
25
mc-get.py
25
mc-get.py
|
@ -7,11 +7,15 @@ import mcgetdb
|
||||||
from colorama import Fore, Style
|
from colorama import Fore, Style
|
||||||
|
|
||||||
|
|
||||||
|
class HashError(ValueError):
|
||||||
|
"""Incorrect hash"""
|
||||||
|
|
||||||
|
|
||||||
def validate():
|
def validate():
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
def download_cache(url: str, filename: str, size: int):
|
def download_cache(url: str, filename: str, size: int, hash: str):
|
||||||
cache_file_path = os.path.join(mcfs.cache_dir, filename)
|
cache_file_path = os.path.join(mcfs.cache_dir, filename)
|
||||||
if not mcfs.is_path_exist(mcfs.cache_dir):
|
if not mcfs.is_path_exist(mcfs.cache_dir):
|
||||||
os.mkdir(mcfs.cache_dir)
|
os.mkdir(mcfs.cache_dir)
|
||||||
|
@ -19,7 +23,9 @@ def download_cache(url: str, filename: str, size: int):
|
||||||
api.download(url, size, cache_file_path)
|
api.download(url, size, cache_file_path)
|
||||||
else:
|
else:
|
||||||
print(f"{filename} is in cache.")
|
print(f"{filename} is in cache.")
|
||||||
return filename
|
if mcfs.check_file_hash(cache_file_path, hash):
|
||||||
|
os.remove(cache_file_path)
|
||||||
|
raise HashError(f"Incorrect hash for {filename}")
|
||||||
|
|
||||||
|
|
||||||
def modpack_install(filename: str):
|
def modpack_install(filename: str):
|
||||||
|
@ -29,7 +35,7 @@ def modpack_install(filename: str):
|
||||||
path = file["path"].split("/")
|
path = file["path"].split("/")
|
||||||
downloads = file["downloads"]
|
downloads = file["downloads"]
|
||||||
print(file["path"])
|
print(file["path"])
|
||||||
download_cache(downloads[0], path[1], file["fileSize"])
|
download_cache(downloads[0], path[1], file["fileSize"], file["hashes"]["sha512"])
|
||||||
mcfs.install(path[1], path[0])
|
mcfs.install(path[1], path[0])
|
||||||
print(f"{Fore.YELLOW}Overriding...{Style.RESET_ALL}")
|
print(f"{Fore.YELLOW}Overriding...{Style.RESET_ALL}")
|
||||||
mcfs.install_modpacks_override(filename)
|
mcfs.install_modpacks_override(filename)
|
||||||
|
@ -111,10 +117,18 @@ def install(projects: list, version, loader):
|
||||||
print("Canceled.")
|
print("Canceled.")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
failed_to_install = []
|
||||||
|
|
||||||
for project, version in all_to_install:
|
for project, version in all_to_install:
|
||||||
file = type("mc_file", (object,), version.files[0])
|
file = type("mc_file", (object,), version.files[0])
|
||||||
filename = file.filename
|
filename = file.filename
|
||||||
download_cache(file.url, filename, file.size)
|
try:
|
||||||
|
download_cache(file.url, filename, file.size, file.hashes["sha512"])
|
||||||
|
except HashError:
|
||||||
|
print(f"Failed to install {project.title} ({project.slug}) [{version.version_number}] due to an incorrect "
|
||||||
|
f"hash")
|
||||||
|
failed_to_install.append((project, version))
|
||||||
|
continue
|
||||||
match project.project_type:
|
match project.project_type:
|
||||||
case "resourcepack":
|
case "resourcepack":
|
||||||
subdir = "resourcepacks"
|
subdir = "resourcepacks"
|
||||||
|
@ -129,6 +143,9 @@ def install(projects: list, version, loader):
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
mcfs.install(filename, subdir)
|
mcfs.install(filename, subdir)
|
||||||
|
if failed_to_install:
|
||||||
|
print("Failed to install:",
|
||||||
|
*[project.title + " " + version.version_number for project, version in failed_to_install], sep="\n\t")
|
||||||
|
|
||||||
|
|
||||||
def search(query: list):
|
def search(query: list):
|
||||||
|
|
13
mcfs.py
13
mcfs.py
|
@ -3,7 +3,7 @@ from sys import platform
|
||||||
import shutil
|
import shutil
|
||||||
import zipfile
|
import zipfile
|
||||||
import json
|
import json
|
||||||
|
from hashlib import sha512
|
||||||
|
|
||||||
class MCVersion:
|
class MCVersion:
|
||||||
def __init__(self, version_number, is_modified=False, modloader=None):
|
def __init__(self, version_number, is_modified=False, modloader=None):
|
||||||
|
@ -118,3 +118,14 @@ def get_installed_mc_versions():
|
||||||
pass
|
pass
|
||||||
versions.append(mc_ver)
|
versions.append(mc_ver)
|
||||||
return sorted(versions, reverse=True)
|
return sorted(versions, reverse=True)
|
||||||
|
|
||||||
|
|
||||||
|
def check_file_hash(path, ref_hash):
|
||||||
|
buffer_size = 65536
|
||||||
|
hash = sha512()
|
||||||
|
with open(path, 'rb') as f:
|
||||||
|
data = True
|
||||||
|
while data:
|
||||||
|
data = f.read(buffer_size)
|
||||||
|
hash.update(data)
|
||||||
|
return hash.hexdigest() == ref_hash
|
||||||
|
|
Loading…
Add table
Reference in a new issue