|
@@ -9,7 +9,7 @@ from threading import Thread
|
|
from typing import Union
|
|
from typing import Union
|
|
from bottle import (
|
|
from bottle import (
|
|
route, request, response,
|
|
route, request, response,
|
|
- redirect, abort,
|
|
+ redirect, abort,
|
|
template, static_file,
|
|
template, static_file,
|
|
FormsDict, HTTPError,
|
|
FormsDict, HTTPError,
|
|
)
|
|
)
|
|
@@ -43,9 +43,9 @@ def trend(key: str, forms: FormsDict, cache: Cache):
|
|
page = cache[key]
|
|
page = cache[key]
|
|
if page:
|
|
if page:
|
|
return page
|
|
return page
|
|
-
|
|
+
|
|
_, _, path, *_ = request.urlparts
|
|
_, _, path, *_ = request.urlparts
|
|
-
|
|
+
|
|
return cache.add(key, CachedLoadingPage(
|
|
return cache.add(key, CachedLoadingPage(
|
|
template("loading", progress=[]),
|
|
template("loading", progress=[]),
|
|
lambda queue: Thread(target=worker.trend, args=(
|
|
lambda queue: Thread(target=worker.trend, args=(
|
|
@@ -90,10 +90,10 @@ def tags(cur: Cursor[TupleRow], key: Union[int, str], forms: FormsDict, cache: C
|
|
return get_tags(cur, forms)
|
|
return get_tags(cur, forms)
|
|
|
|
|
|
CLIP_SIZE_LIMIT = 65535
|
|
CLIP_SIZE_LIMIT = 65535
|
|
-SCHEME = "http://"
|
|
+SCHEME = "https://"
|
|
HOST = ""
|
|
HOST = ""
|
|
-DOMAIN = "0.0.0.0"
|
|
+DOMAIN = "shandan.one"
|
|
-PORT = 6772
|
|
+PORT = ""
|
|
LOCATION = SCHEME + (f"{HOST}." if HOST else "") + DOMAIN + (f":{PORT}" if PORT else "")
|
|
LOCATION = SCHEME + (f"{HOST}." if HOST else "") + DOMAIN + (f":{PORT}" if PORT else "")
|
|
|
|
|
|
@route('/clip', method=['GET', 'POST'])
|
|
@route('/clip', method=['GET', 'POST'])
|
|
@@ -122,20 +122,20 @@ def clip():
|
|
disabled=True if content else False,
|
|
disabled=True if content else False,
|
|
download=f'/clip/{_hash}' if content else None
|
|
download=f'/clip/{_hash}' if content else None
|
|
)
|
|
)
|
|
-
|
|
+
|
|
if request.method == 'POST':
|
|
if request.method == 'POST':
|
|
if 'paste' not in request.params:
|
|
if 'paste' not in request.params:
|
|
return abort(400, "Missing parameter: 'paste'")
|
|
return abort(400, "Missing parameter: 'paste'")
|
|
-
|
|
+
|
|
|
|
|
|
OVERHEAD = 1024
|
|
OVERHEAD = 1024
|
|
if 'paste' not in request.query and request.content_length == -1 or request.content_length > CLIP_SIZE_LIMIT + OVERHEAD:
|
|
if 'paste' not in request.query and request.content_length == -1 or request.content_length > CLIP_SIZE_LIMIT + OVERHEAD:
|
|
return abort(418, f"Paste size can not exceed {CLIP_SIZE_LIMIT}")
|
|
return abort(418, f"Paste size can not exceed {CLIP_SIZE_LIMIT}")
|
|
-
|
|
+
|
|
content = request.params['paste'].encode('utf-8')
|
|
content = request.params['paste'].encode('utf-8')
|
|
if len(content) > CLIP_SIZE_LIMIT:
|
|
if len(content) > CLIP_SIZE_LIMIT:
|
|
return abort(418, f"Paste size can not exceed {CLIP_SIZE_LIMIT}")
|
|
return abort(418, f"Paste size can not exceed {CLIP_SIZE_LIMIT}")
|
|
-
|
|
+
|
|
_bytes = blake(content, person='clip'.encode('utf-8'))
|
|
_bytes = blake(content, person='clip'.encode('utf-8'))
|
|
_b32 = bytes_to_base32(_bytes)
|
|
_b32 = bytes_to_base32(_bytes)
|
|
directory = f'app/rest/static/{_b32}'
|
|
directory = f'app/rest/static/{_b32}'
|
|
@@ -178,5 +178,5 @@ def get_clip(filename):
|
|
ret = validate(filename)
|
|
ret = validate(filename)
|
|
if isinstance(ret, HTTPError):
|
|
if isinstance(ret, HTTPError):
|
|
return ret
|
|
return ret
|
|
-
|
|
+
|
|
return static_file('/'.join([filename,]*2) + '.file', root='app/rest/static')
|
|
return static_file('/'.join([filename,]*2) + '.file', root='app/rest/static')
|