コード例 #1
0
ファイル: user.py プロジェクト: RahulZoldyck/privly-flask
def sign_in():
    """Log the user into the server"""
    # Check for the correct form data to be submitted
    if "user[password]" not in request.form or "user[email]" not in request.form:
        abort(400)

    # Get the user and check the password
    user = User.get_by_email(request.form["user[email]"])
    if user and user.check_password(request.form["user[password]"]):
        # If the user and credentials are valid, log the user in
        login_user(user)
        return jsonify(success=True)

    # Something went wrong
    return jsonify(success=False, errors=["Login Failed"])
コード例 #2
0
def sign_in():
    """Log the user into the server"""
    # Check for the correct form data to be submitted
    if 'user[password]' not in request.form \
        or 'user[email]' not in request.form:
        abort(400)

    # Get the user and check the password
    user = User.get_by_email(request.form['user[email]'])
    if user and user.check_password(request.form['user[password]']):
        # If the user and credentials are valid, log the user in
        login_user(user)
        return jsonify(success=True)

    # Something went wrong
    return jsonify(success=False, errors=['Login Failed'])
コード例 #3
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def user_account_data():
    """
    Get user's account data
    """
    return helpers.jsonify(csrf=generate_csrf(),
                           burntAfter='2014-04-26T02:48:39+00:00',
                           canPost=True,
                           signedIn=False if user.is_anonymous() else True)
コード例 #4
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def user_account_data():
    """
    Get user's account data
    """
    return helpers.jsonify(csrf=generate_csrf(),
                           burntAfter='2014-04-26T02:48:39+00:00',
                           canPost=True,
                           signedIn=False if user.is_anonymous() else True)
コード例 #5
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def destroy_all():
    """
    Delete all user's Posts
    """
    for post in user.posts:
        post.delete(False)

    database.db_session.commit()

    return helpers.jsonify(success=True)
コード例 #6
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def destroy_all():
    """
    Delete all user's Posts
    """
    for post in user.posts:
        post.delete(False)

    database.db_session.commit()

    return helpers.jsonify(success=True)
コード例 #7
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def create():
    """
    Create a post.
    """
    random_token = None
    if app.config['USE_RANDOM_TOKEN']:
        # Check if client defined a random token, if not generate one
        if 'post[random_token]' in request.form:
            random_token = request.form['post[random_token]']
        else:
            random_token = helpers.generate_token(
                app.config['RANDOM_TOKEN_LENGTH'])

    # Create burn after date based off client paramters or generate one
    today = datetime.today()
    if 'post[seconds_until_burn]' in request.form:
        burn_after = timedelta(seconds=int(request.form['post[seconds_until_burn]'])) + \
            today
    else:
        burn_after = timedelta(seconds=app.config['POST_LIFETIME_MAX']) + \
            today

    # Set the privly application, use "PlainPost" as default
    privly_application = "PlainPost"
    if 'post[privly_application]' in request.form:
        privly_application = request.form['post[privly_application]']
        
    # Set the content of the post
    content, structured = (None, None)
    if 'post[content]' in request.form:
        content = request.form['post[content]']
    if 'post[structured_content]' in request.form:
        structured = request.form['post[structured_content]']

    # Create the Post    
    post = Post(
        random_id=helpers.generate_token(app.config['RANDOM_ID_LENGTH']),
        random_token=random_token, 
        content=content,
        structured_content=structured,
        burn_after=burn_after,
        privly_application=privly_application,
        public=True,
        user=user
    )

    post.save()

    # Create JSON response
    response = helpers.jsonify(status='created', location=post, _status=201)
    response.headers['X-Privly-Url'] = helpers.privly_URL(post)
    return response
コード例 #8
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def get_posts():
    """
    Get all a user's posts
    """
    posts = []
    for post in user.posts:
        # Get the JSON for the post
        data = post.__json__()
        # Add the privly_URL to the post JSON
        data['privly_URL'] = helpers.privly_URL(post)
        posts.append(data)

    return helpers.jsonify(posts)
コード例 #9
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def get_posts():
    """
    Get all a user's posts
    """
    posts = []
    for post in user.posts:
        # Get the JSON for the post
        data = post.__json__()
        # Add the privly_URL to the post JSON
        data['privly_URL'] = helpers.privly_URL(post)
        posts.append(data)

    return helpers.jsonify(posts)
コード例 #10
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def create():
    """
    Create a post.
    """
    random_token = None
    if app.config['USE_RANDOM_TOKEN']:
        # Check if client defined a random token, if not generate one
        if 'post[random_token]' in request.form:
            random_token = request.form['post[random_token]']
        else:
            random_token = helpers.generate_token(
                app.config['RANDOM_TOKEN_LENGTH'])

    # Create burn after date based off client paramters or generate one
    today = datetime.today()
    if 'post[seconds_until_burn]' in request.form:
        burn_after = timedelta(seconds=int(request.form['post[seconds_until_burn]'])) + \
            today
    else:
        burn_after = timedelta(seconds=app.config['POST_LIFETIME_MAX']) + \
            today

    # Set the privly application, use "PlainPost" as default
    privly_application = "PlainPost"
    if 'post[privly_application]' in request.form:
        privly_application = request.form['post[privly_application]']

    # Set the content of the post
    content, structured = (None, None)
    if 'post[content]' in request.form:
        content = request.form['post[content]']
    if 'post[structured_content]' in request.form:
        structured = request.form['post[structured_content]']

    # Create the Post
    post = Post(random_id=helpers.generate_token(
        app.config['RANDOM_ID_LENGTH']),
                random_token=random_token,
                content=content,
                structured_content=structured,
                burn_after=burn_after,
                privly_application=privly_application,
                public=True,
                user=user)

    post.save()

    # Create JSON response
    response = helpers.jsonify(status='created', location=post, _status=201)
    response.headers['X-Privly-Url'] = helpers.privly_URL(post)
    return response
