1
0
forked from cgcristi/aCloud

Update app.py

added raw support, probably works
This commit is contained in:
spitkov 2024-09-08 14:02:03 +02:00
parent a816d4aaeb
commit 55abf13aa9

254
app.py
View File

@ -1,125 +1,129 @@
from flask import Flask, request, jsonify, send_from_directory, render_template, url_for, redirect from flask import Flask, request, jsonify, send_from_directory, render_template, url_for, redirect
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
import shortuuid import shortuuid
import os import os
from datetime import datetime from datetime import datetime
app = Flask(__name__) app = Flask(__name__)
UPLOAD_FOLDER = './uploads' UPLOAD_FOLDER = './uploads'
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
if not os.path.exists(UPLOAD_FOLDER): if not os.path.exists(UPLOAD_FOLDER):
os.makedirs(UPLOAD_FOLDER) os.makedirs(UPLOAD_FOLDER)
data_store = {} data_store = {}
@app.route('/') @app.route('/')
def index(): def index():
return render_template('index.html') return render_template('index.html')
@app.route('/content/<vanity>') @app.route('/content/<vanity>')
def content(vanity): def content(vanity):
target = data_store.get(vanity) target = data_store.get(vanity)
if target: if target:
if target['type'] == 'pastebin': if target['type'] == 'pastebin':
return render_template('content.html', content=target['content'], created_at=target['created_at']) return render_template('content.html', content=target['content'], created_at=target['created_at'])
elif target['type'] == 'file': elif target['type'] == 'file':
file_path = os.path.join(app.config['UPLOAD_FOLDER'], f'{vanity}_{target["filename"]}') file_path = os.path.join(app.config['UPLOAD_FOLDER'], f'{vanity}_{target["filename"]}')
file_info = { file_info = {
'name': target['filename'], 'name': target['filename'],
'size': os.path.getsize(file_path), 'size': os.path.getsize(file_path),
'modified_at': datetime.fromtimestamp(os.path.getmtime(file_path)).strftime('%Y-%m-%d %H:%M:%S'), 'modified_at': datetime.fromtimestamp(os.path.getmtime(file_path)).strftime('%Y-%m-%d %H:%M:%S'),
'url': url_for('download_file', vanity=vanity) 'url': url_for('download_file', vanity=vanity)
} }
return render_template('file.html', **file_info) return render_template('file.html', **file_info)
elif target['type'] == 'url': elif target['type'] == 'url':
return render_template('content.html', url=target['url']) return render_template('content.html', url=target['url'])
return 'Not Found', 404 return 'Not Found', 404
@app.route('/download/<vanity>', methods=['GET']) @app.route('/download/<vanity>', methods=['GET'])
def download_file(vanity): def download_file(vanity):
target = data_store.get(vanity) target = data_store.get(vanity)
if target and target['type'] == 'file': if target and target['type'] == 'file':
filename = f'{vanity}_{target["filename"]}' filename = f'{vanity}_{target["filename"]}'
return send_from_directory(app.config['UPLOAD_FOLDER'], filename, as_attachment=True) return send_from_directory(app.config['UPLOAD_FOLDER'], filename, as_attachment=True)
return 'Not Found', 404 return 'Not Found', 404
@app.route('/upload/pastebin', methods=['POST']) @app.route('/upload/pastebin', methods=['POST'])
def upload_pastebin(): def upload_pastebin():
content = request.form['content'] content = request.form['content']
vanity = shortuuid.uuid()[:6] vanity = shortuuid.uuid()[:6]
created_at = datetime.now().strftime('%Y-%m-%d %H:%M:%S') created_at = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
data_store[vanity] = {'type': 'pastebin', 'content': content, 'created_at': created_at} data_store[vanity] = {'type': 'pastebin', 'content': content, 'created_at': created_at}
html_content = render_template('content.html', content=content, created_at=created_at) html_content = render_template('content.html', content=content, created_at=created_at)
html_file_path = os.path.join('templates', f'{vanity}.html') html_file_path = os.path.join('templates', f'{vanity}.html')
with open(html_file_path, 'w') as f: with open(html_file_path, 'w') as f:
f.write(html_content) f.write(html_content)
html_content = render_template('raw.html', content=content)
return jsonify({'vanity': vanity}) html_file_path = os.path.join('templates', f'{vanity}raw.html')
with open(html_file_path, 'w') as f:
@app.route('/upload/file', methods=['POST']) f.write(html_content)
def upload_file():
if 'file' not in request.files: return jsonify({'vanity': vanity})
return 'No file part', 400
file = request.files['file'] @app.route('/upload/file', methods=['POST'])
if file.filename == '': def upload_file():
return 'No selected file', 400 if 'file' not in request.files:
if file: return 'No file part', 400
vanity = shortuuid.uuid()[:6] file = request.files['file']
filename = secure_filename(file.filename) if file.filename == '':
filepath = os.path.join(app.config['UPLOAD_FOLDER'], f'{vanity}_{filename}') return 'No selected file', 400
file.save(filepath) if file:
data_store[vanity] = {'type': 'file', 'filename': filename} vanity = shortuuid.uuid()[:6]
filename = secure_filename(file.filename)
filepath = os.path.join(app.config['UPLOAD_FOLDER'], f'{vanity}_{filename}')
file_info = { file.save(filepath)
'name': filename, data_store[vanity] = {'type': 'file', 'filename': filename}
'size': os.path.getsize(filepath),
'modified_at': datetime.fromtimestamp(os.path.getmtime(filepath)).strftime('%Y-%m-%d %H:%M:%S'),
'url': url_for('download_file', vanity=vanity) file_info = {
} 'name': filename,
html_content = render_template('file.html', **file_info) 'size': os.path.getsize(filepath),
html_file_path = os.path.join('templates', f'{vanity}.html') 'modified_at': datetime.fromtimestamp(os.path.getmtime(filepath)).strftime('%Y-%m-%d %H:%M:%S'),
with open(html_file_path, 'w') as f: 'url': url_for('download_file', vanity=vanity)
f.write(html_content) }
html_content = render_template('file.html', **file_info)
return jsonify({'vanity': vanity}) html_file_path = os.path.join('templates', f'{vanity}.html')
with open(html_file_path, 'w') as f:
@app.route('/shorten', methods=['POST']) f.write(html_content)
def shorten_url():
original_url = request.form['url'] return jsonify({'vanity': vanity})
vanity = shortuuid.uuid()[:6]
data_store[vanity] = {'type': 'url', 'url': original_url} @app.route('/shorten', methods=['POST'])
def shorten_url():
original_url = request.form['url']
html_content = f'<html><body><script>window.location.href="{original_url}";</script></body></html>' vanity = shortuuid.uuid()[:6]
html_file_path = os.path.join('templates', f'{vanity}.html') data_store[vanity] = {'type': 'url', 'url': original_url}
with open(html_file_path, 'w') as f:
f.write(html_content)
html_content = f'<html><body><script>window.location.href="{original_url}";</script></body></html>'
return jsonify({'vanity': vanity}) html_file_path = os.path.join('templates', f'{vanity}.html')
with open(html_file_path, 'w') as f:
@app.route('/<vanity>', methods=['GET']) f.write(html_content)
def redirect_vanity(vanity):
target = data_store.get(vanity) return jsonify({'vanity': vanity})
if target:
if target['type'] == 'pastebin': @app.route('/<vanity>', methods=['GET'])
return render_template(f'{vanity}.html') def redirect_vanity(vanity):
elif target['type'] == 'file': target = data_store.get(vanity)
file_path = os.path.join(app.config['UPLOAD_FOLDER'], f'{vanity}_{target["filename"]}') if target:
file_info = { if target['type'] == 'pastebin':
'name': target['filename'], return render_template(f'{vanity}.html')
'size': os.path.getsize(file_path), elif target['type'] == 'file':
'modified_at': datetime.fromtimestamp(os.path.getmtime(file_path)).strftime('%Y-%m-%d %H:%M:%S'), file_path = os.path.join(app.config['UPLOAD_FOLDER'], f'{vanity}_{target["filename"]}')
'url': url_for('download_file', vanity=vanity) file_info = {
} 'name': target['filename'],
return render_template(f'{vanity}.html', **file_info) 'size': os.path.getsize(file_path),
elif target['type'] == 'url': 'modified_at': datetime.fromtimestamp(os.path.getmtime(file_path)).strftime('%Y-%m-%d %H:%M:%S'),
return render_template(f'{vanity}.html') 'url': url_for('download_file', vanity=vanity)
return 'Not Found', 404 }
return render_template(f'{vanity}.html', **file_info)
if __name__ == '__main__': elif target['type'] == 'url':
app.run(debug=True) return render_template(f'{vanity}.html')
return 'Not Found', 404
if __name__ == '__main__':
app.run(debug=True)