Пример #1
0
def register():
    """Registers the user."""
    if g.user:
        return redirect(functions.url_for('/'))
    error = None
    if request.method == 'POST':
        if not request.form['username']:
            error = 'You have to enter a username'
        elif not request.form['email'] or \
                '@' not in request.form['email']:
            error = 'You have to enter a valid email address'
        elif not request.form['password']:
            error = 'You have to enter a password'
        elif request.form['password']!=request.form['confirm-password']:
            error = 'The two passwords do not match'
        elif functions.get_user_id(request.form['username']) is not None:
            error = 'The username is already taken'
        else:
            db = functions.get_db()
            db.execute('''insert into user (username, email, pw_hash) values (?, ?, ?)''',
[request.form['username'], request.form['email'],
 generate_password_hash(request.form['password'])])
            db.commit()
            flash('You were successfully registered and can login now')
            return redirect(functions.url_for('login'))
    return render_template('register.html', error=error)
Пример #2
0
def index():
    """Shows a users timeline or if no user is logged in it will
    redirect to the public timeline.  This timeline shows the user's
    messages as well as all the messages of followed users.
    """
    if not g.user:
        return redirect(functions.url_for('/public'))
    query_messages = functions.query_db('''
        select message.*, user.* from message, user
        where message.author_id = user.user_id and (
            user.user_id = ? or
            user.user_id in (select whom_id from follower
                                    where who_id = ?))
        order by message.pub_date desc limit ?''',
        [session['user_id'], session['user_id'], PER_PAGE])
    count_tweets = functions.count_db('''
        select message.* from message
        where message.author_id = ?''',
        [session['user_id']])
    count_following = functions.count_db('''
        select whom_id from follower
        where who_id = ?''', [session['user_id']])
    count_followers = functions.count_db('''
        select who_id from follower
        where whom_id = ?''', [session['user_id']])
    return render_template('timeline.html', messages=query_messages, tweets=count_tweets, following=count_following, followers=count_followers)
Пример #3
0
def login():
    """Logs the user in."""
    if g.user:
        return redirect(functions.url_for('/'))
    error = None
    if request.method == 'POST':
        user = functions.query_db('''select * from user where
            username = ?''', [request.form['username']], one=True)
        if user is None:
            error = 'Invalid username'
        elif not check_password_hash(user['pw_hash'],
                                     request.form['password']):
            error = 'Invalid password'
        else:
            flash('You were logged in')
            session['user_id'] = user['user_id']
            return redirect(functions.url_for('/'))
    return render_template('login.html', error=error)
Пример #4
0
def add_message():
    """Registers a new message for the user."""
    if 'user_id' not in session:
        abort(401)
    if request.form['text']:
        db = functions.get_db()
        db.execute('''insert into message (author_id, text, pub_date)  values (?, ?, ?)''', (session['user_id'], request.form['text'],int(time.time())))
        db.commit()
        flash('Your message was recorded')
    return redirect(functions.url_for('/'))
Пример #5
0
def add_message():
    """Registers a new message for the user."""
    if 'user_id' not in session:
        abort(401)
    if request.form['text']:
        db = functions.get_db()
        #db.execute()
        db.commit()
        flash('Your message was recorded')
    return redirect(functions.url_for('/'))
Пример #6
0
def follow_user(username):
    """Adds the current user as follower of the given user."""
    if not g.user:
        abort(401)
    whom_id = functions.get_user_id(username)
    if whom_id is None:
        abort(404)
    db = functions.get_db()
    db.execute('insert into follower (who_id, whom_id) values (?, ?)',
              [session['user_id'], whom_id])
    db.commit()
    flash('You are now following "%s"' % username)
    return redirect(functions.url_for('/%(username)s', {'username':username}))
Пример #7
0
def unfollow_user(username):
    """Removes the current user as follower of the given user."""
    if not g.user:
        abort(401)
    whom_id = functions.get_user_id(username)
    if whom_id is None:
        abort(404)
    db = functions.get_db()
    db.execute('delete from follower where who_id=? and whom_id=?',
              [session['user_id'], whom_id])
    db.commit()
    flash('You are no longer following "%s"' % username)
    return redirect(functions.url_for('/%(username)s', {'username':username}))
Пример #8
0
def add_message():
    """Registers a new message for the user."""
    if "user_id" not in session:
        abort(401)
    if request.form["text"]:
        db = functions.get_db()
        db.execute(
            """insert into message (author_id, text, pub_date)
  values (?, ?, ?)""",
            (session["user_id"], request.form["text"], int(time.time())),
        )
        db.commit()
        flash("Your message was recorded")
    return redirect(functions.url_for("/"))
Пример #9
0
def logout():
    """Logs the user out."""
    flash('You were logged out')
    session.pop('user_id', None)
    return redirect(functions.url_for('/public'))