mirror of
https://github.com/Neocky/pluGET.git
synced 2024-04-29 16:12:30 +00:00
Config support added; Added utilities.py; Clean up of code
Added: - .ini config support - lancher.bat to launch program - added utilities.py for help function Removed: - old ununsed input handlers functions - old ununsed download handler functions - removed many print()s
This commit is contained in:
parent
37d71e6b4b
commit
53ae3b5a64
2
launcher.bat
Normal file
2
launcher.bat
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
@ECHO OFF
|
||||||
|
py "%~dp0\src\handle_input.py"
|
37
src/handle_config.py
Normal file
37
src/handle_config.py
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# handles the config and everything around it
|
||||||
|
import sys
|
||||||
|
import configparser
|
||||||
|
import os.path
|
||||||
|
|
||||||
|
from consoleoutput import oColors
|
||||||
|
|
||||||
|
|
||||||
|
def checkConfig():
|
||||||
|
configAvailable = os.path.isfile("./config.ini")
|
||||||
|
if not configAvailable:
|
||||||
|
createConfig()
|
||||||
|
print(oColors.brightRed + "Config created. Edit config before executing again!" + oColors.standardWhite)
|
||||||
|
input("Press any key + enter to exit...")
|
||||||
|
sys.exit()
|
||||||
|
|
||||||
|
class configValues:
|
||||||
|
config = configparser.ConfigParser()
|
||||||
|
config.sections()
|
||||||
|
config.read("config.ini")
|
||||||
|
pathToPluginFolder = config['General']['PathToPluginFolder']
|
||||||
|
return configValues
|
||||||
|
|
||||||
|
|
||||||
|
def createConfig():
|
||||||
|
config = configparser.ConfigParser(allow_no_value=True)
|
||||||
|
config['General'] = {}
|
||||||
|
config['General'][';'] = 'If a local plugin folder exists (True/False): (If false use sftp)'
|
||||||
|
config['General']['LocalPluginFolder'] = 'True'
|
||||||
|
config['General']['PathToPluginFolder'] = 'C:\\Users\\USER\\Desktop\\plugins'
|
||||||
|
config['Remote Server'] = {}
|
||||||
|
config['Remote Server']['Server'] = '0.0.0.0'
|
||||||
|
config['Remote Server']['Username'] = 'user'
|
||||||
|
config['Remote Server']['Password'] = 'longpassword'
|
||||||
|
|
||||||
|
with open('./config.ini', 'w') as configfile:
|
||||||
|
config.write(configfile)
|
@ -1,9 +1,10 @@
|
|||||||
import time
|
import time
|
||||||
import sys
|
import sys
|
||||||
from consoleoutput import consoleTitle, clearConsole, printMainMenu, oColors
|
from consoleoutput import consoleTitle, clearConsole, printMainMenu, oColors
|
||||||
from plugin_downloader import downloadPackageManual, apiCallTest, searchPackage, getPackageVersion
|
from plugin_downloader import searchPackage, getSpecificPackage
|
||||||
from plugin_updatechecker import updateInstalledPackage, checkInstalledPackage
|
from plugin_updatechecker import updateInstalledPackage, checkInstalledPackage
|
||||||
|
from handle_config import checkConfig
|
||||||
|
from utilities import getHelp
|
||||||
|
|
||||||
def createInputLists():
|
def createInputLists():
|
||||||
global COMMANDLIST
|
global COMMANDLIST
|
||||||
@ -11,7 +12,8 @@ def createInputLists():
|
|||||||
'get',
|
'get',
|
||||||
'update',
|
'update',
|
||||||
'check',
|
'check',
|
||||||
'exit'
|
'exit',
|
||||||
|
'help'
|
||||||
]
|
]
|
||||||
global INPUTSELECTEDOBJECT
|
global INPUTSELECTEDOBJECT
|
||||||
INPUTSELECTEDOBJECT = [
|
INPUTSELECTEDOBJECT = [
|
||||||
@ -23,17 +25,23 @@ def createInputLists():
|
|||||||
def handleInput(inputCommand, inputSelectedObject, inputParams):
|
def handleInput(inputCommand, inputSelectedObject, inputParams):
|
||||||
while True:
|
while True:
|
||||||
if inputCommand == 'get':
|
if inputCommand == 'get':
|
||||||
getPackageVersion(r"C:\\Users\USER\Desktop\\", inputSelectedObject, inputParams)
|
if inputSelectedObject.isdigit():
|
||||||
break
|
getSpecificPackage(inputSelectedObject, checkConfig().pathToPluginFolder, inputParams)
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
searchPackage(inputSelectedObject)
|
||||||
|
break
|
||||||
if inputCommand == 'update':
|
if inputCommand == 'update':
|
||||||
#if inputSelectedObject in INPUTSELECTEDOBJECT:
|
updateInstalledPackage(checkConfig().pathToPluginFolder, inputSelectedObject)
|
||||||
updateInstalledPackage(r'C:\\Users\\USER\\Desktop\\plugins', inputSelectedObject)
|
|
||||||
break
|
break
|
||||||
if inputCommand == 'check':
|
if inputCommand == 'check':
|
||||||
checkInstalledPackage(r'C:\\Users\\USER\\Desktop\\plugins', inputSelectedObject)
|
checkInstalledPackage(checkConfig().pathToPluginFolder, inputSelectedObject)
|
||||||
break
|
break
|
||||||
if inputCommand == 'exit':
|
if inputCommand == 'exit':
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
if inputCommand == 'help':
|
||||||
|
getHelp()
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
print(oColors.brightRed + "Command not found. Please try again." + oColors.standardWhite)
|
print(oColors.brightRed + "Command not found. Please try again." + oColors.standardWhite)
|
||||||
getInput()
|
getInput()
|
||||||
@ -55,43 +63,12 @@ def getInput():
|
|||||||
handleInput(inputCommand, inputSelectedObject, inputParams)
|
handleInput(inputCommand, inputSelectedObject, inputParams)
|
||||||
|
|
||||||
|
|
||||||
def inputOption(inputOptionString):
|
|
||||||
inputString = None
|
|
||||||
print(inputOptionString)
|
|
||||||
if inputOptionString == 1:
|
|
||||||
inputString = input("SpigotMC Ressource ID: ")
|
|
||||||
if inputOptionString == 2:
|
|
||||||
inputString = input("SpigotMC Ressource ID: ")
|
|
||||||
if inputOptionString == 3:
|
|
||||||
inputString = input(" SpigotMC Ressource Name: ")
|
|
||||||
print("ich bin ein test")
|
|
||||||
return inputString
|
|
||||||
|
|
||||||
|
|
||||||
def handleInputOLD(inputString):
|
|
||||||
if inputString == "1":
|
|
||||||
downloadPackageManual()
|
|
||||||
if inputString == "2":
|
|
||||||
ressourceId = inputOption(2)
|
|
||||||
apiCallTest(ressourceId)
|
|
||||||
if inputString == "3":
|
|
||||||
ressourceName = inputOption(3)
|
|
||||||
searchPackage(ressourceName)
|
|
||||||
if inputString == "4":
|
|
||||||
#getLatestPackageVersionInteractive(r"C:\\Users\USER\Desktop\\")
|
|
||||||
print("4")
|
|
||||||
if inputString == "5":
|
|
||||||
#updateAllInstalledPackages(r'C:\\Users\\USER\\Desktop\\plugins')
|
|
||||||
print("5")
|
|
||||||
|
|
||||||
|
|
||||||
def inputMainMenu():
|
def inputMainMenu():
|
||||||
createInputLists()
|
|
||||||
clearConsole()
|
clearConsole()
|
||||||
|
checkConfig()
|
||||||
|
createInputLists()
|
||||||
printMainMenu()
|
printMainMenu()
|
||||||
getInput()
|
getInput()
|
||||||
#inputSt = input(" pluGET >> ")
|
|
||||||
#handleInputOLD(inputSt)
|
|
||||||
|
|
||||||
|
|
||||||
def outputTest():
|
def outputTest():
|
||||||
@ -110,7 +87,6 @@ def outputTest():
|
|||||||
input("Press key to end program...")
|
input("Press key to end program...")
|
||||||
|
|
||||||
|
|
||||||
#createCloudScraperInstance()
|
|
||||||
consoleTitle()
|
consoleTitle()
|
||||||
inputMainMenu()
|
inputMainMenu()
|
||||||
outputTest()
|
outputTest()
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
import urllib.request
|
import urllib.request
|
||||||
import cgi
|
from urllib.error import HTTPError
|
||||||
import re
|
import re
|
||||||
from web_request import doAPIRequest
|
from web_request import doAPIRequest
|
||||||
|
from consoleoutput import oColors
|
||||||
|
from handle_config import checkConfig
|
||||||
|
|
||||||
|
|
||||||
def calculateFileSize(downloadFileSize):
|
def calculateFileSize(downloadFileSize):
|
||||||
@ -11,36 +13,6 @@ def calculateFileSize(downloadFileSize):
|
|||||||
return roundedFileSize
|
return roundedFileSize
|
||||||
|
|
||||||
|
|
||||||
# 28140 for Luckperms (Testing only)
|
|
||||||
def downloadPackageManual():
|
|
||||||
ressourceId = input("SpigotMC Ressource ID: ")
|
|
||||||
|
|
||||||
url = "https://api.spiget.org/v2/resources/" + ressourceId + "/download"
|
|
||||||
#url2 = "https://api.spiget.org/v2/resources/" + ressourceId + "/versions/latest/download"
|
|
||||||
#print(url2)
|
|
||||||
#user_agent = 'Mozilla/5.0 (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11'
|
|
||||||
#header = { 'User-agent': 'Mozilla/5.0 (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11', 'Accept-Encoding': 'gzip, deflate, br' }
|
|
||||||
#req = urllib.request.Request(url2, headers=header)
|
|
||||||
#remotefile = urlopen(req)
|
|
||||||
remotefile = urllib.request.urlopen(url)
|
|
||||||
filecontent = remotefile.info()['Content-Disposition']
|
|
||||||
filesize = remotefile.info()['Content-Length']
|
|
||||||
# getting original filename
|
|
||||||
value, params = cgi.parse_header(filecontent)
|
|
||||||
filename = params["filename"]
|
|
||||||
|
|
||||||
# creating file path
|
|
||||||
path = r"C:\\Users\Jan-Luca\Desktop\\"
|
|
||||||
ppath = path + filename
|
|
||||||
|
|
||||||
# download file
|
|
||||||
urllib.request.urlretrieve(url, ppath)
|
|
||||||
|
|
||||||
filesizeData = calculateFileSize(filesize)
|
|
||||||
print(f"Downloadsize: {filesizeData} MB")
|
|
||||||
|
|
||||||
|
|
||||||
# 89273
|
|
||||||
def handleRegexPackageName(packageNameFull):
|
def handleRegexPackageName(packageNameFull):
|
||||||
packageNameFull2 = packageNameFull
|
packageNameFull2 = packageNameFull
|
||||||
# trims the part of the package that has for example "[1.1 Off]" in it
|
# trims the part of the package that has for example "[1.1 Off]" in it
|
||||||
@ -49,17 +21,14 @@ def handleRegexPackageName(packageNameFull):
|
|||||||
if unwantedpackageNamematch:
|
if unwantedpackageNamematch:
|
||||||
unwantedpackageNameString = unwantedpackageName.group()
|
unwantedpackageNameString = unwantedpackageName.group()
|
||||||
packageNameFull2 = packageNameFull.replace(unwantedpackageNameString, '')
|
packageNameFull2 = packageNameFull.replace(unwantedpackageNameString, '')
|
||||||
print(packageNameFull2)
|
|
||||||
print("packageNameFull2")
|
|
||||||
# gets the real packagename "word1 & word2" is not supported only gets word 1
|
# gets the real packagename "word1 & word2" is not supported only gets word 1
|
||||||
packageName = re.search(r'([a-zA-Z]\d*)+(\s?\-*\_*[a-zA-Z]\d*\+*\-*\'*)+', packageNameFull2)
|
packageName = re.search(r'([a-zA-Z]\d*)+(\s?\-*\_*[a-zA-Z]\d*\+*\-*\'*)+', packageNameFull2)
|
||||||
packageNameFullString = packageName.group()
|
packageNameFullString = packageName.group()
|
||||||
packageNameOnly = packageNameFullString.replace(' ', '')
|
packageNameOnly = packageNameFullString.replace(' ', '')
|
||||||
#print(packageNameOnly)
|
|
||||||
#print("packageNameOnly")
|
|
||||||
return packageNameOnly
|
return packageNameOnly
|
||||||
|
|
||||||
|
|
||||||
|
# TODO ununsed function
|
||||||
def getlatestVersion(packageId):
|
def getlatestVersion(packageId):
|
||||||
url = f"https://api.spiget.org/v2/resources/{packageId}/versions/latest"
|
url = f"https://api.spiget.org/v2/resources/{packageId}/versions/latest"
|
||||||
response = doAPIRequest(url)
|
response = doAPIRequest(url)
|
||||||
@ -67,20 +36,7 @@ def getlatestVersion(packageId):
|
|||||||
return packageVersion
|
return packageVersion
|
||||||
|
|
||||||
|
|
||||||
def apiCallTest(ressourceId):
|
|
||||||
url = f"https://api.spiget.org/v2/resources/{ressourceId}"
|
|
||||||
response = doAPIRequest(url)
|
|
||||||
print(response)
|
|
||||||
packageName = response["name"]
|
|
||||||
packageTag = response["tag"]
|
|
||||||
print(packageName)
|
|
||||||
print(packageTag)
|
|
||||||
packageNameNew = handleRegexPackageName(packageName)
|
|
||||||
print(packageNameNew)
|
|
||||||
|
|
||||||
|
|
||||||
def getVersionID(packageId, packageVersion):
|
def getVersionID(packageId, packageVersion):
|
||||||
print(packageVersion)
|
|
||||||
if packageVersion == None or packageVersion == 'latest':
|
if packageVersion == None or packageVersion == 'latest':
|
||||||
url = f"https://api.spiget.org/v2/resources/{packageId}/versions/latest"
|
url = f"https://api.spiget.org/v2/resources/{packageId}/versions/latest"
|
||||||
response = doAPIRequest(url)
|
response = doAPIRequest(url)
|
||||||
@ -108,7 +64,6 @@ def getVersionName(packageId, versionId):
|
|||||||
def searchPackage(ressourceName):
|
def searchPackage(ressourceName):
|
||||||
url = f"https://api.spiget.org/v2/search/resources/{ressourceName}?field=name"
|
url = f"https://api.spiget.org/v2/search/resources/{ressourceName}?field=name"
|
||||||
packageName = doAPIRequest(url)
|
packageName = doAPIRequest(url)
|
||||||
print(url)
|
|
||||||
i = 1
|
i = 1
|
||||||
print("Index / Name / Description / Downloads")
|
print("Index / Name / Description / Downloads")
|
||||||
for ressource in packageName:
|
for ressource in packageName:
|
||||||
@ -118,20 +73,19 @@ def searchPackage(ressourceName):
|
|||||||
print(f" [{i}] {pName} / {pTag}/ {pDownloads}")
|
print(f" [{i}] {pName} / {pTag}/ {pDownloads}")
|
||||||
i = i + 1
|
i = i + 1
|
||||||
|
|
||||||
ressourceSelected = int(input(" Select your wanted Ressource: "))
|
ressourceSelected = int(input("Select your wanted Ressource: "))
|
||||||
ressourceSelected = ressourceSelected - 1
|
ressourceSelected = ressourceSelected - 1
|
||||||
fileInfo = packageName[ressourceSelected]["file"]
|
#fileInfo = packageName[ressourceSelected]["file"]
|
||||||
packageUrl = fileInfo["url"]
|
#packageUrl = fileInfo["url"]
|
||||||
ressourceId = packageName[ressourceSelected]["id"]
|
ressourceId = packageName[ressourceSelected]["id"]
|
||||||
print(packageUrl)
|
getSpecificPackage(ressourceId, checkConfig().pathToPluginFolder)
|
||||||
print(ressourceId)
|
|
||||||
|
|
||||||
|
|
||||||
def downloadSpecificVersion(ressourceId, downloadPath, versionID='latest'):
|
def downloadSpecificVersion(ressourceId, downloadPath, versionID='latest'):
|
||||||
print(versionID)
|
|
||||||
if versionID != 'latest':
|
if versionID != 'latest':
|
||||||
#url = f"https://spigotmc.org/resources/{ressourceId}/download?version={versionID}"
|
#url = f"https://spigotmc.org/resources/{ressourceId}/download?version={versionID}"
|
||||||
print("Sorry but specific version downloads aren't supported because of cloudflare protection. :(")
|
print(oColors.brightRed + "Sorry but specific version downloads aren't supported because of cloudflare protection. :(" + oColors.standardWhite)
|
||||||
|
print(oColors.brightRed + "Reverting to latest version." + oColors.standardWhite)
|
||||||
|
|
||||||
url = f"https://api.spiget.org/v2/resources/{ressourceId}/download"
|
url = f"https://api.spiget.org/v2/resources/{ressourceId}/download"
|
||||||
#url = f"https://api.spiget.org/v2/resources/{ressourceId}/versions/latest/download" #throws 403 forbidden error
|
#url = f"https://api.spiget.org/v2/resources/{ressourceId}/versions/latest/download" #throws 403 forbidden error
|
||||||
@ -140,26 +94,31 @@ def downloadSpecificVersion(ressourceId, downloadPath, versionID='latest'):
|
|||||||
filesize = remotefile.info()['Content-Length']
|
filesize = remotefile.info()['Content-Length']
|
||||||
urllib.request.urlretrieve(url, downloadPath)
|
urllib.request.urlretrieve(url, downloadPath)
|
||||||
filesizeData = calculateFileSize(filesize)
|
filesizeData = calculateFileSize(filesize)
|
||||||
print(f"File downloaded here: {downloadPath}")
|
|
||||||
print(f"Downloadsize: {filesizeData} KB")
|
print(f"Downloadsize: {filesizeData} KB")
|
||||||
|
print(f"File downloaded here: {downloadPath}")
|
||||||
|
|
||||||
|
|
||||||
def getPackageVersion(ressourceId, downloadPath, inputPackageVersion='latest'):
|
def getSpecificPackage(ressourceId, downloadPath, inputPackageVersion='latest'):
|
||||||
url = f"https://api.spiget.org/v2/resources/{ressourceId}"
|
url = f"https://api.spiget.org/v2/resources/{ressourceId}"
|
||||||
packageDetails = doAPIRequest(url)
|
packageDetails = doAPIRequest(url)
|
||||||
packageName = packageDetails["name"]
|
packageName = packageDetails["name"]
|
||||||
#packageTag = packageDetails["tag"]
|
|
||||||
packageNameNew = handleRegexPackageName(packageName)
|
packageNameNew = handleRegexPackageName(packageName)
|
||||||
versionId = getVersionID(ressourceId, inputPackageVersion)
|
versionId = getVersionID(ressourceId, inputPackageVersion)
|
||||||
packageVersion = getVersionName(ressourceId, versionId)
|
packageVersion = getVersionName(ressourceId, versionId)
|
||||||
#packageVersion = getlatestVersion(ressourceId)
|
#packageVersion = getlatestVersion(ressourceId)
|
||||||
packageDownloadName = f"{packageNameNew}-{packageVersion}.jar"
|
packageDownloadName = f"{packageNameNew}-{packageVersion}.jar"
|
||||||
downloadPackagePath = downloadPath + packageDownloadName
|
downloadPackagePath = f"{downloadPath}\\{packageDownloadName}"
|
||||||
|
|
||||||
if inputPackageVersion is None or inputPackageVersion == 'latest':
|
if inputPackageVersion is None or inputPackageVersion == 'latest':
|
||||||
downloadSpecificVersion(ressourceId=ressourceId, downloadPath=downloadPackagePath)
|
try:
|
||||||
|
downloadSpecificVersion(ressourceId=ressourceId, downloadPath=downloadPackagePath)
|
||||||
|
except HTTPError as err:
|
||||||
|
print(oColors.brightRed + f"Error: {err.code} - {err.reason}" + oColors.standardWhite)
|
||||||
else:
|
else:
|
||||||
downloadSpecificVersion(ressourceId, downloadPackagePath, versionId)
|
try:
|
||||||
|
downloadSpecificVersion(ressourceId, downloadPackagePath, versionId)
|
||||||
|
except HTTPError as err:
|
||||||
|
print(oColors.brightRed + f"Error: {err.code} - {err.reason}" + oColors.standardWhite)
|
||||||
|
|
||||||
# get latest update > https://api.spiget.org/v2/resources/28140/updates/latest
|
# get latest update > https://api.spiget.org/v2/resources/28140/updates/latest
|
||||||
# this also > https://api.spiget.org/v2/resources/28140/versions/latest
|
# this also > https://api.spiget.org/v2/resources/28140/versions/latest
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from consoleoutput import oColors #consoleTitle, clearConsole
|
from consoleoutput import oColors
|
||||||
from plugin_downloader import getPackageVersion #handleInput
|
from plugin_downloader import getSpecificPackage #handleInput
|
||||||
from web_request import doAPIRequest
|
from web_request import doAPIRequest
|
||||||
|
from handle_config import checkConfig
|
||||||
|
|
||||||
|
|
||||||
def createPluginList():
|
def createPluginList():
|
||||||
@ -46,9 +47,6 @@ def compareVersions(pluginId, pluginVersion):
|
|||||||
|
|
||||||
|
|
||||||
def checkInstalledPackage(pluginFolderPath, inputSelectedObject="all"):
|
def checkInstalledPackage(pluginFolderPath, inputSelectedObject="all"):
|
||||||
#if inputSelectedObject is not ('all', '*'):
|
|
||||||
# print(oColors.brightRed + "Only *all* as selected object is supported!" + oColors.standardWhite)
|
|
||||||
# inputSelectedObject = 'all'
|
|
||||||
createPluginList()
|
createPluginList()
|
||||||
pluginList = os.listdir(pluginFolderPath)
|
pluginList = os.listdir(pluginFolderPath)
|
||||||
i = 0
|
i = 0
|
||||||
@ -78,7 +76,7 @@ def checkInstalledPackage(pluginFolderPath, inputSelectedObject="all"):
|
|||||||
print(f"[{1}] {fileName} - {fileVersion} - {pluginIsOutdated}")
|
print(f"[{1}] {fileName} - {fileVersion} - {pluginIsOutdated}")
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
print(f"[{i+1}] {fileName} - {fileVersion} - {pluginIsOutdated}") # TODO find better way
|
print(f"[{i+1}] {fileName} - {fileVersion} - {pluginIsOutdated}") # TODO find better way for the 2 else
|
||||||
else:
|
else:
|
||||||
print(f"[{i+1}] {fileName} - {fileVersion} - {pluginIsOutdated}")
|
print(f"[{i+1}] {fileName} - {fileVersion} - {pluginIsOutdated}")
|
||||||
|
|
||||||
@ -97,12 +95,6 @@ def updateInstalledPackage(pluginFolderPath, inputSelectedObject='all'):
|
|||||||
fileVersion = getFileVersion(plugin)
|
fileVersion = getFileVersion(plugin)
|
||||||
pluginId = getInstalledPlugin(fileName, fileVersion)
|
pluginId = getInstalledPlugin(fileName, fileVersion)
|
||||||
pluginIdStr = str(pluginId)
|
pluginIdStr = str(pluginId)
|
||||||
print(f"name: {fileName}")
|
|
||||||
print(f"version: {fileVersion}")
|
|
||||||
# debug purpose
|
|
||||||
print(inputSelectedObject)
|
|
||||||
print(INSTALLEDPLUGINLIST)
|
|
||||||
print(f"pluginId: {pluginId}")
|
|
||||||
|
|
||||||
if pluginId == None:
|
if pluginId == None:
|
||||||
print(oColors.brightRed + "Couldn't find plugin id. Sorry :(" + oColors.standardWhite)
|
print(oColors.brightRed + "Couldn't find plugin id. Sorry :(" + oColors.standardWhite)
|
||||||
@ -110,16 +102,20 @@ def updateInstalledPackage(pluginFolderPath, inputSelectedObject='all'):
|
|||||||
|
|
||||||
if inputSelectedObject == pluginIdStr or re.search(inputSelectedObject, fileName, re.IGNORECASE):
|
if inputSelectedObject == pluginIdStr or re.search(inputSelectedObject, fileName, re.IGNORECASE):
|
||||||
print(f"Updating: {fileName}")
|
print(f"Updating: {fileName}")
|
||||||
os.remove(f"C:\\Users\\USER\\Desktop\\plugins\\{plugin}")
|
pluginPath = checkConfig().pathToPluginFolder
|
||||||
getPackageVersion(pluginId, r"C:\\Users\\USER\\Desktop\\plugins\\")
|
pluginPath = f"{pluginPath}\\{plugin}"
|
||||||
|
os.remove(pluginPath)
|
||||||
|
getSpecificPackage(pluginId, checkConfig().pathToPluginFolder)
|
||||||
break
|
break
|
||||||
|
|
||||||
if inputSelectedObject == 'all':
|
if inputSelectedObject == 'all':
|
||||||
if INSTALLEDPLUGINLIST[i][2] == True:
|
if INSTALLEDPLUGINLIST[i][2] == True:
|
||||||
print("Deleting old plugin...")
|
print("Deleting old plugin...")
|
||||||
os.remove(f"C:\\Users\\USER\\Desktop\\plugins\\{plugin}")
|
pluginPath = checkConfig().pathToPluginFolder
|
||||||
|
pluginPath = f"{pluginPath}\\{plugin}"
|
||||||
|
os.remove(pluginPath)
|
||||||
print("Downloading new plugin...")
|
print("Downloading new plugin...")
|
||||||
getPackageVersion(pluginId, r"C:\\Users\\USER\\Desktop\\plugins\\")
|
getSpecificPackage(pluginId, checkConfig().pathToPluginFolder)
|
||||||
i = i + 1
|
i = i + 1
|
||||||
#print(INSTALLEDPLUGINLIST[1][0])
|
#print(INSTALLEDPLUGINLIST[1][0])
|
||||||
#getLatestPackageVersion(pluginID, r"C:\\Users\USER\Desktop\\plugins\\")
|
#getLatestPackageVersion(pluginID, r"C:\\Users\USER\Desktop\\plugins\\")
|
||||||
@ -135,9 +131,8 @@ def getInstalledPlugin(localFileName, localFileVersion):
|
|||||||
for ressource in packageName:
|
for ressource in packageName:
|
||||||
if plugin_match_found == True:
|
if plugin_match_found == True:
|
||||||
break
|
break
|
||||||
pName = ressource["name"]
|
#pName = ressource["name"]
|
||||||
pID = ressource["id"]
|
pID = ressource["id"]
|
||||||
#print(f" [{i}] {pName} - {pID}")
|
|
||||||
url2 = f"https://api.spiget.org/v2/resources/{pID}/versions?size=100&sort=-name"
|
url2 = f"https://api.spiget.org/v2/resources/{pID}/versions?size=100&sort=-name"
|
||||||
packageVersions = doAPIRequest(url2)
|
packageVersions = doAPIRequest(url2)
|
||||||
for updates in packageVersions:
|
for updates in packageVersions:
|
||||||
|
9
src/utilities.py
Normal file
9
src/utilities.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# misc functions
|
||||||
|
from consoleoutput import oColors
|
||||||
|
|
||||||
|
def getHelp():
|
||||||
|
print(oColors.brightYellow+ "Need help?" + oColors.standardWhite)
|
||||||
|
print("Check the docs here:")
|
||||||
|
print("https://github.com/Neocky/pluGET")
|
||||||
|
print("Or go to the official discord.")
|
||||||
|
print("The link for discord can also be found on Github!")
|
Loading…
Reference in New Issue
Block a user