Compare commits

..

No commits in common. "b772ce8b7e79cfbf1b2558fb665ded298e5a1359" and "600edca8cd00fdedb98db26f3ff227ed454e9aa5" have entirely different histories.

4 changed files with 15 additions and 23 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,20 +1,16 @@
import pathlib
import aiohttp
from aiohttp import web
MAX_FILE_SIZE = 1024 * 1024 * 50 # 50Mb
UPLOAD_FOLDER_QUOTA = 10 * 1024 * 1024 * 1024 # 10Gb
UPLOAD_URL = "/"
UPLOAD_PATH = "uploads"
import asyncio
import pathlib
class Rupload(web.Application):
def __init__(
self,
upload_url: str = UPLOAD_URL,
upload_path: str = UPLOAD_PATH,
max_file_size: int = MAX_FILE_SIZE,
upload_folder_quota: int = UPLOAD_FOLDER_QUOTA,
upload_url: str = "/uploads/",
upload_path: str = "uploads",
max_file_size: int = 1024 * 1024 * 50,
upload_folder_quota: int = 10 * 1024 * 1024 * 1024,
):
self.upload_path = upload_path.rstrip("/")
self.max_file_size = max_file_size
@ -180,8 +176,6 @@ def get_images(path):
".gif",
".jpeg",
".bmp",
".webp",
".svg",
]:
images.append(image)
return images
@ -253,7 +247,9 @@ async def handle_upload(request: web.Request):
print(f"File {filename} deleted.")
return web.Response(
status=413,
text=f"File is too large. Maximum file size is {app.max_file_size} bytes.",
text="File is too large. Maximum file size is {} bytes.".format(
app.max_file_size
),
)
f.write(chunk)
print(f"File {filename} uploaded successfully.")
@ -285,9 +281,7 @@ async def handle_index(request: web.Request):
message += f'<a href="{url}">'
message += f"{url}</a>"
if not message:
message = (
"Any file type is allowed thus also binary/executable or source files."
)
message = "Any file type is allowed thus also binary/executable or source files."
if message:
message += "<br /><br />"
html_content = html_content.replace("[message]", message)
@ -295,10 +289,10 @@ async def handle_index(request: web.Request):
def create_app(
upload_url: str = UPLOAD_URL,
upload_path: str = UPLOAD_PATH,
max_file_size: int = MAX_FILE_SIZE,
upload_folder_quota: int = UPLOAD_FOLDER_QUOTA,
upload_url: str = "/",
upload_path: str = "upload",
max_file_size: int = 1024 * 1024 * 50,
upload_folder_quota: int = 10 * 1024 * 1024 * 1024,
):
app = Rupload(
upload_url=upload_url,

View File

@ -1,7 +1,5 @@
import argparse
from aiohttp import web
from rupload.app import create_app