# 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 time
from modules import search
from modules import missing
def html(page, json):
# This function adds a rendering of the json into the page
free = search.is_free(json)
name = json.get("names", ["Unknown"])[0]
page = page + """
"""
page = page + "\n "
page = page + "\n "
try:
page = page + '\n '
except:
pass
page = page + "" + name + "\n"
page = page + "
\n \n\n"
page = page + """
"""
# Few words about it
comment = json.get("comment", "")
not_foss = ['open source', 'open-source']
if "open source" or "open-source" in comment.lower():
# Well... Here is a thing. Free Software, not open source.
where = comment.lower().find("open source")
# In case it has a slash in it.
if where == -1:
where = comment.lower().find("open-source")
ops = comment[where:where + 11]
if ops:
comment = comment.replace(ops,
"" + ops + "")
page = page + "\n
\n\n"
# I want to show nothing else from if it's proprietary
issues_files = list(os.listdir("data/issues"))
if "issues" in json and json["issues"]:
l = json.get("issues", [])
page = page + "Anti-Features / Problems:
"
page = page + ""
for i in l:
if i + ".html" not in issues_files:
page = page + "- " + i + "
"
else:
page = page + ''
page = page + "" + i + "
"
issuefile = open("data/issues/" + i + ".html")
page = page + "" + issuefile.read() + "
"
page = page + " "
page = page + "
"
if not free:
return page
# Links
page = page + """
"""
linksfilter = {"git": "source code", "fsd": "Free Software Directory"}
links = json.get("links", {})
for website in links:
if website in ["icon"]:
continue
link = links[website]
page = page + """
""" + linksfilter.get(website,
website).upper() + """
"""
page = page + """
"""
# Details
categories = {"generic_name": "Features",
"licenses": "License(s)",
"platforms": "Platforms",
"networks_read": "Accesses Data from",
"networks_write": "Interacts / Publishes to",
"formats_read": "Opens from File-Formats",
"formats_write": "Saves to File-Formats",
"interface": "Interface",
"languages": "Programming Languages"}
for c in categories:
l = json.get(c, [])
if not l:
continue
# I want to look whether this category has a list of files
alldata = list(os.listdir("data"))
allfiles = []
for folder in alldata:
if c.startswith(folder):
try:
allfiles = list(os.listdir("data/" + folder))
break
except:
pass
# Count matches
matches = 0
for i in l:
if i.startswith("*"):
matches += 1
if matches:
matchtext = "( " + str(matches) + " )"
else:
matchtext = ""
page = page + "\n\n "
page = page + "\n " + categories[c] + ": " + matchtext + "
"
for i in l:
matchtext = ""
if i.startswith("*"):
i = i[1:]
matchtext = " ( match ) "
if i + ".html" in allfiles:
datapage = open("data/" + folder + "/" + i + ".html")
page = page + """
"""
page = page + "\n"
page = page + " " + matchtext + i + "
\n"
page = page + " \n \n"
page = page + " " + datapage.read() + "\n"
page = page + "
\n \n "
else:
page = page + "\n " + matchtext + i + "\n
\n"
page = page + """
"""
return page
def suggestions(page, json):
# This function will render suggestions
page = page + """
Free Competitors:
"""
found = search.suggest(json)
biggest = 0
for i in found:
if i[0] > biggest:
biggest = i[0]
more = False
for i in found:
free = search.is_free(i[-1])
if not i[0] or i[-1]["names"] == json["names"] or not free:
continue
try:
frac = int(i[0]/biggest*100)
except:
frac = 0
if frac < 10 and not more: # Below 10% features match
page = page + """
Problematic Competitors:
"""
more = True
page = page +"""
"""
page = progress(page, frac/100, "Suggestion score: " + str(frac) + "%")
page = html(page, i[-1])
if more:
page = page + " "
page = page + "" # Close the suggestions-container
return page
def search_widget(page, address):
# Adds a search bar to the page
page = page + """
"""
return page
def source_code_link(page):
# Adds a source code link
page = page + """
"""
return page
def progress(page, frac, text=""):
# This will output a progress bar
page = page + """
"""+str(text)+"""
"""
return page
def stats(page, mis=False, data=[]):
# Graph will require some math to work.
# We are going to use CSS and HTML5 to
# draw it / interact with it.
spd = 60 * 60 * 24 # Seconds in each day
span = max(data) - min(data) # Time of seconds between first and last entry
days = span / spd # Time in days between first and last entry
# making sure there is at least something to show
if days < 20:
data.append(min(data) - (spd * 20))
spd = 60 * 60 * 24
span = max(data) - min(data)
days = span / spd
widthfrac = 100 / days # the % to use for the width of each div
# Count how much hits happen per each day
biggest = 0
day_counts = []
for d in range(int(round(days))):
count = 0
for i in data:
day = min(data) + (d * spd)
if int(i) in range(int(day), int(day + spd)):
count += 1
if count > biggest:
biggest = count
day_counts.append(count)
# Render them
page = page + ""
for n, d in enumerate(day_counts):
if n == 0:
d -= 1
dayis = min(data) + (n * spd)
dayis = time.strftime("%Y/%m/%d", time.gmtime(dayis))
page = page + '\n'
frac = 100 - (d / biggest * 99)
page = page + '
\n\n'
page = page + '\n\n\n'
# If to render missing software
# TODO: We had a list of missing software which are known of,
# but people abused this feature to add a bunch of hilarious spam.
# maybe there is a way to design this better.
# if mis:
# page = page + missing.List_html()
page = source_code_link(page)
return page