Read from description.txt

This commit is contained in:
rubenwardy 2018-05-11 13:25:42 +01:00
parent 7aec5368d8
commit 5424f0aa34
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
2 changed files with 16 additions and 2 deletions

View File

@ -68,7 +68,8 @@ $(function() {
performTask("/tasks/getmeta/new/?url=" + encodeURI(repoURL)).then(function(result) {
console.log(result)
$("#name").val(result.name)
$("#name").val(result.name || "")
$("#title").val(result.title || "")
const desc = result.description || ""
if (desc.length > 0) {
const idx = desc.indexOf(".")

View File

@ -25,6 +25,12 @@ class GithubURLMaker:
def getModConfURL(self):
return self.baseUrl + "/mod.conf"
def getDescURL(self):
return self.baseUrl + "/description.txt"
def getScreenshotURL(self):
return self.baseUrl + "/screenshot.png"
def parseConf(string):
retval = {}
for line in string.split("\n"):
@ -55,7 +61,7 @@ def getMeta(urlstr):
try:
contents = urllib.request.urlopen(urlmaker.getModConfURL()).read().decode("utf-8")
conf = parseConf(contents)
for key in ["name", "description"]:
for key in ["name", "description", "title"]:
try:
result[key] = conf[key]
except KeyError:
@ -65,4 +71,11 @@ def getMeta(urlstr):
except OSError:
print("mod.conf does not exist")
if not "description" in result:
try:
contents = urllib.request.urlopen(urlmaker.getDescURL()).read().decode("utf-8")
result["description"] = contents.strip()
except OSError:
print("description.txt does not exist!")
return result