You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
5.7KB

  1. # @name: create.py
  2. # @creation_date: 2021-10-25
  3. # @license: The MIT License <https://opensource.org/licenses/MIT>
  4. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  5. # @purpose: create route for creating tools, examples, and practices
  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 .models import Relationship
  12. from .resources import *
  13. from werkzeug.exceptions import abort
  14. from . import db
  15. create = Blueprint('create', __name__)
  16. # route for creating a new resource
  17. @create.route('/create', methods=('GET', 'POST'))
  18. @login_required
  19. def create_resource():
  20. if request.method == 'POST':
  21. if request.form.get('resource_type') == 'tool':
  22. type = 'tool'
  23. name = request.form.get('tool_name')
  24. description = request.form.get('description')
  25. projectUrl = request.form.get('projectUrl')
  26. repositoryUrl = request.form.get('repositoryUrl')
  27. expertiseToUse = request.form.get('expertiseToUse')
  28. expertiseToHost = request.form.get('expertiseToHost')
  29. dependencies = request.form.get('dependencies')
  30. ingestFormats = request.form.get('ingestFormats')
  31. outputFormats = request.form.get('outputFormats')
  32. status = request.form.get('status')
  33. if not name:
  34. flash('Name is required!')
  35. else:
  36. tool = Resource.query.filter_by(type='tool').filter_by(name=name).first() # if this returns a tool, then the name already exists in database
  37. if tool: # if a tool is found, we want to redirect back to create page
  38. flash('Tool with same name already exists')
  39. return redirect(url_for('create.create_resource'))
  40. # create a new tool with the form data
  41. new_tool = Resource(type=type, name=name, description=description, projectUrl=projectUrl, repositoryUrl=repositoryUrl, expertiseToUse=expertiseToUse, expertiseToHost=expertiseToHost, dependencies=dependencies, ingestFormats=ingestFormats, outputFormats=outputFormats, status=status)
  42. # add the new tool to the database
  43. db.session.add(new_tool)
  44. db.session.commit()
  45. if request.form.getlist('linked_resources'):
  46. for linked_resource in request.form.getlist('linked_resources'):
  47. tool = Resource.query.filter_by(type='tool').filter_by(name=name).first()
  48. add_linked_resource(tool.id, linked_resource)
  49. elif request.form.get('resource_type') == 'practice':
  50. type = 'practice'
  51. name = request.form.get('practice_name')
  52. description = request.form.get('description')
  53. if not name:
  54. flash('Name is required!')
  55. else:
  56. practice = Resource.query.filter_by(type='practice').filter_by(name=name).first() # if this returns a practice, then the name already exists in database
  57. if practice: # if a practice is found, we want to redirect back to create page
  58. flash('Practice with same name already exists')
  59. return redirect(url_for('create.create_resource'))
  60. # create a new practice with the form data
  61. new_practice = Resource(type=type, name=name, description=description)
  62. # add the new practice to the database
  63. db.session.add(new_practice)
  64. db.session.commit()
  65. elif request.form.get('resource_type') == 'publisher':
  66. type = 'publisher'
  67. name = request.form.get('publisher_name')
  68. description = request.form.get('description')
  69. publisherUrl = request.form.get('publisherUrl')
  70. if not name:
  71. flash('Name is required!')
  72. else:
  73. publisher = Publisher.query.filter_by(name=name).first() # if this returns a publisher, then the name already exists in database
  74. if publisher: # if a publisher is found, we want to redirect back to create page
  75. flash('Publisher with same name already exists')
  76. return redirect(url_for('create.create_resource'))
  77. # create a new publisher with the form data
  78. new_publisher = Resource(type=type, name=name, description=description, publisherUrl=publisherUrl)
  79. # add the new publisher to the database
  80. db.session.add(new_publisher)
  81. db.session.commit()
  82. elif request.form.get('resource_type') == 'book':
  83. type = 'book'
  84. name = request.form.get('book_name')
  85. description = request.form.get('description')
  86. if not name:
  87. flash('Name is required!')
  88. else:
  89. book = Book.query.filter_by(name=name).first() # if this returns a book, then the name already exists in database
  90. if book: # if a book is found, we want to redirect back to create page
  91. flash('Book with same name already exists')
  92. return redirect(url_for('create.create_resource'))
  93. # create a new book with the form data
  94. new_book = Resource(type=type, name=name, description=description)
  95. # add the new book to the database
  96. db.session.add(new_book)
  97. db.session.commit()
  98. resource_dropdown = Resource.query
  99. return render_template('create.html', resource_dropdown=resource_dropdown)