aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--src/server.py35
-rw-r--r--src/templates.py6
3 files changed, 22 insertions, 21 deletions
diff --git a/.gitignore b/.gitignore
index 1b64351..de6d4e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
__pycache__
-download
+files
db.sqlite3
diff --git a/src/server.py b/src/server.py
index 2cd6741..5927052 100644
--- a/src/server.py
+++ b/src/server.py
@@ -10,7 +10,7 @@ import utils
logger = logging.getLogger(__name__)
conn = sqlite3.connect('db.sqlite3')
-files_directory = 'download'
+files_directory = 'files'
authorized_key = os.environ['KEY']
class MyServer(http.server.BaseHTTPRequestHandler):
@@ -23,28 +23,27 @@ class MyServer(http.server.BaseHTTPRequestHandler):
case '/main.css':
self._serve_file('public/main.css', 'text/css')
case path:
- prefix = f'/{files_directory}/'
- if path.startswith(prefix):
- file_id = path[len(prefix):]
- res = db.get_file(conn, file_id)
- if res is None:
- self._serve_str(templates.not_found, 404, 'text/html')
- else:
- filename, _, content_length = res
- path = os.path.join(files_directory, file_id)
+ if path.endswith('?download'):
+ download = True
+ path = path[:-len('?download')]
+ else:
+ download = False
+
+ file_id = path[1:]
+ res = db.get_file(conn, file_id)
+ if res is None:
+ self._serve_str(templates.not_found, 404, 'text/html')
+ else:
+ filename, expires, content_length = res
+ disk_path = os.path.join(files_directory, file_id)
+ if download:
headers = [
('Content-Disposition', f'attachment; filename={filename}'),
('Content-Length', content_length)
]
- self._serve_file(path, 'application/octet-stream', headers)
- else:
- file_id = path[1:]
- res = db.get_file(conn, file_id)
- if res is None:
- self._serve_str(templates.not_found, 404, 'text/html')
+ self._serve_file(disk_path, 'application/octet-stream', headers)
else:
- filename, expires, _ = res
- href = os.path.join(files_directory, file_id)
+ href = f'{file_id}?download'
self._serve_str(templates.download(href, filename, expires), 200, 'text/html')
def do_POST(self):
diff --git a/src/templates.py b/src/templates.py
index 1308fc0..c605e57 100644
--- a/src/templates.py
+++ b/src/templates.py
@@ -1,4 +1,5 @@
import html
+import datetime
page: str = '''
<!doctype html>
@@ -79,13 +80,14 @@ index: str = f'''
'''
def download(href: str, filename: str, expires: str) -> str:
+ expires_in = datetime.datetime.strptime(expires, '%Y-%m-%d %H:%M:%S') - datetime.datetime.now()
return f'''
{page}
<div>
<a class="g-Link" href="{html.escape(href)}">{html.escape(filename)}</a>
<div>
- Expires: {html.escape(expires)}
+ Expires in {expires_in}
</div>
</div>
'''
@@ -93,5 +95,5 @@ def download(href: str, filename: str, expires: str) -> str:
not_found: str = f'''
{page}
- Sorry, the file you are looking for can not be found. It may have already expired.
+ Oops, not found!
'''