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.

68 lines
2.4KB

  1. # @name: workflow.py
  2. # @version: 0.1
  3. # @creation_date: 2022-02-08
  4. # @license: The MIT License <https://opensource.org/licenses/MIT>
  5. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  6. # @purpose: workflow route for workflow-related functions and pages
  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 Resource
  12. from werkzeug.exceptions import abort
  13. from . import db
  14. workflow = Blueprint('workflow', __name__)
  15. # function to retrieve data about a single workflow from the database
  16. def get_workflow(workflow_id):
  17. workflow = Workflow.query.filter_by(id=workflow_id).first()
  18. if workflow is None:
  19. abort(404)
  20. return workflow
  21. # route for displaying all workflows in database
  22. @workflow.route('/workflows')
  23. def get_workflows():
  24. workflows = Workflow.query
  25. return render_template('workflows.html', workflows=workflows)
  26. # route for displaying a single workflow based on the ID in the database
  27. @workflow.route('/workflows/<int:workflow_id>')
  28. def show_workflow(workflow_id):
  29. workflow = get_workflow(workflow_id)
  30. return render_template('workflow.html', workflow=workflow)
  31. # route for editing a single workflow based on the ID in the database
  32. @workflow.route('/workflows/<int:workflow_id>/edit', methods=('GET', 'POST'))
  33. @login_required
  34. def edit_workflow(workflow_id):
  35. workflow = get_workflow(workflow_id)
  36. if request.method == 'POST':
  37. name = request.form['name']
  38. description = request.form['description']
  39. if not name:
  40. flash('Name is required!')
  41. else:
  42. workflow = Workflow.query.get(workflow_id)
  43. workflow.name = name
  44. workflow.description = description
  45. db.session.commit()
  46. return redirect(url_for('workflow.get_workflows'))
  47. return render_template('edit.html', workflow=workflow)
  48. # route for function to delete a single workflow from the edit page
  49. @workflow.route('/workflows/<int:workflow_id>/delete', methods=('POST',))
  50. @login_required
  51. def delete_workflow(workflow_id):
  52. workflow = get_workflow(workflow_id)
  53. deletion = Workflow.query.get(workflow_id)
  54. db.session.delete(deletion)
  55. db.session.commit()
  56. flash('Successfully deleted!')
  57. return redirect(url_for('workflow.get_workflows'))