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__)
|
2017-05-16 22:03:04 +02:00
|
|
|
app.config['SECRET_KEY'] = 'my secret'
|
2018-05-01 10:05:22 +02:00
|
|
|
app.config['DEBUG'] = False
|
2017-05-10 18:41:02 +02:00
|
|
|
|
|
|
|
# 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-16 22:00:20 +02:00
|
|
|
if form.validate_on_submit():
|
|
|
|
my_contact = Contact()
|
|
|
|
form.populate_obj(my_contact)
|
|
|
|
db.session.add(my_contact)
|
2017-05-10 18:41:02 +02:00
|
|
|
try:
|
|
|
|
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-16 22:00:20 +02:00
|
|
|
form = ContactForm(obj=my_contact)
|
2017-05-11 18:31:59 +02:00
|
|
|
if form.validate_on_submit():
|
2017-05-10 18:41:02 +02:00
|
|
|
try:
|
|
|
|
# Update contact
|
2017-05-16 22:00:20 +02:00
|
|
|
form.populate_obj(my_contact)
|
2017-05-10 18:41:02 +02:00
|
|
|
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__":
|
2018-05-01 10:05:22 +02:00
|
|
|
app.run(host="0.0.0.0")
|