BrickTracker/bricktracker/views/instructions.py

200 lines
6.0 KiB
Python
Raw Normal View History

2025-01-17 11:03:00 +01:00
from flask import (
current_app,
Blueprint,
redirect,
render_template,
request,
url_for,
flash
2025-01-17 11:03:00 +01:00
)
from flask_login import login_required
from werkzeug.wrappers.response import Response
from werkzeug.utils import secure_filename
from .exceptions import exception_handler
from ..instructions import BrickInstructions
from ..instructions_list import BrickInstructionsList
from .upload import upload_helper
import requests
from bs4 import BeautifulSoup
2025-01-17 11:03:00 +01:00
instructions_page = Blueprint(
'instructions',
__name__,
url_prefix='/instructions'
)
# Index
@instructions_page.route('/', methods=['GET'])
@exception_handler(__file__)
def list() -> str:
return render_template(
'instructions.html',
table_collection=BrickInstructionsList().list(),
)
# Delete an instructions file
@instructions_page.route('/<name>/delete/', methods=['GET'])
@login_required
@exception_handler(__file__)
def delete(*, name: str) -> str:
return render_template(
'instructions.html',
item=BrickInstructionsList().get_file(name),
delete=True,
error=request.args.get('error')
)
# Actually delete an instructions file
@instructions_page.route('/<name>/delete/', methods=['POST'])
@login_required
@exception_handler(__file__, post_redirect='instructions.delete')
def do_delete(*, name: str) -> Response:
instruction = BrickInstructionsList().get_file(name)
# Delete the instructions file
instruction.delete()
# Reload the instructions
BrickInstructionsList(force=True)
return redirect(url_for('instructions.list'))
# Rename an instructions file
@instructions_page.route('/<name>/rename/', methods=['GET'])
@login_required
@exception_handler(__file__)
def rename(*, name: str) -> str:
return render_template(
'instructions.html',
item=BrickInstructionsList().get_file(name),
rename=True,
error=request.args.get('error')
)
# Actually rename an instructions file
@instructions_page.route('/<name>/rename/', methods=['POST'])
@login_required
@exception_handler(__file__, post_redirect='instructions.rename')
def do_rename(*, name: str) -> Response:
instruction = BrickInstructionsList().get_file(name)
# Grab the new filename
filename = secure_filename(request.form.get('filename', ''))
if filename != '':
# Delete the instructions file
instruction.rename(filename)
# Reload the instructions
BrickInstructionsList(force=True)
return redirect(url_for('instructions.list'))
# Upload an instructions file
@instructions_page.route('/upload/', methods=['GET'])
@login_required
@exception_handler(__file__)
def upload() -> str:
return render_template(
'instructions.html',
upload=True,
error=request.args.get('error')
)
# Actually upload an instructions file
@instructions_page.route('/upload', methods=['POST'])
@login_required
@exception_handler(__file__, post_redirect='instructions.upload')
def do_upload() -> Response:
file = upload_helper(
'file',
'instructions.upload',
extensions=current_app.config['INSTRUCTIONS_ALLOWED_EXTENSIONS'].value,
)
if isinstance(file, Response):
return file
BrickInstructions(file.filename).upload(file) # type: ignore
# Reload the instructions
BrickInstructionsList(force=True)
return redirect(url_for('instructions.list'))
# Download instructions from Rebrickable
@instructions_page.route('/download/', methods=['GET'])
@login_required
@exception_handler(__file__)
def download() -> str:
return render_template(
'instructions.html',
download=True,
error=request.args.get('error')
)
# Actually download an instructions file
@instructions_page.route('/download/', methods=['POST'])
@login_required
@exception_handler(__file__, post_redirect='instructions.download')
def do_download() -> Response:
set_id: str = request.form.get('add-set', '')
url = f"https://rebrickable.com/instructions/{set_id}"
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
}
response = requests.get(url, headers=headers)
if response.status_code != 200:
flash(f"Failed to load page. Status code: {response.status_code}", 'danger')
return redirect(url_for('instructions.download'))
# Parse the HTML content
soup = BeautifulSoup(response.content, 'html.parser')
# Collect all <img> tags with "LEGO Building Instructions" in the alt attribute
found_tags = []
for a_tag in soup.find_all('a', href=True):
img_tag = a_tag.find('img', alt=True)
if img_tag and "LEGO Building Instructions" in img_tag['alt']:
found_tags.append((img_tag['alt'].replace('LEGO Building Instructions for ', ''), a_tag['href'])) # Save alt and href
return render_template('instructions.html', download=True, found_tags=found_tags)
@instructions_page.route('/confirm_download', methods=['POST'])
@login_required
@exception_handler(__file__, post_redirect='instructions.download')
def confirm_download() -> Response:
selected_instructions = []
for key in request.form:
if key.startswith('instruction-') and request.form.get(key) == 'on': # Checkbox is checked
index = key.split('-')[-1]
alt_text = request.form.get(f'instruction-alt-text-{index}')
href_text = request.form.get(f'instruction-href-text-{index}')
selected_instructions.append((href_text,alt_text))
if not selected_instructions:
flash("No instructions selected", 'danger')
return redirect(url_for('instructions.download'))
for href, filename in selected_instructions:
print(f"Downloading {filename} from {href}")
BrickInstructions(f"{filename}.pdf").download(href)
BrickInstructionsList(force=True)
#flash("Selected instructions have been downloaded", 'success')
return redirect(url_for('instructions.list'))