2023-06-07 09:53:21 +00:00
|
|
|
from django.http import HttpResponseNotFound
|
|
|
|
from django.shortcuts import render
|
|
|
|
import os, random
|
|
|
|
|
|
|
|
def image_dict_from_name_list(name_list: list[str]):
|
|
|
|
dict_list = []
|
|
|
|
for name in name_list:
|
|
|
|
url = name.split(".")
|
|
|
|
url.pop()
|
|
|
|
url = ".".join(url)
|
|
|
|
dict_list.append({
|
|
|
|
"name": name,
|
|
|
|
"url": url
|
|
|
|
}
|
|
|
|
)
|
|
|
|
return dict_list
|
|
|
|
|
|
|
|
def index(request):
|
|
|
|
# Get random ad from ad dir
|
|
|
|
ad_list = os.listdir(os.path.join(os.path.dirname(os.path.dirname(__file__)), "webpage", "static/ads/hor/"))
|
|
|
|
ad = random.choice(ad_list)
|
|
|
|
# Get list of 81x33 icons
|
|
|
|
banner_list = image_dict_from_name_list(os.listdir(os.path.join(os.path.dirname(os.path.dirname(__file__)), "webpage", "static/icons/88x31/")))
|
|
|
|
# Get list of funni gifs
|
2023-06-07 17:55:25 +00:00
|
|
|
gif_list = image_dict_from_name_list(os.listdir(os.path.join(os.path.dirname(os.path.dirname(__file__)), "webpage", "static/icons/gif/")))
|
|
|
|
# Get list of banners
|
|
|
|
banger_list = image_dict_from_name_list(os.listdir(os.path.join(os.path.dirname(os.path.dirname(__file__)), "webpage", "static/icons/banner/")))
|
2023-06-07 09:53:21 +00:00
|
|
|
if not ad or not banner_list or not gif_list:
|
|
|
|
return HttpResponseNotFound()
|
|
|
|
else:
|
|
|
|
context = {
|
2023-06-07 17:21:42 +00:00
|
|
|
"title": "THE INDEX",
|
2023-06-07 09:53:21 +00:00
|
|
|
"ad": ad,
|
|
|
|
"banner_list": banner_list,
|
2023-06-07 17:55:25 +00:00
|
|
|
"gif_list": gif_list,
|
|
|
|
"banger_list": banger_list,
|
2023-06-07 09:53:21 +00:00
|
|
|
}
|
|
|
|
return render(request,
|
|
|
|
"index.html", context)
|
2023-06-07 17:21:42 +00:00
|
|
|
|
|
|
|
def about(request):
|
|
|
|
return render(request, "about.html", {"title": "About Me"})
|