def show_practice(practice_id): | def show_practice(practice_id): | ||||
practice = get_resource(practice_id) | practice = get_resource(practice_id) | ||||
relationships = get_relationships(practice_id) | relationships = get_relationships(practice_id) | ||||
practice.references = replace_urls(practice.references) | |||||
return render_template('resource.html', resource=practice, relationships=relationships) | return render_template('resource.html', resource=practice, relationships=relationships) | ||||
# route for editing a single practice based on the ID in the database | # route for editing a single practice based on the ID in the database |
# @author: Simon Bowie <ad7588@coventry.ac.uk> | # @author: Simon Bowie <ad7588@coventry.ac.uk> | ||||
# @purpose: functions for resources | # @purpose: functions for resources | ||||
# @acknowledgements: | # @acknowledgements: | ||||
# isbntools: https://pypi.org/project/isbntools/ | |||||
# regex for URLs: https://gist.github.com/gruber/249502 | |||||
from flask import Blueprint, render_template, request, flash, redirect, url_for | from flask import Blueprint, render_template, request, flash, redirect, url_for | ||||
from .models import Resource | from .models import Resource | ||||
from . import db | from . import db | ||||
from isbntools.app import * | from isbntools.app import * | ||||
import requests | import requests | ||||
import re | |||||
# function to retrieve data about a single resource from the database | # function to retrieve data about a single resource from the database | ||||
def get_resource(resource_id): | def get_resource(resource_id): | ||||
field_filter = sorted(field_filter) | field_filter = sorted(field_filter) | ||||
return field_filter | return field_filter | ||||
# function to get book data including metadata and covers | |||||
def get_book_data(isbn): | def get_book_data(isbn): | ||||
try: | try: | ||||
book = meta(isbn) | book = meta(isbn) | ||||
book.update(book_cover) | book.update(book_cover) | ||||
return book | return book | ||||
except: | except: | ||||
pass | |||||
pass | |||||
# function to replace embedded URL strings with href links | |||||
def replace_urls(input): | |||||
regex = '((?:https?:(?:/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)/)(?:[^\s()<>{}\[\]]+|\([^\s()]*?\([^\s()]+\)[^\s()]*?\)|\([^\s]+?\))+(?:\([^\s()]*?\([^\s()]+\)[^\s()]*?\)|\([^\s]+?\)|[^\s`!()\[\]{};:\'\".,<>?«»“”‘’])|(?:(?<!@)[a-z0-9]+(?:[.\-][a-z0-9]+)*[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)\b/?(?!@)))' | |||||
replacement = '<a href=\\1>\\1</a>' | |||||
output = re.sub(regex, replacement, input) | |||||
return output |
</th> | </th> | ||||
<td> | <td> | ||||
{% for author in book['Authors'] %} | {% for author in book['Authors'] %} | ||||
{{ author }} | |||||
{{ author }}</br> | |||||
{% endfor %} | {% endfor %} | ||||
</td> | </td> | ||||
{% else %} | {% else %} |
How is this / Can this be an experimental practice? | How is this / Can this be an experimental practice? | ||||
</th> | </th> | ||||
<td> | <td> | ||||
{{ resource['experimental'] }} | |||||
{{ resource['experimental']|safe }} | |||||
</td> | </td> | ||||
</tr> | </tr> | ||||
{% endif %} | {% endif %} | ||||
How has it been applied experimentally (lessons learned for authors and publishers)? | How has it been applied experimentally (lessons learned for authors and publishers)? | ||||
</th> | </th> | ||||
<td> | <td> | ||||
<p style="white-space: pre-line">{{ resource['lessonsLearned'] }}</p> | |||||
<p style="white-space: pre-line">{{ resource['lessonsLearned']|safe }}</p> | |||||
</td> | </td> | ||||
</tr> | </tr> | ||||
{% endif %} | {% endif %} | ||||
References: | References: | ||||
</th> | </th> | ||||
<td> | <td> | ||||
<p style="white-space: pre-line">{{ resource['references'] }}</p> | |||||
<p style="white-space: pre-line">{{ resource['references']|safe }}</p> | |||||
</td> | </td> | ||||
</tr> | </tr> | ||||
{% endif %} | {% endif %} |
<a href="{{ url_for('tool.show_tool', tool_id=resource['id']) }}"> | <a href="{{ url_for('tool.show_tool', tool_id=resource['id']) }}"> | ||||
<h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3> | <h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3> | ||||
</a> | </a> | ||||
<p class="card-text"> | |||||
{{ resource['description']|truncate(100) }} | |||||
</p> | |||||
{% elif resource['type'] == 'practice' %} | {% elif resource['type'] == 'practice' %} | ||||
<a href="{{ url_for('practice.show_practice', practice_id=resource['id']) }}"> | <a href="{{ url_for('practice.show_practice', practice_id=resource['id']) }}"> | ||||
<h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3> | <h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3> | ||||
</a> | </a> | ||||
<p class="card-text"> | |||||
{{ resource['description']|truncate(100) }} | |||||
</p> | |||||
{% elif resource['type'] == 'book' %} | {% elif resource['type'] == 'book' %} | ||||
<a href="{{ url_for('book.show_book', book_id=resource['id']) }}"> | <a href="{{ url_for('book.show_book', book_id=resource['id']) }}"> | ||||
<h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3> | <h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3> | ||||
</a> | </a> | ||||
{% endif %} | |||||
<p class="card-text"> | |||||
{{ resource['description']|truncate(100) }} | |||||
<p class="card-text text-center"> | |||||
{{ resource['author']|truncate(100) }} | |||||
</p> | </p> | ||||
{% endif %} | |||||
{% if current_user.is_authenticated %} | {% if current_user.is_authenticated %} | ||||
{% if resource['type'] == 'tool' %} | {% if resource['type'] == 'tool' %} | ||||
<a href="{{ url_for('tool.edit_tool', tool_id=resource['id']) }}"> | <a href="{{ url_for('tool.edit_tool', tool_id=resource['id']) }}"> |