2017-05-10 18:41:02 +02:00
|
|
|
from flask import Flask, redirect, url_for, render_template, request, flash
|
2017-05-11 18:31:59 +02:00
|
|
|
from models import db, Contact
|
2017-05-10 18:41:02 +02:00
|
|
|
from forms import ContactForm
|
|
|
|
|
|
|
|
# Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
app.secret_key = 'my secret'
|
|
|
|
|
|
|
|
# Database
|
|
|
|
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///book.sqlite'
|
|
|
|
# app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://root@localhost/book'
|
|
|
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
|
|
|
db.init_app(app)
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/")
|
|
|
|
def index():
|
|
|
|
'''
|
|
|
|
Home page
|
|
|
|
'''
|
|
|
|
return redirect(url_for('contacts'))
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/new_contact", methods=('GET', 'POST'))
|
|
|
|
def new_contact():
|
|
|
|
'''
|
|
|
|
Create new contact
|
|
|
|
'''
|
|
|
|
form = ContactForm()
|
2017-05-11 18:31:59 +02:00
|
|
|
if form.validate_on_submit():
|
2017-05-10 18:41:02 +02:00
|
|
|
# Get form
|
2017-05-11 18:31:59 +02:00
|
|
|
name = form.name.data
|
|
|
|
surname = form.surname.data
|
|
|
|
email = form.email.data
|
|
|
|
phone = form.phone.data
|
2017-05-10 18:41:02 +02:00
|
|
|
# Save in database
|
|
|
|
try:
|
2017-05-11 18:31:59 +02:00
|
|
|
my_contact = Contact(name, surname, email, phone)
|
2017-05-10 18:41:02 +02:00
|
|
|
db.session.add(my_contact)
|
|
|
|
db.session.commit()
|
|
|
|
# User info
|
|
|
|
flash('Contact created correctly', 'success')
|
|
|
|
return redirect(url_for('contacts'))
|
|
|
|
except:
|
|
|
|
db.session.rollback()
|
|
|
|
flash('Error generating contact.', 'danger')
|
|
|
|
|
|
|
|
return render_template('web/new_contact.html', form=form)
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/edit_contact/<id>", methods=('GET', 'POST'))
|
|
|
|
def edit_contact(id):
|
|
|
|
'''
|
|
|
|
Edit contact
|
|
|
|
|
|
|
|
:param id: Id from contact
|
|
|
|
'''
|
2017-05-11 18:31:59 +02:00
|
|
|
my_contact = Contact.query.filter_by(id=id).first()
|
2017-05-11 23:51:06 +02:00
|
|
|
form = ContactForm(
|
|
|
|
name=my_contact.name,
|
|
|
|
surname=my_contact.surname,
|
|
|
|
email=my_contact.email,
|
|
|
|
phone=my_contact.phone
|
|
|
|
)
|
2017-05-11 18:31:59 +02:00
|
|
|
if form.validate_on_submit():
|
2017-05-10 18:41:02 +02:00
|
|
|
# Get form
|
2017-05-11 18:31:59 +02:00
|
|
|
name = form.name.data
|
|
|
|
surname = form.surname.data
|
|
|
|
email = form.email.data
|
|
|
|
phone = form.phone.data
|
|
|
|
|
2017-05-10 18:41:02 +02:00
|
|
|
try:
|
|
|
|
# Update contact
|
|
|
|
my_contact.name = name
|
|
|
|
my_contact.surname = surname
|
|
|
|
my_contact.email = email
|
|
|
|
my_contact.phone = phone
|
|
|
|
db.session.add(my_contact)
|
|
|
|
db.session.commit()
|
|
|
|
# User info
|
|
|
|
flash('Saved successfully', 'success')
|
|
|
|
except:
|
|
|
|
db.session.rollback()
|
|
|
|
flash('Error update contact.', 'danger')
|
|
|
|
return render_template(
|
|
|
|
'web/edit_contact.html',
|
2017-05-11 23:51:06 +02:00
|
|
|
form=form)
|
2017-05-10 18:41:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
@app.route("/contacts")
|
|
|
|
def contacts():
|
|
|
|
'''
|
|
|
|
Show alls contacts
|
|
|
|
'''
|
2017-05-11 18:31:59 +02:00
|
|
|
contacts = Contact.query.order_by(Contact.name).all()
|
2017-05-10 18:41:02 +02:00
|
|
|
return render_template('web/contacts.html', contacts=contacts)
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/search")
|
|
|
|
def search():
|
|
|
|
'''
|
|
|
|
Search
|
|
|
|
'''
|
|
|
|
name_search = request.args.get('name')
|
2017-05-11 18:31:59 +02:00
|
|
|
all_contacts = Contact.query.filter(
|
|
|
|
Contact.name.contains(name_search)
|
|
|
|
).order_by(Contact.name).all()
|
2017-05-10 18:41:02 +02:00
|
|
|
return render_template('web/contacts.html', contacts=all_contacts)
|
|
|
|
|
|
|
|
|
2017-05-11 18:31:59 +02:00
|
|
|
@app.route("/contacts/delete", methods=('POST',))
|
|
|
|
def contacts_delete():
|
2017-05-10 18:41:02 +02:00
|
|
|
'''
|
|
|
|
Delete contact
|
|
|
|
'''
|
|
|
|
try:
|
2017-05-11 18:31:59 +02:00
|
|
|
mi_contacto = Contact.query.filter_by(id=request.form['id']).first()
|
2017-05-10 18:41:02 +02:00
|
|
|
db.session.delete(mi_contacto)
|
|
|
|
db.session.commit()
|
|
|
|
flash('Delete successfully.', 'danger')
|
|
|
|
except:
|
|
|
|
db.session.rollback()
|
|
|
|
flash('Error delete contact.', 'danger')
|
|
|
|
|
|
|
|
return redirect(url_for('contacts'))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
app.debug = True
|
|
|
|
app.run()
|