Minecraft-Updater/mcUp.py

66 lines
2.8 KiB
Python

2021-12-14 18:09:16 +07:00
#!/bin/python
# Setup Parser
import parsers.paperMC
2021-12-19 18:00:57 +07:00
import parsers.modrinth
2021-12-14 18:09:16 +07:00
import argparse
2021-12-14 20:02:16 +07:00
import shutil
import hashlib
from os import error
2021-12-14 18:09:16 +07:00
parser = argparse.ArgumentParser(description='A command-line tool to update a Minecraft Server.')
parser.add_argument('api', metavar='api', help='which API to use')
parser.add_argument('project', metavar='project', help='which project to query for')
parser.add_argument('action', metavar='action', help='what action to execute')
parser.add_argument('subAction', metavar='subAction', help='what sub action to execute')
parser.add_argument('-o', nargs="?", help='Optional: Specify output filepath')
2021-12-14 18:09:16 +07:00
args = parser.parse_args()
print("mcUp.py, written by Caleb Fontenot")
print(args.o)
2021-12-14 18:09:16 +07:00
# PaperMC command functions
def paperMC(project, action, subAction):
if action == "get":
if subAction == "versions":
print(parsers.paperMC.getVersions(project))
elif subAction == "latest":
latestVersion = parsers.paperMC.getLatest(project)
buildNumber = parsers.paperMC.getBuildNumber(project, latestVersion)
print("Latest version of "+project+" is "+latestVersion+" build #"+str(buildNumber[-1]))
2021-12-14 20:02:16 +07:00
if action == "download":
if subAction == "latest":
latestVersion = parsers.paperMC.getLatest(project)
output = parsers.paperMC.getJarInfo(project, latestVersion)
if args.o != None: # Check if user set an output filepath
output_file = args.o
else:
output_file = output["name"]
2021-12-14 20:02:16 +07:00
with parsers.paperMC.downloadVersion(project, latestVersion) as raw:
with open(output_file, 'wb') as file_object:
2021-12-14 20:02:16 +07:00
shutil.copyfileobj(raw.raw, file_object)
print("Downloaded "+latestVersion+" to "+output_file)
#Calculate hash, compare with API given hash
h_sha256 = hashlib.sha256()
with open(output_file, 'rb') as file_object:
chunk = 0
while chunk != b'':
chunk = file_object.read(1024)
h_sha256.update(chunk)
if h_sha256.hexdigest() == output["sha256"]:
print("sha256sum of downloaded file matches the sum that the API gave, jar is safe to use")
else:
raise error
2021-12-19 18:00:57 +07:00
# modrinth command functions
def modrinth(project, action, subAction):
if action == "list":
if subAction == "info":
print(parsers.modrinth.modInfo(project))
if subAction == "versions":
print(parsers.modrinth.getAllModVersionInfo(project))
2021-12-14 18:09:16 +07:00
2021-12-19 18:00:57 +07:00
# Determine which API parser to use:
2021-12-14 18:09:16 +07:00
if args.api == "paperMC":
paperMC(args.project, args.action, args.subAction)
2021-12-19 18:00:57 +07:00
elif args.api == "modrinth":
modrinth(args.project, args.action, args.subAction)
2021-12-14 18:09:16 +07:00
else:
print("Error: Unknown API: "+args.api)