flask-server/kinolist/posters.py
2024-10-10 23:44:47 +02:00

33 lines
1.1 KiB
Python

#
# Copyright (c) 2024 bartholin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
from flask import (current_app, send_from_directory)
from hashlib import sha1
from pathlib import Path
from os import path
def save(name, content):
h = sha1(content).hexdigest()
filename = h + Path(name).suffix
file = open(path.join(current_app.config['UPLOAD_FOLDER'], filename), "wb")
file.write(content)
file.close()
return filename
def get(name):
return send_from_directory(current_app.config["UPLOAD_FOLDER"], name)