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

179 行
7.9KB

  1. # @name: create.py
  2. # @version: 0.1
  3. # @creation_date: 2021-10-25
  4. # @license: The MIT License <https://opensource.org/licenses/MIT>
  5. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  6. # @purpose: create route for creating tools, examples, and practices
  7. # @acknowledgements:
  8. # https://www.digitalocean.com/community/tutorials/how-to-make-a-web-application-using-flask-in-python-3
  9. from flask import Blueprint, render_template, request, flash, redirect, url_for
  10. from flask_login import login_required, current_user
  11. from .models import Tool
  12. from .models import Practice
  13. from .models import Sensitivity
  14. from .models import Typology
  15. from .models import Workflow
  16. from .models import Publisher
  17. from .models import Book
  18. from .models import Reference
  19. from werkzeug.exceptions import abort
  20. from . import db
  21. create = Blueprint('create', __name__)
  22. # route for creating a new resource
  23. @create.route('/create', methods=('GET', 'POST'))
  24. @login_required
  25. def create_resource():
  26. if request.method == 'POST':
  27. if request.form.get('resource_type') == 'tool':
  28. name = request.form.get('tool_name')
  29. description = request.form.get('description')
  30. projectUrl = request.form.get('projectUrl')
  31. repositoryUrl = request.form.get('repositoryUrl')
  32. expertiseToUse = request.form.get('expertiseToUse')
  33. expertiseToHost = request.form.get('expertiseToHost')
  34. dependencies = request.form.get('dependencies')
  35. ingestFormats = request.form.get('ingestFormats')
  36. outputFormats = request.form.get('outputFormats')
  37. status = request.form.get('status')
  38. if not name:
  39. flash('Name is required!')
  40. else:
  41. tool = Tool.query.filter_by(name=name).first() # if this returns a tool, then the name already exists in database
  42. if tool: # if a tool is found, we want to redirect back to create page
  43. flash('Tool with same name already exists')
  44. return redirect(url_for('create.create_resource'))
  45. # create a new tool with the form data
  46. new_tool = Tool(name=name, description=description, projectUrl=projectUrl, repositoryUrl=repositoryUrl, expertiseToUse=expertiseToUse, expertiseToHost=expertiseToHost, dependencies=dependencies, ingestFormats=ingestFormats, outputFormats=outputFormats, status=status)
  47. # add the new tool to the database
  48. db.session.add(new_tool)
  49. db.session.commit()
  50. elif request.form.get('resource_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 = Practice.query.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 = Practice(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') == 'sensitivity':
  66. name = request.form.get('sensitivity_name')
  67. description = request.form.get('description')
  68. if not name:
  69. flash('Name is required!')
  70. else:
  71. sensitivity = Sensitivity.query.filter_by(name=name).first() # if this returns a sensitivity, then the name already exists in database
  72. if sensitivity: # if a sensitivity is found, we want to redirect back to create page
  73. flash('Sensitivity with same name already exists')
  74. return redirect(url_for('create.create_resource'))
  75. # create a new sensitivity with the form data
  76. new_sensitivity = Sensitivity(name=name, description=description)
  77. # add the new sensitivity to the database
  78. db.session.add(new_sensitivity)
  79. db.session.commit()
  80. elif request.form.get('resource_type') == 'typology':
  81. name = request.form.get('typology_name')
  82. description = request.form.get('description')
  83. if not name:
  84. flash('Name is required!')
  85. else:
  86. typology = Typology.query.filter_by(name=name).first() # if this returns a typology, then the name already exists in database
  87. if typology: # if a typology is found, we want to redirect back to create page
  88. flash('Typology with same name already exists')
  89. return redirect(url_for('create.create_resource'))
  90. # create a new typology with the form data
  91. new_typology = Typology(name=name, description=description)
  92. # add the new typology to the database
  93. db.session.add(new_typology)
  94. db.session.commit()
  95. elif request.form.get('resource_type') == 'publisher':
  96. name = request.form.get('publisher_name')
  97. description = request.form.get('description')
  98. publisherUrl = request.form.get('publisherUrl')
  99. if not name:
  100. flash('Name is required!')
  101. else:
  102. publisher = Publisher.query.filter_by(name=name).first() # if this returns a publisher, then the name already exists in database
  103. if publisher: # if a publisher is found, we want to redirect back to create page
  104. flash('Publisher with same name already exists')
  105. return redirect(url_for('create.create_resource'))
  106. # create a new publisher with the form data
  107. new_publisher = Publisher(name=name, description=description, publisherUrl=publisherUrl)
  108. # add the new publisher to the database
  109. db.session.add(new_publisher)
  110. db.session.commit()
  111. elif request.form.get('resource_type') == 'book':
  112. name = request.form.get('book_name')
  113. description = request.form.get('description')
  114. if not name:
  115. flash('Name is required!')
  116. else:
  117. book = Book.query.filter_by(name=name).first() # if this returns a book, then the name already exists in database
  118. if book: # if a book is found, we want to redirect back to create page
  119. flash('Book with same name already exists')
  120. return redirect(url_for('create.create_resource'))
  121. # create a new book with the form data
  122. new_book = Book(name=name, description=description)
  123. # add the new book to the database
  124. db.session.add(new_book)
  125. db.session.commit()
  126. elif request.form.get('resource_type') == 'reference':
  127. zoteroUrl = request.form.get('zoteroUrl')
  128. if not zoteroUrl:
  129. flash('Zotero URL is required!')
  130. else:
  131. reference = Reference.query.filter_by(zoteroUrl=zoteroUrl).first() # if this returns a reference, then the name already exists in database
  132. if reference: # if a reference is found, we want to redirect back to create page
  133. flash('Reference with same URL already exists')
  134. return redirect(url_for('create.create_resource'))
  135. # create a new reference with the form data
  136. new_reference = Reference(zoteroUrl=zoteroUrl)
  137. # add the new reference to the database
  138. db.session.add(new_reference)
  139. db.session.commit()
  140. return render_template('create.html')