109 lines
5.4 KiB
Python
109 lines
5.4 KiB
Python
from wtforms import SubmitField, StringField, HiddenField, validators, Form
|
|
from flask_wtf import FlaskForm
|
|
from flask import request, render_template, redirect
|
|
from flask_login import login_required, current_user
|
|
from main import db, app, ma
|
|
from sqlalchemy import Sequence
|
|
from sqlalchemy.exc import SQLAlchemyError
|
|
from status import st, Status
|
|
|
|
################################################################################
|
|
# Class describing Author in the database, and via sqlalchemy, connected to the DB as well
|
|
################################################################################
|
|
class Author(db.Model):
|
|
id = db.Column(db.Integer, db.Sequence('author_id_seq'), primary_key=True )
|
|
surname = db.Column(db.String(30), unique=False, nullable=False)
|
|
firstnames = db.Column(db.String(50), unique=False, nullable=False)
|
|
|
|
def __repr__(self):
|
|
return "<id: {}, firstnames: {}, surname: {}>".format(self.id,self.firstnames, self.surname)
|
|
|
|
################################################################################
|
|
# Helper class that inherits a .dump() method to turn class Author into json / useful in jinja2
|
|
################################################################################
|
|
class AuthorSchema(ma.SQLAlchemyAutoSchema):
|
|
class Meta:
|
|
model = Author
|
|
ordered = True
|
|
|
|
################################################################################
|
|
# Helper class that defines a form for author, used to make html <form>, with field validation (via wtforms)
|
|
################################################################################
|
|
class AuthorForm(FlaskForm):
|
|
id = HiddenField()
|
|
firstnames = StringField('FirstName(s):', [validators.DataRequired()])
|
|
surname = StringField('Surname:', [validators.DataRequired()])
|
|
submit = SubmitField('Save' )
|
|
delete = SubmitField('Delete' )
|
|
|
|
################################################################################
|
|
# Routes for author data
|
|
#
|
|
# /authors -> GET only -> prints out list of all authors
|
|
################################################################################
|
|
@app.route("/authors", methods=["GET"])
|
|
@login_required
|
|
def authors():
|
|
authors = Author.query.all()
|
|
return render_template("authors.html", authors=authors, alert=st.GetAlert(), message=st.GetMessage() )
|
|
|
|
|
|
################################################################################
|
|
# /author -> GET/POST -> creates a new author type and when created, takes you back to /authors
|
|
################################################################################
|
|
@app.route("/author", methods=["GET", "POST"])
|
|
@login_required
|
|
def new_author():
|
|
form = AuthorForm(request.form)
|
|
page_title='Create new Author'
|
|
if 'surname' not in request.form:
|
|
return render_template("edit_id_name.html", form=form, page_title=page_title )
|
|
else:
|
|
author = Author( surname=request.form["surname"], firstnames=request.form["firstnames"] )
|
|
try:
|
|
db.session.add(author)
|
|
db.session.commit()
|
|
st.SetMessage( "Created new Author ({})".format(author) )
|
|
return redirect( '/authors' )
|
|
except SQLAlchemyError as e:
|
|
st.SetAlert( "danger" )
|
|
st.SetMessage( "<b>Failed to add Author:</b> {}".format( e.orig) )
|
|
return render_template("edit_id_name.html", form=form, page_title=page_title, alert=st.GetAlert(), message=st.GetMessage() )
|
|
|
|
################################################################################
|
|
# /author/<id> -> GET/POST(save or delete) -> shows/edits/delets a single author
|
|
################################################################################
|
|
@app.route("/author/<id>", methods=["GET", "POST"])
|
|
@login_required
|
|
def author(id):
|
|
### DDP: should this be request.form or request.values?
|
|
form = AuthorForm(request.form)
|
|
page_title='Edit Author'
|
|
if request.method == 'POST' and form.validate():
|
|
try:
|
|
author = Author.query.get(id)
|
|
if 'delete' in request.form:
|
|
st.SetMessage("Successfully deleted Author: ({})".format( author ) )
|
|
author = Author.query.filter(Author.id==id).delete()
|
|
if 'submit' in request.form:
|
|
st.SetMessage("Successfully Updated Author: (From: {}".format(author) )
|
|
author.surname = request.form['surname']
|
|
author.firstnames = request.form['firstnames']
|
|
st.AppendMessage(" To: {}".format(author) )
|
|
db.session.commit()
|
|
return redirect( '/authors' )
|
|
except SQLAlchemyError as e:
|
|
st.SetAlert( "danger" )
|
|
st.SetMessage( "<b>Failed to modify Author:</b> {}".format(e.orig) )
|
|
return render_template("edit_id_name.html", form=form, page_title=page_title, alert=st.GetAlert(), message=st.GetMessage() )
|
|
else:
|
|
author = Author.query.get(id)
|
|
form = AuthorForm(request.values, obj=author)
|
|
return render_template("edit_id_name.html", object=author, form=form, page_title = page_title, alert=st.GetAlert(), message=st.GetMessage() )
|
|
|
|
################################################################################
|
|
# helper fund to GetAuthors -> author_list -> jinja2 for author drop-down in book.html
|
|
################################################################################
|
|
def GetAuthors():
|
|
return Author.query.order_by('surname','firstnames').all()
|