mirror of
https://git.0x0.st/mia/0x0.git
synced 2024-11-09 11:48:59 -05:00
Record file sizes in db
Moderation interface is going to use this.
This commit is contained in:
parent
6055a50948
commit
aaf0e4492a
2 changed files with 51 additions and 3 deletions
8
fhost.py
8
fhost.py
|
@ -140,6 +140,7 @@ class File(db.Model):
|
||||||
mgmt_token = db.Column(db.String)
|
mgmt_token = db.Column(db.String)
|
||||||
secret = db.Column(db.String)
|
secret = db.Column(db.String)
|
||||||
last_vscan = db.Column(db.DateTime)
|
last_vscan = db.Column(db.DateTime)
|
||||||
|
size = db.Column(db.BigInteger)
|
||||||
|
|
||||||
def __init__(self, sha256, ext, mime, addr, expiration, mgmt_token):
|
def __init__(self, sha256, ext, mime, addr, expiration, mgmt_token):
|
||||||
self.sha256 = sha256
|
self.sha256 = sha256
|
||||||
|
@ -288,6 +289,8 @@ class File(db.Model):
|
||||||
with open(p, "wb") as of:
|
with open(p, "wb") as of:
|
||||||
of.write(data)
|
of.write(data)
|
||||||
|
|
||||||
|
f.size = len(data)
|
||||||
|
|
||||||
if not f.nsfw_score and app.config["NSFW_DETECT"]:
|
if not f.nsfw_score and app.config["NSFW_DETECT"]:
|
||||||
f.nsfw_score = nsfw.detect(p)
|
f.nsfw_score = nsfw.detect(p)
|
||||||
|
|
||||||
|
@ -416,8 +419,7 @@ def manage_file(f):
|
||||||
except ValueError:
|
except ValueError:
|
||||||
abort(400)
|
abort(400)
|
||||||
|
|
||||||
fsize = f.getpath().stat().st_size
|
f.expiration = File.get_expiration(requested_expiration, f.size)
|
||||||
f.expiration = File.get_expiration(requested_expiration, fsize)
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
return "", 202
|
return "", 202
|
||||||
|
|
||||||
|
@ -455,7 +457,7 @@ def get(path, secret=None):
|
||||||
if app.config["FHOST_USE_X_ACCEL_REDIRECT"]:
|
if app.config["FHOST_USE_X_ACCEL_REDIRECT"]:
|
||||||
response = make_response()
|
response = make_response()
|
||||||
response.headers["Content-Type"] = f.mime
|
response.headers["Content-Type"] = f.mime
|
||||||
response.headers["Content-Length"] = fpath.stat().st_size
|
response.headers["Content-Length"] = f.size
|
||||||
response.headers["X-Accel-Redirect"] = "/" + str(fpath)
|
response.headers["X-Accel-Redirect"] = "/" + str(fpath)
|
||||||
else:
|
else:
|
||||||
response = send_from_directory(app.config["FHOST_STORAGE_PATH"], f.sha256, mimetype = f.mime)
|
response = send_from_directory(app.config["FHOST_STORAGE_PATH"], f.sha256, mimetype = f.mime)
|
||||||
|
|
46
migrations/versions/30bfe33aa328_add_file_size_field.py
Normal file
46
migrations/versions/30bfe33aa328_add_file_size_field.py
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
"""add file size field
|
||||||
|
|
||||||
|
Revision ID: 30bfe33aa328
|
||||||
|
Revises: 5cee97aab219
|
||||||
|
Create Date: 2022-12-13 22:32:12.242394
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '30bfe33aa328'
|
||||||
|
down_revision = '5cee97aab219'
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
from sqlalchemy.ext.automap import automap_base
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from flask import current_app
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
Base = automap_base()
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
op.add_column('file', sa.Column('size', sa.BigInteger(), nullable=True))
|
||||||
|
bind = op.get_bind()
|
||||||
|
Base.prepare(autoload_with=bind)
|
||||||
|
File = Base.classes.file
|
||||||
|
session = Session(bind=bind)
|
||||||
|
|
||||||
|
storage = Path(current_app.config["FHOST_STORAGE_PATH"])
|
||||||
|
|
||||||
|
updates = []
|
||||||
|
files = session.scalars(sa.select(File).where(sa.not_(File.removed)))
|
||||||
|
for f in files:
|
||||||
|
p = storage / f.sha256
|
||||||
|
if p.is_file():
|
||||||
|
updates.append({
|
||||||
|
"id" : f.id,
|
||||||
|
"size" : p.stat().st_size
|
||||||
|
})
|
||||||
|
|
||||||
|
session.bulk_update_mappings(File, updates)
|
||||||
|
session.commit()
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
op.drop_column('file', 'size')
|
Loading…
Reference in a new issue