35 lines
1.1 KiB
Python
35 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
|
|
import os
|
|
|
|
def save(name, content):
|
|
h = sha1(content).hexdigest()
|
|
filename = h + Path(name).suffix
|
|
file_path = os.path.join(current_app.config['UPLOAD_FOLDER'], filename)
|
|
|
|
with open(file_path, "wb") as file:
|
|
file.write(content)
|
|
|
|
return filename
|
|
|
|
def get(name):
|
|
return send_from_directory(current_app.config['UPLOAD_FOLDER'], name)
|