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.

52 lines
1.7KB

  1. # @name: main.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: Main route for index and other pages
  6. # @acknowledgements:
  7. # https://www.digitalocean.com/community/tutorials/how-to-add-authentication-to-your-app-with-flask-login
  8. from flask import Blueprint, render_template
  9. from flask_login import login_required, current_user
  10. from .models import Resource
  11. from .resources import *
  12. from .relationships import *
  13. from sqlalchemy.sql import func
  14. import markdown
  15. main = Blueprint('main', __name__)
  16. # route for index page
  17. @main.route('/')
  18. def index():
  19. tools = Resource.query.filter_by(type='tool').order_by(func.random()).limit(6).all()
  20. # append relationships to each tool
  21. append_relationships_multiple(tools)
  22. books = Resource.query.filter_by(type='book').order_by(func.random()).limit(6).all()
  23. # append relationships to each book
  24. append_relationships_multiple(books)
  25. with open('content/home.md', 'r') as f:
  26. text = f.read()
  27. text = markdown.markdown(text)
  28. book_showcase = get_full_resource('69')
  29. return render_template('index.html', text=text, tools=tools, books=books, book=book_showcase)
  30. # route for profile page
  31. @main.route('/profile')
  32. @login_required
  33. def profile():
  34. return render_template('profile.html', name=current_user.name)
  35. # route for test page
  36. @main.route('/test')
  37. def test():
  38. return render_template('test.html')
  39. # route for about page
  40. @main.route('/about')
  41. def about():
  42. with open('content/about.md', 'r') as f:
  43. text = f.read()
  44. text = markdown.markdown(text)
  45. return render_template('about.html', text=text)