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.5KB

  1. # @name: publisher.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: publisher route for publisher-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 Publisher
  12. from werkzeug.exceptions import abort
  13. from . import db
  14. publisher = Blueprint('publisher', __name__)
  15. # function to retrieve data about a single publisher from the database
  16. def get_publisher(publisher_id):
  17. publisher = Publisher.query.filter_by(id=publisher_id).first()
  18. if publisher is None:
  19. abort(404)
  20. return publisher
  21. # route for displaying all publishers in database
  22. @publisher.route('/publishers')
  23. def get_publishers():
  24. publishers = Publisher.query
  25. return render_template('publishers.html', publishers=publishers)
  26. # route for displaying a single publisher based on the ID in the database
  27. @publisher.route('/publishers/<int:publisher_id>')
  28. def show_publisher(publisher_id):
  29. publisher = get_publisher(publisher_id)
  30. return render_template('publisher.html', publisher=publisher)
  31. # route for editing a single publisher based on the ID in the database
  32. @publisher.route('/publishers/<int:publisher_id>/edit', methods=('GET', 'POST'))
  33. @login_required
  34. def edit_publisher(publisher_id):
  35. publisher = get_publisher(publisher_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. publisher = Publisher.query.get(publisher_id)
  43. publisher.name = name
  44. publisher.description = description
  45. db.session.commit()
  46. return redirect(url_for('publisher.get_publishers'))
  47. return render_template('edit.html', publisher=publisher)
  48. # route for function to delete a single publisher from the edit page
  49. @publisher.route('/publishers/<int:publisher_id>/delete', methods=('POST',))
  50. @login_required
  51. def delete_publisher(publisher_id):
  52. publisher = get_publisher(publisher_id)
  53. deletion = Publisher.query.get(publisher_id)
  54. db.session.delete(deletion)
  55. db.session.commit()
  56. flash('Successfully deleted!')
  57. return redirect(url_for('publisher.get_publishers'))