コード例 #11
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def get_post(id):
    """
    Gets a single user's post
    """
    post = Post.get_post(id)

    # Check if post is valid
    if not post:
        abort(403)

    # Check if random token is accurate if enabled
    if app.config['USE_RANDOM_TOKEN'] and \
        ('random_token' not in request.args or
        request.args.get('random_token') != post.random_token):
        abort(403)

    return helpers.jsonify(post.__json__(user.get_id() == post.user.get_id()))
コード例 #12
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def get_post(id):
    """
    Gets a single user's post
    """
    post = Post.get_post(id)

    # Check if post is valid
    if not post:
        abort(403)

    # Check if random token is accurate if enabled
    if app.config['USE_RANDOM_TOKEN'] and \
        ('random_token' not in request.args or
        request.args.get('random_token') != post.random_token):
        abort(403)

    return helpers.jsonify(post.__json__(user.get_id() == post.user.get_id()))
コード例 #13
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def update(id):
    """
    Update a user's Post
    """

    # Load the user's post out of the database
    post = Post.get_user_post(user, id)

    # Check if post is valid
    if not post:
        abort(403)

    # Check if random token correct if enabled
    if app.config['USE_RANDOM_TOKEN'] and \
            ('random_token' not in request.args or
            request.args.get('random_token') != post.random_token):
        abort(403)

    # Update the random token if the server is using random_token
    if app.config['USE_RANDOM_TOKEN'] and 'post[random_token]' in request.form:
        post.random_token = request.form['post[random_token]']

    # Update the `burn_after` date if `seconds_until_burn` is sent
    if 'post[seconds_until_burn]' in request.form:
        post.burn_after = datetime.today() + \
            timedelta(seconds=int(request.form['post[seconds_until_burn]']))

    # Update the Privly application if the `privly_application` string is sent
    if 'post[privly_application]' in request.form:
        post.privly_application = request.form['post[privly_application]']

    # Update `content` or `structured_content` if either is set
    if 'post[content]' in request.form:
        post.content = request.form['post[content]']
    if 'post[structured_content]' in request.form:
        post.structured_content = request.form['post[structured_content]']

    post.updated = datetime.now()

    # Save and update
    post.save()

    return helpers.jsonify(post)
コード例 #14
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def update(id):
    """
    Update a user's Post
    """

    # Load the user's post out of the database
    post = Post.get_user_post(user, id)

    # Check if post is valid
    if not post:
        abort(403)

    # Check if random token correct if enabled
    if app.config['USE_RANDOM_TOKEN'] and \
            ('random_token' not in request.args or
            request.args.get('random_token') != post.random_token):
            abort(403)

    # Update the random token if the server is using random_token
    if app.config['USE_RANDOM_TOKEN'] and 'post[random_token]' in request.form:
        post.random_token = request.form['post[random_token]']

    # Update the `burn_after` date if `seconds_until_burn` is sent
    if 'post[seconds_until_burn]' in request.form:
        post.burn_after = datetime.today() + \
            timedelta(seconds=int(request.form['post[seconds_until_burn]']))

    # Update the Privly application if the `privly_application` string is sent
    if 'post[privly_application]' in request.form:
        post.privly_application = request.form['post[privly_application]']

    # Update `content` or `structured_content` if either is set
    if 'post[content]' in request.form:
        post.content = request.form['post[content]']
    if 'post[structured_content]' in request.form:
        post.structured_content = request.form['post[structured_content]']

    post.updated = datetime.now()

    # Save and update
    post.save()

    return helpers.jsonify(post)
コード例 #15
0
ファイル: post.py プロジェクト: SJA0000016/privly-flask
def destroy(id):
    """
    Deletes a user's Post
    """
    # Load the user's post out of the database
    post = Post.get_user_post(user, id)

    # Is the post invalid?
    if not post:
        abort(403)

    # Check if random token correct if enabled
    if app.config['USE_RANDOM_TOKEN'] and \
        ('random_token' not in request.args or
        request.args.get('random_token') != post.random_token):
        abort(403)

    post.delete()

    return helpers.jsonify(success=True)
コード例 #16
0
ファイル: post.py プロジェクト: RahulZoldyck/privly-flask
def destroy(id):
    """
    Deletes a user's Post
    """
    # Load the user's post out of the database
    post = Post.get_user_post(user, id)

    # Is the post invalid?
    if not post:
        abort(403)

    # Check if random token correct if enabled
    if app.config['USE_RANDOM_TOKEN'] and \
        ('random_token' not in request.args or
        request.args.get('random_token') != post.random_token):
        abort(403)

    post.delete()

    return helpers.jsonify(success=True)
コード例 #17
0
ファイル: user.py プロジェクト: RahulZoldyck/privly-flask
def sign_out():
    """Log the user out"""
    logout_user()
    return jsonify(success=True)
コード例 #18
0
def sign_out():
    """Log the user out"""
    logout_user()
    return jsonify(success=True)