您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

97 行
4.7KB

  1. # @name: tool.py
  2. # @creation_date: 2021-10-20
  3. # @license: The MIT License <https://opensource.org/licenses/MIT>
  4. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  5. # @purpose: tool route for tool-related functions and pages
  6. # @acknowledgements:
  7. # https://www.digitalocean.com/community/tutorials/how-to-make-a-web-application-using-flask-in-python-3
  8. from flask import Blueprint, render_template, request, flash, redirect, url_for
  9. from flask_login import login_required, current_user
  10. from .models import Resource
  11. from .resources import *
  12. from .relationships import *
  13. from . import db
  14. from sqlalchemy import text
  15. import os
  16. tool = Blueprint('tool', __name__)
  17. # route for displaying all tools in database
  18. @tool.route('/tools')
  19. def get_tools():
  20. type = 'tool'
  21. tools = Resource.query.filter_by(type=type).all()
  22. for key in request.args.keys():
  23. if key == 'practice':
  24. tools = Resource.query.join(Relationship, Relationship.first_resource_id == Resource.id, isouter=True).filter(Resource.type==type, Relationship.second_resource_id==request.args.get(key)).all()
  25. also_tools = Resource.query.join(Relationship, Relationship.second_resource_id == Resource.id, isouter=True).filter(Resource.type==type, Relationship.first_resource_id==request.args.get(key)).all()
  26. tools = tools + also_tools
  27. elif key == 'scriptingLanguage':
  28. regex = request.args.get(key) + "$|" + request.args.get(key) + "\s\/"
  29. tools = Resource.query.filter_by(type=type).filter(Resource.scriptingLanguage.regexp_match(regex)).all()
  30. else:
  31. kwargs = {'type': type, key: request.args.get(key)}
  32. tools = Resource.query.filter_by(**kwargs).all()
  33. # append relationships to each tool
  34. append_relationships_multiple(tools)
  35. # get filters
  36. # practices
  37. practices_filter = Resource.query.filter_by(type='practice').with_entities(Resource.id, Resource.name)
  38. #FOR LATER: SELECT Resource.name, second.name FROM Resource LEFT JOIN Relationship ON Resource.id=Relationship.first_resource_id LEFT JOIN Resource second ON Relationship.second_resource_id=second.id;
  39. # license
  40. licenses_filter = get_filter_values('license', type)
  41. # language
  42. languages_filter = get_filter_values('scriptingLanguage', type)
  43. return render_template('resources.html', resources=tools, type=type, practices_filter=practices_filter, licenses_filter=licenses_filter, languages_filter=languages_filter)
  44. # route for displaying a single tool based on the ID in the database
  45. @tool.route('/tools/<int:tool_id>')
  46. def show_tool(tool_id):
  47. tool = get_full_resource(tool_id)
  48. return render_template('resource.html', resource=tool)
  49. # route for editing a single tool based on the ID in the database
  50. @tool.route('/tools/<int:tool_id>/edit', methods=('GET', 'POST'))
  51. @login_required
  52. def edit_tool(tool_id):
  53. tool = get_resource(tool_id)
  54. resource_dropdown = Resource.query
  55. existing_relationships = get_relationships(tool_id)
  56. if request.method == 'POST':
  57. if not request.form['name']:
  58. flash('Name is required!')
  59. else:
  60. tool = Resource.query.get(tool_id)
  61. tool.name = request.form['name']
  62. tool.description = request.form['description']
  63. tool.developer = request.form['developer']
  64. tool.developerUrl = request.form['developerUrl']
  65. tool.projectUrl = request.form['projectUrl']
  66. tool.repositoryUrl = request.form['repositoryUrl']
  67. tool.license = request.form['license']
  68. tool.scriptingLanguage = request.form['scriptingLanguage']
  69. tool.expertiseToUse = request.form['expertiseToUse']
  70. tool.expertiseToHost = request.form['expertiseToHost']
  71. tool.dependencies = request.form['dependencies']
  72. tool.ingestFormats = request.form['ingestFormats']
  73. tool.outputFormats = request.form['outputFormats']
  74. tool.status = request.form['status']
  75. db.session.commit()
  76. linked_resources = request.form.getlist('linked_resources')
  77. remove_linked_resources = request.form.getlist('remove_linked_resources')
  78. edit_relationships(tool_id, linked_resources, remove_linked_resources, existing_relationships)
  79. return redirect(url_for('tool.get_tools',_external=True,_scheme=os.environ.get('SSL_SCHEME')))
  80. return render_template('edit.html', resource=tool, resource_dropdown=resource_dropdown, relationships=existing_relationships)
  81. # route for function to delete a single tool from the edit page
  82. @tool.route('/tools/<int:tool_id>/delete', methods=('POST',))
  83. @login_required
  84. def delete_tool(tool_id):
  85. delete_resource(tool_id)
  86. return redirect(url_for('tool.get_tools',_external=True,_scheme=os.environ.get('SSL_SCHEME')))