397 lines
12 KiB
Python
397 lines
12 KiB
Python
import logging
|
|
|
|
from flask import (
|
|
Blueprint,
|
|
current_app,
|
|
jsonify,
|
|
render_template,
|
|
redirect,
|
|
request,
|
|
url_for,
|
|
)
|
|
from flask_login import login_required
|
|
from werkzeug.wrappers.response import Response
|
|
|
|
from .exceptions import exception_handler
|
|
from ..exceptions import ErrorException
|
|
from ..minifigure import BrickMinifigure
|
|
from ..pagination_helper import get_pagination_config, build_pagination_context, get_request_params
|
|
from ..part import BrickPart
|
|
from ..rebrickable_set import RebrickableSet
|
|
from ..set import BrickSet
|
|
from ..set_list import BrickSetList, set_metadata_lists
|
|
from ..set_owner_list import BrickSetOwnerList
|
|
from ..set_purchase_location_list import BrickSetPurchaseLocationList
|
|
from ..set_status_list import BrickSetStatusList
|
|
from ..set_storage_list import BrickSetStorageList
|
|
from ..set_tag_list import BrickSetTagList
|
|
from ..socket import MESSAGES
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
set_page = Blueprint('set', __name__, url_prefix='/sets')
|
|
|
|
|
|
# List of all sets
|
|
@set_page.route('/', methods=['GET'])
|
|
@exception_handler(__file__)
|
|
def list() -> str:
|
|
# Get filter parameters from request
|
|
search_query, sort_field, sort_order, page = get_request_params()
|
|
|
|
# Get filter parameters
|
|
status_filter = request.args.get('status')
|
|
theme_filter = request.args.get('theme')
|
|
owner_filter = request.args.get('owner')
|
|
purchase_location_filter = request.args.get('purchase_location')
|
|
storage_filter = request.args.get('storage')
|
|
tag_filter = request.args.get('tag')
|
|
|
|
# Get pagination configuration
|
|
per_page, is_mobile = get_pagination_config('sets')
|
|
use_pagination = per_page > 0
|
|
|
|
if use_pagination:
|
|
# PAGINATION MODE - Server-side pagination with search and filters
|
|
sets, total_count = BrickSetList().all_filtered_paginated(
|
|
search_query=search_query,
|
|
page=page,
|
|
per_page=per_page,
|
|
sort_field=sort_field,
|
|
sort_order=sort_order,
|
|
status_filter=status_filter,
|
|
theme_filter=theme_filter,
|
|
owner_filter=owner_filter,
|
|
purchase_location_filter=purchase_location_filter,
|
|
storage_filter=storage_filter,
|
|
tag_filter=tag_filter,
|
|
use_consolidated=current_app.config['SETS_CONSOLIDATION']
|
|
)
|
|
|
|
pagination_context = build_pagination_context(page, per_page, total_count, is_mobile)
|
|
else:
|
|
# ORIGINAL MODE - Single page with all data for client-side search
|
|
if current_app.config['SETS_CONSOLIDATION']:
|
|
sets = BrickSetList().all_consolidated()
|
|
else:
|
|
sets = BrickSetList().all()
|
|
pagination_context = None
|
|
|
|
template_context = {
|
|
'collection': sets,
|
|
'search_query': search_query,
|
|
'use_pagination': use_pagination,
|
|
'current_sort': sort_field,
|
|
'current_order': sort_order,
|
|
'current_status_filter': status_filter,
|
|
'current_theme_filter': theme_filter,
|
|
'current_owner_filter': owner_filter,
|
|
'current_purchase_location_filter': purchase_location_filter,
|
|
'current_storage_filter': storage_filter,
|
|
'current_tag_filter': tag_filter,
|
|
'brickset_statuses': BrickSetStatusList.list(),
|
|
**set_metadata_lists(as_class=True)
|
|
}
|
|
|
|
if pagination_context:
|
|
template_context['pagination'] = pagination_context
|
|
|
|
return render_template('sets.html', **template_context)
|
|
|
|
|
|
# Change the value of purchase date
|
|
@set_page.route('/<id>/purchase_date', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_purchase_date(*, id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
|
|
value = brickset.update_purchase_date(request.json)
|
|
|
|
return jsonify({'value': value})
|
|
|
|
|
|
# Change the value of purchase location
|
|
@set_page.route('/<id>/purchase_location', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_purchase_location(*, id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
purchase_location = BrickSetPurchaseLocationList.get(
|
|
request.json.get('value', ''), # type: ignore
|
|
allow_none=True
|
|
)
|
|
|
|
value = purchase_location.update_set_value(
|
|
brickset,
|
|
value=purchase_location.fields.id
|
|
)
|
|
|
|
return jsonify({'value': value})
|
|
|
|
|
|
# Change the value of purchase price
|
|
@set_page.route('/<id>/purchase_price', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_purchase_price(*, id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
|
|
value = brickset.update_purchase_price(request.json)
|
|
|
|
return jsonify({'value': value})
|
|
|
|
|
|
# Change the state of a owner
|
|
@set_page.route('/<id>/owner/<metadata_id>', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_owner(*, id: str, metadata_id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
owner = BrickSetOwnerList.get(metadata_id)
|
|
|
|
state = owner.update_set_state(brickset, json=request.json)
|
|
|
|
return jsonify({'value': state})
|
|
|
|
|
|
# Change the state of a status
|
|
@set_page.route('/<id>/status/<metadata_id>', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_status(*, id: str, metadata_id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
status = BrickSetStatusList.get(metadata_id)
|
|
|
|
state = status.update_set_state(brickset, json=request.json)
|
|
|
|
return jsonify({'value': state})
|
|
|
|
|
|
# Change the value of storage
|
|
@set_page.route('/<id>/storage', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_storage(*, id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
storage = BrickSetStorageList.get(
|
|
request.json.get('value', ''), # type: ignore
|
|
allow_none=True
|
|
)
|
|
|
|
value = storage.update_set_value(brickset, value=storage.fields.id)
|
|
|
|
return jsonify({'value': value})
|
|
|
|
|
|
# Change the state of a tag
|
|
@set_page.route('/<id>/tag/<metadata_id>', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def update_tag(*, id: str, metadata_id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
tag = BrickSetTagList.get(metadata_id)
|
|
|
|
state = tag.update_set_state(brickset, json=request.json)
|
|
|
|
return jsonify({'value': state})
|
|
|
|
|
|
# Ask for deletion of a set
|
|
@set_page.route('/<id>/delete', methods=['GET'])
|
|
@login_required
|
|
@exception_handler(__file__)
|
|
def delete(*, id: str) -> str:
|
|
return render_template(
|
|
'set.html',
|
|
delete=True,
|
|
item=BrickSet().select_specific(id),
|
|
error=request.args.get('error'),
|
|
**set_metadata_lists(as_class=True)
|
|
)
|
|
|
|
|
|
# Actually delete of a set
|
|
@set_page.route('/<id>/delete', methods=['POST'])
|
|
@login_required
|
|
@exception_handler(__file__, post_redirect='set.delete')
|
|
def do_delete(*, id: str) -> Response:
|
|
brickset = BrickSet().select_light(id)
|
|
brickset.delete()
|
|
|
|
# Info
|
|
logger.info('Set {set} ({id}): deleted'.format(
|
|
set=brickset.fields.set,
|
|
id=brickset.fields.id,
|
|
))
|
|
|
|
return redirect(url_for('set.deleted', id=id))
|
|
|
|
|
|
# Set is deleted
|
|
@set_page.route('/<id>/deleted', methods=['GET'])
|
|
@login_required
|
|
@exception_handler(__file__)
|
|
def deleted(*, id: str) -> str:
|
|
return render_template(
|
|
'success.html',
|
|
message='Set "{id}" has been successfuly deleted.'.format(id=id),
|
|
)
|
|
|
|
|
|
# Details of one set
|
|
@set_page.route('/<id>/details', methods=['GET'])
|
|
@exception_handler(__file__)
|
|
def details(*, id: str) -> str:
|
|
# Load the specific set
|
|
item = BrickSet().select_specific(id)
|
|
|
|
# Check if there are multiple instances of this set
|
|
all_instances = BrickSetList()
|
|
# Load all sets with metadata context for tags, owners, etc.
|
|
filter_context = {
|
|
'owners': BrickSetOwnerList.as_columns(),
|
|
'statuses': BrickSetStatusList.as_columns(),
|
|
'tags': BrickSetTagList.as_columns(),
|
|
}
|
|
all_instances.list(do_theme=True, **filter_context)
|
|
|
|
# Find all instances with the same set number
|
|
same_set_instances = [
|
|
record for record in all_instances.records
|
|
if record.fields.set == item.fields.set
|
|
]
|
|
|
|
# If consolidation is enabled and multiple instances exist, show consolidated view
|
|
if current_app.config['SETS_CONSOLIDATION'] and len(same_set_instances) > 1:
|
|
return render_template(
|
|
'set.html',
|
|
item=item,
|
|
all_instances=same_set_instances,
|
|
open_instructions=request.args.get('open_instructions'),
|
|
brickset_statuses=BrickSetStatusList.list(all=True),
|
|
**set_metadata_lists(as_class=True)
|
|
)
|
|
else:
|
|
# Single instance or consolidation disabled, show normal view
|
|
return render_template(
|
|
'set.html',
|
|
item=item,
|
|
open_instructions=request.args.get('open_instructions'),
|
|
brickset_statuses=BrickSetStatusList.list(all=True),
|
|
**set_metadata_lists(as_class=True)
|
|
)
|
|
|
|
|
|
# Update problematic pieces of a set
|
|
@set_page.route('/<id>/parts/<part>/<int:color>/<int:spare>/<problem>', defaults={'figure': None}, methods=['POST']) # noqa: E501
|
|
@set_page.route('/<id>/minifigures/<figure>/parts/<part>/<int:color>/<int:spare>/<problem>', methods=['POST']) # noqa: E501
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def problem_part(
|
|
*,
|
|
id: str,
|
|
figure: str | None,
|
|
part: str,
|
|
color: int,
|
|
spare: int,
|
|
problem: str,
|
|
) -> Response:
|
|
brickset = BrickSet().select_specific(id)
|
|
|
|
if figure is not None:
|
|
brickminifigure = BrickMinifigure().select_specific(brickset, figure)
|
|
else:
|
|
brickminifigure = None
|
|
|
|
brickpart = BrickPart().select_specific(
|
|
brickset,
|
|
part,
|
|
color,
|
|
spare,
|
|
minifigure=brickminifigure,
|
|
)
|
|
|
|
amount = brickpart.update_problem(problem, request.json)
|
|
|
|
# Info
|
|
logger.info('Set {set} ({id}): updated part ({part} color: {color}, spare: {spare}, minifigure: {figure}) {problem} count to {amount}'.format( # noqa: E501
|
|
set=brickset.fields.set,
|
|
id=brickset.fields.id,
|
|
figure=figure,
|
|
part=brickpart.fields.part,
|
|
color=brickpart.fields.color,
|
|
spare=brickpart.fields.spare,
|
|
problem=problem,
|
|
amount=amount
|
|
))
|
|
|
|
return jsonify({problem: amount})
|
|
|
|
|
|
# Update checked state of parts during walkthrough
|
|
@set_page.route('/<id>/parts/<part>/<int:color>/<int:spare>/checked', defaults={'figure': None}, methods=['POST']) # noqa: E501
|
|
@set_page.route('/<id>/minifigures/<figure>/parts/<part>/<int:color>/<int:spare>/checked', methods=['POST']) # noqa: E501
|
|
@login_required
|
|
@exception_handler(__file__, json=True)
|
|
def checked_part(
|
|
*,
|
|
id: str,
|
|
figure: str | None,
|
|
part: str,
|
|
color: int,
|
|
spare: int,
|
|
) -> Response:
|
|
brickset = BrickSet().select_specific(id)
|
|
|
|
if figure is not None:
|
|
brickminifigure = BrickMinifigure().select_specific(brickset, figure)
|
|
else:
|
|
brickminifigure = None
|
|
|
|
brickpart = BrickPart().select_specific(
|
|
brickset,
|
|
part,
|
|
color,
|
|
spare,
|
|
minifigure=brickminifigure,
|
|
)
|
|
|
|
checked = brickpart.update_checked(request.json)
|
|
|
|
# Info
|
|
logger.info('Set {set} ({id}): updated part ({part} color: {color}, spare: {spare}, minifigure: {figure}) checked state to {checked}'.format( # noqa: E501
|
|
set=brickset.fields.set,
|
|
id=brickset.fields.id,
|
|
figure=figure,
|
|
part=brickpart.fields.part,
|
|
color=brickpart.fields.color,
|
|
spare=brickpart.fields.spare,
|
|
checked=checked
|
|
))
|
|
|
|
return jsonify({'checked': checked})
|
|
|
|
|
|
# Refresh a set
|
|
@set_page.route('/refresh/<set>/', methods=['GET'])
|
|
@set_page.route('/<id>/refresh', methods=['GET'])
|
|
@login_required
|
|
@exception_handler(__file__)
|
|
def refresh(*, id: str | None = None, set: str | None = None) -> str:
|
|
if id is not None:
|
|
item = BrickSet().select_specific(id)
|
|
elif set is not None:
|
|
item = RebrickableSet().select_specific(set)
|
|
else:
|
|
raise ErrorException('Could not load any set to refresh')
|
|
|
|
return render_template(
|
|
'refresh.html',
|
|
id=id,
|
|
item=item,
|
|
path=current_app.config['SOCKET_PATH'],
|
|
namespace=current_app.config['SOCKET_NAMESPACE'],
|
|
messages=MESSAGES
|
|
)
|