Upload files to 'modules'
This commit is contained in:
parent
bb78a7cc69
commit
2d12250bc3
2 changed files with 176 additions and 0 deletions
84
modules/render.py
Normal file
84
modules/render.py
Normal file
|
@ -0,0 +1,84 @@
|
|||
# THIS SOFTWARE IS A PART OF FREE COMPETITOR PROJECT
|
||||
# THE FOLLOWING SOURCE CODE I UNDER THE GNU
|
||||
# AGPL LICENSE V3 OR ANY LATER VERSION.
|
||||
|
||||
# This project is not for simple users, but for
|
||||
# web-masters and a like, so we are counting on
|
||||
# your ability to set it up and running.
|
||||
|
||||
from modules import search
|
||||
|
||||
def html(page, json):
|
||||
|
||||
# This function adds a rendering of the json into the page
|
||||
|
||||
free = False
|
||||
if "licenses" in json and json["licenses"]:
|
||||
free = True
|
||||
|
||||
page = page + "\n <h1>"
|
||||
try:
|
||||
page = page + '\n<img src="'+ json["links"]["icon"] + '" alt="Logo" style="width:50px;">'
|
||||
except:
|
||||
pass
|
||||
|
||||
# Name / Website link
|
||||
name = json.get("names",["Unknown"])[0]
|
||||
|
||||
|
||||
page = page + "\n" + name
|
||||
|
||||
page = page + "</h1>"
|
||||
|
||||
# Few words about it
|
||||
page = page + "<p>"+json.get("comment","")+"</p>"
|
||||
|
||||
# Links
|
||||
website = json.get("links",{}).get("website", "")
|
||||
if free and website:
|
||||
page = page + """
|
||||
<form action=\""""+website+"""\">
|
||||
<button type="submit">Website</button>
|
||||
</form>
|
||||
"""
|
||||
|
||||
git = json.get("links",{}).get("git", "")
|
||||
if git:
|
||||
page = page + """
|
||||
<form action=\""""+git+"""\">
|
||||
<button type="submit">Source Code</button>
|
||||
</form>
|
||||
"""
|
||||
|
||||
wikipedia = json.get("links",{}).get("wikipedia", "")
|
||||
if wikipedia:
|
||||
page = page + """
|
||||
<form action=\""""+wikipedia+"""\">
|
||||
<button type="submit">Wikipedia</button>
|
||||
</form>
|
||||
"""
|
||||
|
||||
|
||||
return page
|
||||
|
||||
def suggestions(page, json):
|
||||
|
||||
# This function will render suggestions
|
||||
|
||||
page = page + "<br><br><h1>Replacements:</h1><br><br>"
|
||||
|
||||
found = search.suggest(json)
|
||||
|
||||
for i in found:
|
||||
|
||||
free = False
|
||||
if "licenses" in i[-1] and i[-1]["licenses"]:
|
||||
free = True
|
||||
|
||||
print(i[-1].get("names", ["nothing"])[0])
|
||||
if not i[0] or i[-1] == json or not free:
|
||||
continue
|
||||
page = page + "<br><br>"
|
||||
page = html(page, i[-1])
|
||||
|
||||
return page
|
92
modules/search.py
Normal file
92
modules/search.py
Normal file
|
@ -0,0 +1,92 @@
|
|||
# THIS SOFTWARE IS A PART OF FREE COMPETITOR PROJECT
|
||||
# THE FOLLOWING SOURCE CODE I UNDER THE GNU
|
||||
# AGPL LICENSE V3 OR ANY LATER VERSION.
|
||||
|
||||
# This project is not for simple users, but for
|
||||
# web-masters and a like, so we are counting on
|
||||
# your ability to set it up and running.
|
||||
|
||||
import os
|
||||
import json
|
||||
import Levenshtein
|
||||
|
||||
|
||||
def search_app(name):
|
||||
|
||||
# This function output a json of an app that's the closest
|
||||
# match to the requested name.
|
||||
|
||||
closest = {}
|
||||
match = 0
|
||||
|
||||
all_apps = []
|
||||
for i in os.listdir("apps"):
|
||||
if i.endswith(".json"):
|
||||
|
||||
try:
|
||||
with open("apps/"+i) as json_file:
|
||||
idata = json.load(json_file)
|
||||
except Exception as e:
|
||||
print("Error!", e)
|
||||
idata = {}
|
||||
|
||||
all_apps.append(idata)
|
||||
# Round 1. By the name
|
||||
|
||||
for i in all_apps:
|
||||
for n in i.get("names",[]):
|
||||
m = Levenshtein.jaro_winkler(n.lower(), name.lower())
|
||||
if m > match and m > 0.49:
|
||||
closest = i
|
||||
match = m
|
||||
|
||||
if closest:
|
||||
return closest
|
||||
|
||||
# Round 2. By Generic name
|
||||
|
||||
for i in all_apps:
|
||||
for n in i.get("generic_name",[]):
|
||||
m = Levenshtein.jaro_winkler(n.lower(), name.lower())
|
||||
if m > match:
|
||||
closest = i
|
||||
match = m
|
||||
|
||||
if closest:
|
||||
return closest
|
||||
|
||||
def suggest(json_data):
|
||||
|
||||
# This function will suggest
|
||||
|
||||
|
||||
found = []
|
||||
all_apps = []
|
||||
for i in os.listdir("apps"):
|
||||
if i.endswith(".json"):
|
||||
|
||||
try:
|
||||
with open("apps/"+i) as json_file:
|
||||
idata = json.load(json_file)
|
||||
except Exception as e:
|
||||
print("Error!", e)
|
||||
idata = {}
|
||||
|
||||
all_apps.append(idata)
|
||||
|
||||
for i in all_apps:
|
||||
score = 0
|
||||
for c in ["generic_name", "networks_read", "networks_write", "formats_read", "formats_write"]:
|
||||
|
||||
for b in json_data.get(c, []):
|
||||
if b in i.get(c, []):
|
||||
score += 1
|
||||
print(score, "SCORE")
|
||||
found.append([score, i])
|
||||
|
||||
try:
|
||||
found = reversed(sorted(found))
|
||||
except:
|
||||
return []
|
||||
|
||||
return found
|
Loading…
Reference in a new issue