2017-05-10 18:41:02 +02:00
|
|
|
|
from flask import Flask, redirect, url_for, render_template, request, flash
|
2020-10-13 13:06:32 +00:00
|
|
|
|
from models import db, Contact, User
|
2017-05-10 18:41:02 +02:00
|
|
|
|
from forms import ContactForm
|
2020-10-13 13:06:32 +00:00
|
|
|
|
from flask_login import LoginManager, current_user, login_user, login_required
|
|
|
|
|
|
2017-05-10 18:41:02 +02:00
|
|
|
|
|
|
|
|
|
# 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
|
2020-10-13 13:06:32 +00:00
|
|
|
|
# app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///book.sqlite'
|
|
|
|
|
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://root:123456@localhost/hp'
|
2017-05-10 18:41:02 +02:00
|
|
|
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
|
|
|
|
db.init_app(app)
|
|
|
|
|
|
2020-10-13 13:06:32 +00:00
|
|
|
|
# Login
|
|
|
|
|
login_manager = LoginManager()
|
|
|
|
|
login_manager.init_app(app)
|
|
|
|
|
password = 'sintow2020@'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@login_manager.user_loader
|
|
|
|
|
#使用user_loader装饰器的回调函数非常重要,他将决定 user 对象是否在登录状态
|
|
|
|
|
def user_loader(id):
|
|
|
|
|
#这个id参数的值是在 login_user(user)中传入的 user 的 id 属性
|
|
|
|
|
user = User()
|
|
|
|
|
return user
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/login', methods=['GET', 'POST'])
|
|
|
|
|
def login():
|
|
|
|
|
if request.method == 'GET':
|
|
|
|
|
return '''
|
|
|
|
|
<form action="#" method="POST">
|
|
|
|
|
<span>请输入账号</span>
|
|
|
|
|
<input type="text" name="name" id="name" placeholder="name">
|
|
|
|
|
<span>请输入密码</span>
|
|
|
|
|
<input type="password" name="pw" id="pw" placeholder="password">
|
|
|
|
|
<input type="submit" name="submit">
|
|
|
|
|
</form>
|
|
|
|
|
'''
|
|
|
|
|
name = request.form.get('name')
|
|
|
|
|
if request.form.get('pw') == password:
|
|
|
|
|
user = User()
|
|
|
|
|
login_user(user)
|
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
|
return redirect(url_for('login'))
|
2017-05-10 18:41:02 +02:00
|
|
|
|
|
|
|
|
|
@app.route("/")
|
2020-10-13 13:06:32 +00:00
|
|
|
|
@login_required
|
2017-05-10 18:41:02 +02:00
|
|
|
|
def index():
|
|
|
|
|
'''
|
|
|
|
|
Home page
|
|
|
|
|
'''
|
|
|
|
|
return redirect(url_for('contacts'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/new_contact", methods=('GET', 'POST'))
|
2020-10-13 13:06:32 +00:00
|
|
|
|
@login_required
|
2017-05-10 18:41:02 +02:00
|
|
|
|
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'))
|
2020-10-13 13:06:32 +00:00
|
|
|
|
except Exception as ex:
|
2017-05-10 18:41:02 +02:00
|
|
|
|
db.session.rollback()
|
2020-10-13 13:06:32 +00:00
|
|
|
|
flash('Error generating contact. {}'.format(ex), 'danger')
|
2017-05-10 18:41:02 +02:00
|
|
|
|
|
|
|
|
|
return render_template('web/new_contact.html', form=form)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/edit_contact/<id>", methods=('GET', 'POST'))
|
2020-10-13 13:06:32 +00:00
|
|
|
|
@login_required
|
2017-05-10 18:41:02 +02:00
|
|
|
|
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")
|
2020-10-13 13:06:32 +00:00
|
|
|
|
@login_required
|
2017-05-10 18:41:02 +02:00
|
|
|
|
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")
|
2020-10-13 13:06:32 +00:00
|
|
|
|
@login_required
|
2017-05-10 18:41:02 +02:00
|
|
|
|
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',))
|
2020-10-13 13:06:32 +00:00
|
|
|
|
@login_required
|
2017-05-11 18:31:59 +02:00
|
|
|
|
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__":
|
2020-10-13 13:06:32 +00:00
|
|
|
|
app.run(host="0.0.0.0", port=5002, debug=True)
|