open-law/app/views/book/interpretation.py

218 lines
6.9 KiB
Python
Raw Normal View History

2023-05-17 16:21:53 +00:00
from flask import (
render_template,
flash,
redirect,
url_for,
2023-05-22 06:54:20 +00:00
current_app,
2023-05-17 16:21:53 +00:00
)
from flask_login import login_required, current_user
2023-05-23 12:52:49 +00:00
from app.controllers import register_book_verify_route, create_breadcrumbs, clean_html
2023-05-17 16:21:53 +00:00
from app.controllers.delete_nested_book_entities import (
delete_nested_interpretation_entities,
)
from app import models as m, db, forms as f
from app.controllers.require_permission import require_permission
from app.controllers.tags import set_interpretation_tags
2023-05-17 16:21:53 +00:00
from app.logger import log
from .bp import bp
2023-05-30 07:12:43 +00:00
@bp.route("/<int:book_id>/<int:section_id>/interpretations", methods=["GET"])
2023-05-17 16:21:53 +00:00
def interpretation_view(
book_id: int,
section_id: int,
):
book: m.Book = db.session.get(m.Book, book_id)
if not book or book.is_deleted:
log(log.WARNING, "Book with id [%s] not found", book_id)
flash("Book not found", "danger")
return redirect(url_for("book.my_library"))
section: m.Section = db.session.get(m.Section, section_id)
if not section:
log(log.WARNING, "Section with id [%s] not found", section_id)
flash("Section not found", "danger")
return redirect(
url_for(
2023-05-30 06:51:58 +00:00
"book.collection_view",
2023-05-17 16:21:53 +00:00
book_id=book_id,
)
)
2023-05-30 13:00:13 +00:00
breadcrumbs = create_breadcrumbs(
book_id=book_id, section_id=section_id, collection_id=section.collection.id
)
2023-05-30 07:12:43 +00:00
return render_template(
"book/interpretation_view.html",
book=book,
section=section,
2023-05-30 13:00:13 +00:00
breadcrumbs=breadcrumbs,
2023-05-30 07:12:43 +00:00
)
2023-05-17 16:21:53 +00:00
2023-05-30 07:12:43 +00:00
@bp.route("/<int:book_id>/<int:section_id>/create_interpretation", methods=["POST"])
2023-05-17 16:21:53 +00:00
@register_book_verify_route(bp.name)
@login_required
def interpretation_create(
book_id: int,
section_id: int,
):
section: m.Section = db.session.get(m.Section, section_id)
form = f.CreateInterpretationForm()
redirect_url = url_for(
"book.interpretation_view",
book_id=book_id,
section_id=section.id,
)
if form.validate_on_submit():
2023-05-22 06:54:20 +00:00
text = form.text.data
2023-05-24 11:44:04 +00:00
plain_text = clean_html(text).lower()
tags = current_app.config["TAG_REGEX"].findall(text)
for tag in tags:
word = tag.lower().replace("[", "").replace("]", "")
plain_text = plain_text.replace(tag.lower(), word)
2023-05-22 06:54:20 +00:00
2023-05-17 16:21:53 +00:00
interpretation: m.Interpretation = m.Interpretation(
2023-05-24 11:44:04 +00:00
plain_text=plain_text,
2023-05-22 06:54:20 +00:00
text=text,
2023-05-17 16:21:53 +00:00
section_id=section_id,
user_id=current_user.id,
)
log(
log.INFO,
"Create interpretation [%s]. Section: [%s]",
interpretation,
section,
)
interpretation.save()
2023-05-25 09:38:08 +00:00
# access groups
for access_group in interpretation.section.access_groups:
m.InterpretationAccessGroups(
interpretation_id=interpretation.id, access_group_id=access_group.id
).save()
# -------------
2023-05-22 06:54:20 +00:00
tags = current_app.config["TAG_REGEX"].findall(text)
2023-05-26 07:14:21 +00:00
set_interpretation_tags(interpretation, tags)
2023-05-17 16:21:53 +00:00
flash("Success!", "success")
return redirect(redirect_url)
else:
log(log.ERROR, "Interpretation create errors: [%s]", form.errors)
for field, errors in form.errors.items():
field_label = form._fields[field].label.text
for error in errors:
flash(error.replace("Field", field_label), "danger")
return redirect(redirect_url)
@bp.route(
2023-05-30 07:12:43 +00:00
"/<int:book_id>/<int:interpretation_id>/edit_interpretation", methods=["POST"]
2023-05-17 16:21:53 +00:00
)
@register_book_verify_route(bp.name)
@require_permission(
entity_type=m.Permission.Entity.INTERPRETATION,
access=[m.Permission.Access.U],
entities=[m.Interpretation],
)
2023-05-17 16:21:53 +00:00
@login_required
def interpretation_edit(
book_id: int,
interpretation_id: int,
):
interpretation: m.Interpretation = db.session.get(
m.Interpretation, interpretation_id
)
form = f.EditInterpretationForm()
redirect_url = url_for(
2023-05-30 07:12:43 +00:00
"book.qa_view", book_id=book_id, interpretation_id=interpretation_id
2023-05-17 16:21:53 +00:00
)
if form.validate_on_submit():
2023-05-22 06:54:20 +00:00
text = form.text.data
2023-05-24 11:44:04 +00:00
plain_text = clean_html(text).lower()
tags = current_app.config["TAG_REGEX"].findall(text)
for tag in tags:
word = tag.lower().replace("[", "").replace("]", "")
plain_text = plain_text.replace(tag.lower(), word)
2023-05-17 16:21:53 +00:00
2023-05-24 11:44:04 +00:00
interpretation.plain_text = plain_text
interpretation.text = text
2023-05-22 06:54:20 +00:00
tags = current_app.config["TAG_REGEX"].findall(text)
2023-05-26 07:14:21 +00:00
set_interpretation_tags(interpretation, tags)
2023-05-17 16:21:53 +00:00
log(log.INFO, "Edit interpretation [%s]", interpretation.id)
interpretation.save()
flash("Success!", "success")
return redirect(redirect_url)
else:
log(log.ERROR, "Interpretation edit errors: [%s]", form.errors)
for field, errors in form.errors.items():
field_label = form._fields[field].label.text
for error in errors:
flash(error.replace("Field", field_label), "danger")
return redirect(redirect_url)
@bp.route(
2023-05-30 07:12:43 +00:00
"/<int:book_id>/<int:interpretation_id>/delete_interpretation", methods=["POST"]
2023-05-17 16:21:53 +00:00
)
@register_book_verify_route(bp.name)
@require_permission(
entity_type=m.Permission.Entity.INTERPRETATION,
access=[m.Permission.Access.D],
entities=[m.Interpretation],
)
2023-05-17 16:21:53 +00:00
@login_required
2023-05-30 07:12:43 +00:00
def interpretation_delete(book_id: int, interpretation_id: int):
2023-05-17 16:21:53 +00:00
interpretation: m.Interpretation = db.session.get(
m.Interpretation, interpretation_id
)
interpretation.is_deleted = True
delete_nested_interpretation_entities(interpretation)
log(log.INFO, "Delete interpretation [%s]", interpretation)
interpretation.save()
flash("Success!", "success")
return redirect(
url_for(
"book.collection_view",
book_id=book_id,
)
)
2023-05-30 07:12:43 +00:00
@bp.route("/<int:book_id>/<int:interpretation_id>/preview", methods=["GET"])
def qa_view(book_id: int, interpretation_id: int):
2023-05-17 16:21:53 +00:00
book: m.Book = db.session.get(m.Book, book_id)
if not book or book.is_deleted:
log(log.INFO, "User: [%s] is not owner of book: [%s]", current_user, book)
flash("Book not found!", "danger")
2023-05-17 16:21:53 +00:00
return redirect(url_for("book.my_library"))
interpretation: m.Interpretation = db.session.get(
m.Interpretation, interpretation_id
)
if not interpretation or interpretation.is_deleted:
log(log.WARNING, "Interpretation with id [%s] not found", interpretation_id)
flash("Interpretation not found", "danger")
2023-05-30 07:12:43 +00:00
return redirect(url_for("book.collection_view", book_id=book_id))
2023-05-17 16:21:53 +00:00
breadcrumbs = create_breadcrumbs(
book_id=book_id,
2023-05-30 13:00:13 +00:00
collection_id=interpretation.section.collection.id,
2023-05-30 11:10:04 +00:00
section_id=interpretation.section.id,
2023-05-17 16:21:53 +00:00
)
return render_template(
"book/qa_view.html",
book=book,
2023-05-30 07:12:43 +00:00
section=interpretation.section,
2023-05-17 16:21:53 +00:00
interpretation=interpretation,
breadcrumbs=breadcrumbs,
)