2016-11-01 00:17:54 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2020-11-02 22:01:30 -05:00
|
|
|
"""
|
|
|
|
Copyright © 2020 Mia Herkt
|
|
|
|
Licensed under the EUPL, Version 1.2 or - as soon as approved
|
|
|
|
by the European Commission - subsequent versions of the EUPL
|
|
|
|
(the "License");
|
|
|
|
You may not use this work except in compliance with the License.
|
|
|
|
You may obtain a copy of the license at:
|
|
|
|
|
|
|
|
https://joinup.ec.europa.eu/software/page/eupl
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
|
|
either express or implied.
|
|
|
|
See the License for the specific language governing permissions
|
|
|
|
and limitations under the License.
|
|
|
|
"""
|
|
|
|
|
2020-12-28 22:06:52 -05:00
|
|
|
from flask import Flask, abort, make_response, redirect, request, send_from_directory, url_for, Response, render_template
|
2016-11-01 00:17:54 -04:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
2020-12-28 23:03:20 -05:00
|
|
|
from flask_migrate import Migrate
|
2020-12-28 22:06:52 -05:00
|
|
|
from jinja2.exceptions import *
|
2021-01-01 17:08:17 -05:00
|
|
|
from jinja2 import ChoiceLoader, FileSystemLoader
|
2016-11-01 00:17:54 -04:00
|
|
|
from hashlib import sha256
|
|
|
|
from magic import Magic
|
|
|
|
from mimetypes import guess_extension
|
2020-12-29 08:19:41 -05:00
|
|
|
import sys
|
2016-11-01 00:17:54 -04:00
|
|
|
import requests
|
|
|
|
from validators import url as url_valid
|
2020-12-29 06:40:11 -05:00
|
|
|
from pathlib import Path
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-28 22:05:34 -05:00
|
|
|
app = Flask(__name__, instance_relative_config=True)
|
|
|
|
app.config.update(
|
|
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False,
|
|
|
|
PREFERRED_URL_SCHEME = "https", # nginx users: make sure to have 'uwsgi_param UWSGI_SCHEME $scheme;' in your config
|
|
|
|
MAX_CONTENT_LENGTH = 256 * 1024 * 1024,
|
|
|
|
MAX_URL_LENGTH = 4096,
|
|
|
|
USE_X_SENDFILE = False,
|
|
|
|
FHOST_USE_X_ACCEL_REDIRECT = True, # expect nginx by default
|
|
|
|
FHOST_STORAGE_PATH = "up",
|
|
|
|
FHOST_MAX_EXT_LENGTH = 9,
|
|
|
|
FHOST_EXT_OVERRIDE = {
|
|
|
|
"audio/flac" : ".flac",
|
|
|
|
"image/gif" : ".gif",
|
|
|
|
"image/jpeg" : ".jpg",
|
|
|
|
"image/png" : ".png",
|
|
|
|
"image/svg+xml" : ".svg",
|
|
|
|
"video/webm" : ".webm",
|
|
|
|
"video/x-matroska" : ".mkv",
|
|
|
|
"application/octet-stream" : ".bin",
|
|
|
|
"text/plain" : ".log",
|
|
|
|
"text/plain" : ".txt",
|
|
|
|
"text/x-diff" : ".diff",
|
|
|
|
},
|
|
|
|
FHOST_MIME_BLACKLIST = [
|
|
|
|
"application/x-dosexec",
|
|
|
|
"application/java-archive",
|
|
|
|
"application/java-vm"
|
|
|
|
],
|
|
|
|
FHOST_UPLOAD_BLACKLIST = None,
|
|
|
|
NSFW_DETECT = False,
|
|
|
|
NSFW_THRESHOLD = 0.608,
|
|
|
|
URL_ALPHABET = "DEQhd2uFteibPwq0SWBInTpA_jcZL5GKz3YCR14Ulk87Jors9vNHgfaOmMXy6Vx-",
|
|
|
|
)
|
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
if not app.config["TESTING"]:
|
|
|
|
app.config.from_pyfile("config.py")
|
2021-01-01 17:08:17 -05:00
|
|
|
app.jinja_loader = ChoiceLoader([
|
|
|
|
FileSystemLoader(str(Path(app.instance_path) / "templates")),
|
|
|
|
app.jinja_loader
|
|
|
|
])
|
2020-12-28 22:05:34 -05:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
if app.config["DEBUG"]:
|
|
|
|
app.config["FHOST_USE_X_ACCEL_REDIRECT"] = False
|
2017-10-26 23:22:11 -04:00
|
|
|
|
|
|
|
if app.config["NSFW_DETECT"]:
|
|
|
|
from nsfw_detect import NSFWDetector
|
|
|
|
nsfw = NSFWDetector()
|
|
|
|
|
2016-11-01 00:17:54 -04:00
|
|
|
try:
|
|
|
|
mimedetect = Magic(mime=True, mime_encoding=False)
|
|
|
|
except:
|
|
|
|
print("""Error: You have installed the wrong version of the 'magic' module.
|
|
|
|
Please install python-magic.""")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
db = SQLAlchemy(app)
|
|
|
|
migrate = Migrate(app, db)
|
|
|
|
|
|
|
|
class URL(db.Model):
|
|
|
|
id = db.Column(db.Integer, primary_key = True)
|
|
|
|
url = db.Column(db.UnicodeText, unique = True)
|
|
|
|
|
|
|
|
def __init__(self, url):
|
|
|
|
self.url = url
|
|
|
|
|
|
|
|
def getname(self):
|
2021-12-01 07:25:33 -05:00
|
|
|
return su.enbase(self.id)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2017-10-26 23:22:11 -04:00
|
|
|
def geturl(self):
|
|
|
|
return url_for("get", path=self.getname(), _external=True) + "\n"
|
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
def get(url):
|
|
|
|
u = URL.query.filter_by(url=url).first()
|
|
|
|
|
|
|
|
if not u:
|
|
|
|
u = URL(url)
|
|
|
|
db.session.add(u)
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return u
|
|
|
|
|
2016-11-01 00:17:54 -04:00
|
|
|
class File(db.Model):
|
|
|
|
id = db.Column(db.Integer, primary_key = True)
|
|
|
|
sha256 = db.Column(db.String, unique = True)
|
|
|
|
ext = db.Column(db.UnicodeText)
|
|
|
|
mime = db.Column(db.UnicodeText)
|
|
|
|
addr = db.Column(db.UnicodeText)
|
|
|
|
removed = db.Column(db.Boolean, default=False)
|
2017-10-26 23:22:11 -04:00
|
|
|
nsfw_score = db.Column(db.Float)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
def __init__(self, sha256, ext, mime, addr):
|
2016-11-01 00:17:54 -04:00
|
|
|
self.sha256 = sha256
|
|
|
|
self.ext = ext
|
|
|
|
self.mime = mime
|
|
|
|
self.addr = addr
|
|
|
|
|
|
|
|
def getname(self):
|
2021-12-01 07:25:33 -05:00
|
|
|
return u"{0}{1}".format(su.enbase(self.id), self.ext)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2017-10-26 23:22:11 -04:00
|
|
|
def geturl(self):
|
|
|
|
n = self.getname()
|
|
|
|
|
|
|
|
if self.nsfw_score and self.nsfw_score > app.config["NSFW_THRESHOLD"]:
|
|
|
|
return url_for("get", path=n, _external=True, _anchor="nsfw") + "\n"
|
|
|
|
else:
|
|
|
|
return url_for("get", path=n, _external=True) + "\n"
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
def store(file_, addr):
|
2022-08-10 23:49:46 -04:00
|
|
|
data = file_.read()
|
2020-12-29 08:19:41 -05:00
|
|
|
digest = sha256(data).hexdigest()
|
|
|
|
|
|
|
|
def get_mime():
|
|
|
|
guess = mimedetect.from_buffer(data)
|
|
|
|
app.logger.debug(f"MIME - specified: '{file_.content_type}' - detected: '{guess}'")
|
|
|
|
|
|
|
|
if not file_.content_type or not "/" in file_.content_type or file_.content_type == "application/octet-stream":
|
|
|
|
mime = guess
|
|
|
|
else:
|
|
|
|
mime = file_.content_type
|
|
|
|
|
|
|
|
if mime in app.config["FHOST_MIME_BLACKLIST"] or guess in app.config["FHOST_MIME_BLACKLIST"]:
|
|
|
|
abort(415)
|
|
|
|
|
|
|
|
if mime.startswith("text/") and not "charset" in mime:
|
|
|
|
mime += "; charset=utf-8"
|
|
|
|
|
|
|
|
return mime
|
|
|
|
|
|
|
|
def get_ext(mime):
|
|
|
|
ext = "".join(Path(file_.filename).suffixes[-2:])
|
2022-01-01 15:46:41 -05:00
|
|
|
gmime = mime.split(";")[0]
|
2020-12-29 08:19:41 -05:00
|
|
|
guess = guess_extension(gmime)
|
|
|
|
|
|
|
|
app.logger.debug(f"extension - specified: '{ext}' - detected: '{guess}'")
|
|
|
|
|
|
|
|
if not ext:
|
|
|
|
if gmime in app.config["FHOST_EXT_OVERRIDE"]:
|
|
|
|
ext = app.config["FHOST_EXT_OVERRIDE"][gmime]
|
|
|
|
else:
|
|
|
|
ext = guess_extension(gmime)
|
|
|
|
|
|
|
|
return ext[:app.config["FHOST_MAX_EXT_LENGTH"]] or ".bin"
|
|
|
|
|
|
|
|
f = File.query.filter_by(sha256=digest).first()
|
|
|
|
|
|
|
|
if f:
|
|
|
|
if f.removed:
|
|
|
|
abort(451)
|
|
|
|
else:
|
|
|
|
mime = get_mime()
|
|
|
|
ext = get_ext(mime)
|
|
|
|
f = File(digest, ext, mime, addr)
|
|
|
|
|
|
|
|
f.addr = addr
|
|
|
|
|
|
|
|
storage = Path(app.config["FHOST_STORAGE_PATH"])
|
|
|
|
storage.mkdir(parents=True, exist_ok=True)
|
|
|
|
p = storage / digest
|
|
|
|
|
|
|
|
if not p.is_file():
|
2022-08-10 23:49:46 -04:00
|
|
|
with open(p, "wb") as of:
|
|
|
|
of.write(data)
|
2020-12-29 08:19:41 -05:00
|
|
|
else:
|
|
|
|
p.touch()
|
|
|
|
|
|
|
|
if not f.nsfw_score and app.config["NSFW_DETECT"]:
|
|
|
|
f.nsfw_score = nsfw.detect(p)
|
|
|
|
|
|
|
|
db.session.add(f)
|
|
|
|
db.session.commit()
|
|
|
|
return f
|
|
|
|
|
2021-12-01 07:25:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
class UrlEncoder(object):
|
|
|
|
def __init__(self,alphabet, min_length):
|
|
|
|
self.alphabet = alphabet
|
|
|
|
self.min_length = min_length
|
|
|
|
|
|
|
|
def enbase(self, x):
|
|
|
|
n = len(self.alphabet)
|
|
|
|
str = ""
|
|
|
|
while x > 0:
|
|
|
|
str = (self.alphabet[int(x % n)]) + str
|
|
|
|
x = int(x // n)
|
|
|
|
padding = self.alphabet[0] * (self.min_length - len(str))
|
|
|
|
return '%s%s' % (padding, str)
|
|
|
|
|
|
|
|
def debase(self, x):
|
|
|
|
n = len(self.alphabet)
|
|
|
|
result = 0
|
|
|
|
for i, c in enumerate(reversed(x)):
|
|
|
|
result += self.alphabet.index(c) * (n ** i)
|
|
|
|
return result
|
|
|
|
|
|
|
|
su = UrlEncoder(alphabet=app.config["URL_ALPHABET"], min_length=1)
|
|
|
|
|
2017-01-01 14:26:09 -05:00
|
|
|
def fhost_url(scheme=None):
|
|
|
|
if not scheme:
|
|
|
|
return url_for(".fhost", _external=True).rstrip("/")
|
|
|
|
else:
|
|
|
|
return url_for(".fhost", _external=True, _scheme=scheme).rstrip("/")
|
|
|
|
|
|
|
|
def is_fhost_url(url):
|
|
|
|
return url.startswith(fhost_url()) or url.startswith(fhost_url("https"))
|
|
|
|
|
2016-11-01 00:17:54 -04:00
|
|
|
def shorten(url):
|
|
|
|
if len(url) > app.config["MAX_URL_LENGTH"]:
|
|
|
|
abort(414)
|
|
|
|
|
2017-01-01 15:03:38 -05:00
|
|
|
if not url_valid(url) or is_fhost_url(url) or "\n" in url:
|
2016-11-01 00:17:54 -04:00
|
|
|
abort(400)
|
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
u = URL.get(url)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
return u.geturl()
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2017-02-02 22:10:58 -05:00
|
|
|
def in_upload_bl(addr):
|
2020-12-28 22:05:34 -05:00
|
|
|
if app.config["FHOST_UPLOAD_BLACKLIST"]:
|
2022-08-01 12:26:35 -04:00
|
|
|
with app.open_instance_resource(app.config["FHOST_UPLOAD_BLACKLIST"], "r") as bl:
|
2017-02-02 22:10:58 -05:00
|
|
|
check = addr.lstrip("::ffff:")
|
|
|
|
for l in bl.readlines():
|
|
|
|
if not l.startswith("#"):
|
|
|
|
if check == l.rstrip():
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2016-11-01 00:17:54 -04:00
|
|
|
def store_file(f, addr):
|
2017-02-02 22:10:58 -05:00
|
|
|
if in_upload_bl(addr):
|
|
|
|
return "Your host is blocked from uploading files.\n", 451
|
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
sf = File.store(f, addr)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
return sf.geturl()
|
2016-11-01 00:17:54 -04:00
|
|
|
|
|
|
|
def store_url(url, addr):
|
2017-01-01 14:26:09 -05:00
|
|
|
if is_fhost_url(url):
|
2020-12-28 22:06:52 -05:00
|
|
|
abort(400)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2017-10-30 00:36:03 -04:00
|
|
|
h = { "Accept-Encoding" : "identity" }
|
|
|
|
r = requests.get(url, stream=True, verify=False, headers=h)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
r.raise_for_status()
|
2017-03-27 16:18:38 -04:00
|
|
|
except requests.exceptions.HTTPError as e:
|
2016-11-01 00:17:54 -04:00
|
|
|
return str(e) + "\n"
|
|
|
|
|
|
|
|
if "content-length" in r.headers:
|
|
|
|
l = int(r.headers["content-length"])
|
|
|
|
|
|
|
|
if l < app.config["MAX_CONTENT_LENGTH"]:
|
|
|
|
def urlfile(**kwargs):
|
|
|
|
return type('',(),kwargs)()
|
|
|
|
|
2022-08-10 23:49:46 -04:00
|
|
|
f = urlfile(read=r.raw.read, content_type=r.headers["content-type"], filename="")
|
2016-11-01 00:17:54 -04:00
|
|
|
|
|
|
|
return store_file(f, addr)
|
|
|
|
else:
|
2020-12-28 22:06:52 -05:00
|
|
|
abort(413)
|
2016-11-01 00:17:54 -04:00
|
|
|
else:
|
2020-12-28 22:06:52 -05:00
|
|
|
abort(411)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
|
|
|
@app.route("/<path:path>")
|
|
|
|
def get(path):
|
2020-12-29 08:39:56 -05:00
|
|
|
path = Path(path.split("/", 1)[0])
|
2020-12-29 08:19:41 -05:00
|
|
|
sufs = "".join(path.suffixes[-2:])
|
|
|
|
name = path.name[:-len(sufs) or None]
|
|
|
|
id = su.debase(name)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
if sufs:
|
2016-11-01 00:17:54 -04:00
|
|
|
f = File.query.get(id)
|
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
if f and f.ext == sufs:
|
2016-11-01 00:17:54 -04:00
|
|
|
if f.removed:
|
2020-12-28 22:06:52 -05:00
|
|
|
abort(451)
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 08:19:41 -05:00
|
|
|
fpath = Path(app.config["FHOST_STORAGE_PATH"]) / f.sha256
|
2016-11-01 00:17:54 -04:00
|
|
|
|
2020-12-29 06:40:11 -05:00
|
|
|
if not fpath.is_file():
|
2016-11-01 00:17:54 -04:00
|
|
|
abort(404)
|
|
|
|
|
|
|
|
if app.config["FHOST_USE_X_ACCEL_REDIRECT"]:
|
|
|
|
response = make_response()
|
|
|
|
response.headers["Content-Type"] = f.mime
|
2020-12-29 06:40:11 -05:00
|
|
|
response.headers["Content-Length"] = fpath.stat().st_size
|
2020-12-29 08:19:41 -05:00
|
|
|
response.headers["X-Accel-Redirect"] = "/" + str(fpath)
|
2016-11-01 00:17:54 -04:00
|
|
|
return response
|
|
|
|
else:
|
|
|
|
return send_from_directory(app.config["FHOST_STORAGE_PATH"], f.sha256, mimetype = f.mime)
|
|
|
|
else:
|
|
|
|
u = URL.query.get(id)
|
|
|
|
|
|
|
|
if u:
|
|
|
|
return redirect(u.url)
|
|
|
|
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
@app.route("/", methods=["GET", "POST"])
|
|
|
|
def fhost():
|
|
|
|
if request.method == "POST":
|
|
|
|
sf = None
|
|
|
|
|
|
|
|
if "file" in request.files:
|
|
|
|
return store_file(request.files["file"], request.remote_addr)
|
|
|
|
elif "url" in request.form:
|
|
|
|
return store_url(request.form["url"], request.remote_addr)
|
|
|
|
elif "shorten" in request.form:
|
|
|
|
return shorten(request.form["shorten"])
|
|
|
|
|
|
|
|
abort(400)
|
|
|
|
else:
|
2020-12-28 22:06:52 -05:00
|
|
|
return render_template("index.html")
|
2016-11-01 00:17:54 -04:00
|
|
|
|
|
|
|
@app.route("/robots.txt")
|
|
|
|
def robots():
|
|
|
|
return """User-agent: *
|
|
|
|
Disallow: /
|
|
|
|
"""
|
|
|
|
|
|
|
|
@app.errorhandler(400)
|
|
|
|
@app.errorhandler(404)
|
2020-12-28 22:06:52 -05:00
|
|
|
@app.errorhandler(411)
|
|
|
|
@app.errorhandler(413)
|
2016-11-01 00:17:54 -04:00
|
|
|
@app.errorhandler(414)
|
|
|
|
@app.errorhandler(415)
|
2020-12-28 22:06:52 -05:00
|
|
|
@app.errorhandler(451)
|
|
|
|
def ehandler(e):
|
|
|
|
try:
|
|
|
|
return render_template(f"{e.code}.html", id=id), e.code
|
|
|
|
except TemplateNotFound:
|
|
|
|
return "Segmentation fault\n", e.code
|