2017-09-14 17:48:56 +00:00
|
|
|
from datetime import datetime
|
2017-10-05 22:34:15 +00:00
|
|
|
from flask import render_template, flash, redirect, url_for, request, g, \
|
|
|
|
jsonify
|
2017-09-13 06:31:39 +00:00
|
|
|
from flask_login import login_user, logout_user, current_user, login_required
|
|
|
|
from werkzeug.urls import url_parse
|
2017-09-30 07:21:17 +00:00
|
|
|
from flask_babel import _, get_locale
|
2017-10-05 22:34:15 +00:00
|
|
|
from langdetect import detect, LangDetectException
|
2017-09-13 06:31:39 +00:00
|
|
|
from app import app, db
|
2017-09-18 05:41:40 +00:00
|
|
|
from app.forms import LoginForm, RegistrationForm, EditProfileForm, \
|
2017-09-26 07:16:46 +00:00
|
|
|
EmptyForm, PostForm, ResetPasswordRequestForm, ResetPasswordForm
|
2017-09-18 05:41:40 +00:00
|
|
|
from app.models import User, Post
|
2017-09-26 07:16:46 +00:00
|
|
|
from app.email import send_password_reset_email
|
2017-10-05 22:34:15 +00:00
|
|
|
from app.translate import translate
|
2017-09-05 06:23:07 +00:00
|
|
|
|
|
|
|
|
2017-09-14 17:48:56 +00:00
|
|
|
@app.before_request
|
|
|
|
def before_request():
|
|
|
|
if current_user.is_authenticated:
|
|
|
|
current_user.last_seen = datetime.utcnow()
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
g.locale = str(get_locale())
|
2017-09-14 17:48:56 +00:00
|
|
|
|
|
|
|
|
2017-09-18 05:41:40 +00:00
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
|
|
@app.route('/index', methods=['GET', 'POST'])
|
2017-09-13 06:31:39 +00:00
|
|
|
@login_required
|
2017-09-05 06:23:07 +00:00
|
|
|
def index():
|
2017-09-18 05:41:40 +00:00
|
|
|
form = PostForm()
|
|
|
|
if form.validate_on_submit():
|
2017-10-05 22:34:15 +00:00
|
|
|
try:
|
|
|
|
language = detect(form.post.data)
|
|
|
|
except LangDetectException:
|
|
|
|
language = ''
|
|
|
|
post = Post(body=form.post.data, author=current_user,
|
|
|
|
language=language)
|
2017-09-18 05:41:40 +00:00
|
|
|
db.session.add(post)
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('Your post is now live!'))
|
2017-09-18 05:41:40 +00:00
|
|
|
return redirect(url_for('index'))
|
|
|
|
page = request.args.get('page', 1, type=int)
|
|
|
|
posts = current_user.followed_posts().paginate(
|
|
|
|
page=page, per_page=app.config['POSTS_PER_PAGE'], error_out=False)
|
|
|
|
next_url = url_for('index', page=posts.next_num) \
|
|
|
|
if posts.has_next else None
|
|
|
|
prev_url = url_for('index', page=posts.prev_num) \
|
|
|
|
if posts.has_prev else None
|
2017-09-30 07:21:17 +00:00
|
|
|
return render_template('index.html', title=_('Home'), form=form,
|
2017-09-18 05:41:40 +00:00
|
|
|
posts=posts.items, next_url=next_url,
|
|
|
|
prev_url=prev_url)
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/explore')
|
|
|
|
@login_required
|
|
|
|
def explore():
|
|
|
|
page = request.args.get('page', 1, type=int)
|
|
|
|
posts = Post.query.order_by(Post.timestamp.desc()).paginate(
|
|
|
|
page=page, per_page=app.config['POSTS_PER_PAGE'], error_out=False)
|
|
|
|
next_url = url_for('explore', page=posts.next_num) \
|
|
|
|
if posts.has_next else None
|
|
|
|
prev_url = url_for('explore', page=posts.prev_num) \
|
|
|
|
if posts.has_prev else None
|
2017-09-30 07:21:17 +00:00
|
|
|
return render_template('index.html', title=_('Explore'),
|
|
|
|
posts=posts.items, next_url=next_url,
|
|
|
|
prev_url=prev_url)
|
2017-09-05 07:04:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/login', methods=['GET', 'POST'])
|
|
|
|
def login():
|
2017-09-13 06:31:39 +00:00
|
|
|
if current_user.is_authenticated:
|
|
|
|
return redirect(url_for('index'))
|
2017-09-05 07:04:56 +00:00
|
|
|
form = LoginForm()
|
|
|
|
if form.validate_on_submit():
|
2017-09-13 06:31:39 +00:00
|
|
|
user = User.query.filter_by(username=form.username.data).first()
|
|
|
|
if user is None or not user.check_password(form.password.data):
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('Invalid username or password'))
|
2017-09-13 06:31:39 +00:00
|
|
|
return redirect(url_for('login'))
|
|
|
|
login_user(user, remember=form.remember_me.data)
|
|
|
|
next_page = request.args.get('next')
|
|
|
|
if not next_page or url_parse(next_page).netloc != '':
|
|
|
|
next_page = url_for('index')
|
|
|
|
return redirect(next_page)
|
2017-09-30 07:21:17 +00:00
|
|
|
return render_template('login.html', title=_('Sign In'), form=form)
|
2017-09-13 06:31:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/logout')
|
|
|
|
def logout():
|
|
|
|
logout_user()
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/register', methods=['GET', 'POST'])
|
|
|
|
def register():
|
|
|
|
if current_user.is_authenticated:
|
2017-09-05 07:04:56 +00:00
|
|
|
return redirect(url_for('index'))
|
2017-09-13 06:31:39 +00:00
|
|
|
form = RegistrationForm()
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user = User(username=form.username.data, email=form.email.data)
|
|
|
|
user.set_password(form.password.data)
|
|
|
|
db.session.add(user)
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('Congratulations, you are now a registered user!'))
|
2017-09-13 06:31:39 +00:00
|
|
|
return redirect(url_for('login'))
|
2017-09-30 07:21:17 +00:00
|
|
|
return render_template('register.html', title=_('Register'), form=form)
|
2017-09-14 17:48:56 +00:00
|
|
|
|
|
|
|
|
2017-09-26 07:16:46 +00:00
|
|
|
@app.route('/reset_password_request', methods=['GET', 'POST'])
|
|
|
|
def reset_password_request():
|
|
|
|
if current_user.is_authenticated:
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
form = ResetPasswordRequestForm()
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user = User.query.filter_by(email=form.email.data).first()
|
|
|
|
if user:
|
|
|
|
send_password_reset_email(user)
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(
|
|
|
|
_('Check your email for the instructions to reset your password'))
|
2017-09-26 07:16:46 +00:00
|
|
|
return redirect(url_for('login'))
|
|
|
|
return render_template('reset_password_request.html',
|
2017-09-30 07:21:17 +00:00
|
|
|
title=_('Reset Password'), form=form)
|
2017-09-26 07:16:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/reset_password/<token>', methods=['GET', 'POST'])
|
|
|
|
def reset_password(token):
|
|
|
|
if current_user.is_authenticated:
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
user = User.verify_reset_password_token(token)
|
|
|
|
if not user:
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
form = ResetPasswordForm()
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user.set_password(form.password.data)
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('Your password has been reset.'))
|
2017-09-26 07:16:46 +00:00
|
|
|
return redirect(url_for('login'))
|
|
|
|
return render_template('reset_password.html', form=form)
|
|
|
|
|
|
|
|
|
2017-09-14 17:48:56 +00:00
|
|
|
@app.route('/user/<username>')
|
|
|
|
@login_required
|
|
|
|
def user(username):
|
|
|
|
user = User.query.filter_by(username=username).first_or_404()
|
2017-09-18 05:41:40 +00:00
|
|
|
page = request.args.get('page', 1, type=int)
|
|
|
|
posts = user.posts.order_by(Post.timestamp.desc()).paginate(
|
|
|
|
page=page, per_page=app.config['POSTS_PER_PAGE'], error_out=False)
|
|
|
|
next_url = url_for('user', username=user.username, page=posts.next_num) \
|
|
|
|
if posts.has_next else None
|
|
|
|
prev_url = url_for('user', username=user.username, page=posts.prev_num) \
|
|
|
|
if posts.has_prev else None
|
2017-09-16 07:05:17 +00:00
|
|
|
form = EmptyForm()
|
2017-09-18 05:41:40 +00:00
|
|
|
return render_template('user.html', user=user, posts=posts.items,
|
|
|
|
next_url=next_url, prev_url=prev_url, form=form)
|
2017-09-14 17:48:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/edit_profile', methods=['GET', 'POST'])
|
|
|
|
@login_required
|
|
|
|
def edit_profile():
|
2017-09-15 07:03:20 +00:00
|
|
|
form = EditProfileForm(current_user.username)
|
2017-09-14 17:48:56 +00:00
|
|
|
if form.validate_on_submit():
|
|
|
|
current_user.username = form.username.data
|
|
|
|
current_user.about_me = form.about_me.data
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('Your changes have been saved.'))
|
2017-09-14 17:48:56 +00:00
|
|
|
return redirect(url_for('edit_profile'))
|
|
|
|
elif request.method == 'GET':
|
|
|
|
form.username.data = current_user.username
|
|
|
|
form.about_me.data = current_user.about_me
|
2017-09-30 07:21:17 +00:00
|
|
|
return render_template('edit_profile.html', title=_('Edit Profile'),
|
2017-09-14 17:48:56 +00:00
|
|
|
form=form)
|
2017-09-16 07:05:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/follow/<username>', methods=['POST'])
|
|
|
|
@login_required
|
|
|
|
def follow(username):
|
|
|
|
form = EmptyForm()
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user = User.query.filter_by(username=username).first()
|
|
|
|
if user is None:
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('User %(username)s not found.', username=username))
|
2017-09-16 07:05:17 +00:00
|
|
|
return redirect(url_for('index'))
|
|
|
|
if user == current_user:
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('You cannot follow yourself!'))
|
2017-09-16 07:05:17 +00:00
|
|
|
return redirect(url_for('user', username=username))
|
|
|
|
current_user.follow(user)
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('You are following %(username)s!', username=username))
|
2017-09-16 07:05:17 +00:00
|
|
|
return redirect(url_for('user', username=username))
|
|
|
|
else:
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/unfollow/<username>', methods=['POST'])
|
|
|
|
@login_required
|
|
|
|
def unfollow(username):
|
|
|
|
form = EmptyForm()
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user = User.query.filter_by(username=username).first()
|
|
|
|
if user is None:
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('User %(username)s not found.', username=username))
|
2017-09-16 07:05:17 +00:00
|
|
|
return redirect(url_for('index'))
|
|
|
|
if user == current_user:
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('You cannot unfollow yourself!'))
|
2017-09-16 07:05:17 +00:00
|
|
|
return redirect(url_for('user', username=username))
|
|
|
|
current_user.unfollow(user)
|
|
|
|
db.session.commit()
|
2017-09-30 07:21:17 +00:00
|
|
|
flash(_('You are not following %(username)s.', username=username))
|
2017-09-16 07:05:17 +00:00
|
|
|
return redirect(url_for('user', username=username))
|
|
|
|
else:
|
|
|
|
return redirect(url_for('index'))
|
2017-10-05 22:34:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/translate', methods=['POST'])
|
|
|
|
@login_required
|
|
|
|
def translate_text():
|
|
|
|
return jsonify({'text': translate(request.form['text'],
|
|
|
|
request.form['source_language'],
|
|
|
|
request.form['dest_language'])})
|