Skip to content

Instantly share code, notes, and snippets.

@gionniboy
Forked from miguelgrinberg/rest-server.py
Created November 17, 2016 00:50
Show Gist options
  • Save gionniboy/8cc8491d6a1dcc0807be1d3cf9f26dcf to your computer and use it in GitHub Desktop.
Save gionniboy/8cc8491d6a1dcc0807be1d3cf9f26dcf to your computer and use it in GitHub Desktop.

Revisions

  1. @miguelgrinberg miguelgrinberg revised this gist Jun 10, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion rest-server.py
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@
    from flask import Flask, jsonify, abort, request, make_response, url_for
    from flask.ext.httpauth import HTTPBasicAuth

    app = Flask(__name__)
    app = Flask(__name__, static_url_path = "")
    auth = HTTPBasicAuth()

    @auth.get_password
  2. @miguelgrinberg miguelgrinberg revised this gist Jun 10, 2013. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion rest-server.py
    Original file line number Diff line number Diff line change
    @@ -13,7 +13,8 @@ def get_password(username):

    @auth.error_handler
    def unauthorized():
    return make_response(jsonify( { 'error': 'Unauthorized access' } ), 401)
    return make_response(jsonify( { 'error': 'Unauthorized access' } ), 403)
    # return 403 instead of 401 to prevent browsers from displaying the default auth dialog

    @app.errorhandler(400)
    def not_found(error):
  3. @miguelgrinberg miguelgrinberg renamed this gist Jun 10, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  4. @miguelgrinberg miguelgrinberg revised this gist Jun 1, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion rest-app.py
    Original file line number Diff line number Diff line change
    @@ -91,7 +91,7 @@ def update_task(task_id):
    task[0]['title'] = request.json.get('title', task[0]['title'])
    task[0]['description'] = request.json.get('description', task[0]['description'])
    task[0]['done'] = request.json.get('done', task[0]['done'])
    return jsonify( { 'task': make_public_task(task) } )
    return jsonify( { 'task': make_public_task(task[0]) } )

    @app.route('/todo/api/v1.0/tasks/<int:task_id>', methods = ['DELETE'])
    @auth.login_required
  5. @miguelgrinberg miguelgrinberg renamed this gist May 20, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  6. @miguelgrinberg miguelgrinberg created this gist May 20, 2013.
    106 changes: 106 additions & 0 deletions app.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,106 @@
    #!flask/bin/python
    from flask import Flask, jsonify, abort, request, make_response, url_for
    from flask.ext.httpauth import HTTPBasicAuth

    app = Flask(__name__)
    auth = HTTPBasicAuth()

    @auth.get_password
    def get_password(username):
    if username == 'miguel':
    return 'python'
    return None

    @auth.error_handler
    def unauthorized():
    return make_response(jsonify( { 'error': 'Unauthorized access' } ), 401)

    @app.errorhandler(400)
    def not_found(error):
    return make_response(jsonify( { 'error': 'Bad request' } ), 400)

    @app.errorhandler(404)
    def not_found(error):
    return make_response(jsonify( { 'error': 'Not found' } ), 404)

    tasks = [
    {
    'id': 1,
    'title': u'Buy groceries',
    'description': u'Milk, Cheese, Pizza, Fruit, Tylenol',
    'done': False
    },
    {
    'id': 2,
    'title': u'Learn Python',
    'description': u'Need to find a good Python tutorial on the web',
    'done': False
    }
    ]

    def make_public_task(task):
    new_task = {}
    for field in task:
    if field == 'id':
    new_task['uri'] = url_for('get_task', task_id = task['id'], _external = True)
    else:
    new_task[field] = task[field]
    return new_task

    @app.route('/todo/api/v1.0/tasks', methods = ['GET'])
    @auth.login_required
    def get_tasks():
    return jsonify( { 'tasks': map(make_public_task, tasks) } )

    @app.route('/todo/api/v1.0/tasks/<int:task_id>', methods = ['GET'])
    @auth.login_required
    def get_task(task_id):
    task = filter(lambda t: t['id'] == task_id, tasks)
    if len(task) == 0:
    abort(404)
    return jsonify( { 'task': make_public_task(task[0]) } )

    @app.route('/todo/api/v1.0/tasks', methods = ['POST'])
    @auth.login_required
    def create_task():
    if not request.json or not 'title' in request.json:
    abort(400)
    task = {
    'id': tasks[-1]['id'] + 1,
    'title': request.json['title'],
    'description': request.json.get('description', ""),
    'done': False
    }
    tasks.append(task)
    return jsonify( { 'task': make_public_task(task) } ), 201

    @app.route('/todo/api/v1.0/tasks/<int:task_id>', methods = ['PUT'])
    @auth.login_required
    def update_task(task_id):
    task = filter(lambda t: t['id'] == task_id, tasks)
    if len(task) == 0:
    abort(404)
    if not request.json:
    abort(400)
    if 'title' in request.json and type(request.json['title']) != unicode:
    abort(400)
    if 'description' in request.json and type(request.json['description']) is not unicode:
    abort(400)
    if 'done' in request.json and type(request.json['done']) is not bool:
    abort(400)
    task[0]['title'] = request.json.get('title', task[0]['title'])
    task[0]['description'] = request.json.get('description', task[0]['description'])
    task[0]['done'] = request.json.get('done', task[0]['done'])
    return jsonify( { 'task': make_public_task(task) } )

    @app.route('/todo/api/v1.0/tasks/<int:task_id>', methods = ['DELETE'])
    @auth.login_required
    def delete_task(task_id):
    task = filter(lambda t: t['id'] == task_id, tasks)
    if len(task) == 0:
    abort(404)
    tasks.remove(task[0])
    return jsonify( { 'result': True } )

    if __name__ == '__main__':
    app.run(debug = True)