123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- # -*- coding: utf-8 -*-
- import json
-
- import flask
- import time
- from datetime import datetime
- from hapic import Hapic
-
- from example.fake_api.schema import *
- from hapic.ext.flask import FlaskContext
- from hapic.data import HapicData
-
- hapic = Hapic()
-
-
- class FlaskController(object):
- @hapic.with_api_doc()
- @hapic.output_body(AboutResponseSchema())
- def about(self):
- """
- General information about this API.
- """
- return {
- 'version': '1.2.3',
- 'datetime': datetime(2017, 12, 7, 10, 55, 8, 488996),
- }
-
- @hapic.with_api_doc()
- @hapic.output_body(ListsUserSchema())
- def get_users(self):
- """
- Obtain users list.
- """
- return {
- 'item_nb': 1,
- 'items': [
- {
- 'id': 4,
- 'username': 'some_user',
- 'display_name': 'Damien Accorsi',
- 'company': 'Algoo',
- },
- ],
- 'pagination': {
- 'first_id': 0,
- 'last_id': 5,
- 'current_id': 0,
- }
- }
-
- @hapic.with_api_doc()
- @hapic.input_path(UserPathSchema())
- @hapic.output_body(UserSchema())
- def get_user(self, id, hapic_data: HapicData):
- """
- Obtain one user
- """
- return {
- 'id': 4,
- 'username': 'some_user',
- 'email_address': 'some.user@hapic.com',
- 'first_name': 'Damien',
- 'last_name': 'Accorsi',
- 'display_name': 'Damien Accorsi',
- 'company': 'Algoo',
- }
-
- @hapic.with_api_doc()
- # TODO - G.M - 2017-12-5 - Support input_forms ?
- # TODO - G.M - 2017-12-5 - Support exclude, only ?
- @hapic.input_body(UserSchema(exclude=('id',)))
- @hapic.output_body(UserSchema())
- def add_user(self, hapic_data: HapicData):
- """
- Add new user
- """
- return {
- 'id': 4,
- 'username': 'some_user',
- 'email_address': 'some.user@hapic.com',
- 'first_name': 'Damien',
- 'last_name': 'Accorsi',
- 'display_name': 'Damien Accorsi',
- 'company': 'Algoo',
- }
-
- @hapic.with_api_doc()
- @hapic.output_body(NoContentSchema(),
- default_http_code=204)
- @hapic.input_path(UserPathSchema())
- def del_user(self, id, hapic_data: HapicData):
- """
- delete user
- """
- return NoContentSchema()
-
- def bind(self, app: flask.Flask):
- app.add_url_rule('/about',
- view_func=self.about)
- app.add_url_rule('/users',
- view_func=self.get_users)
- app.add_url_rule('/users/<id>',
- view_func=self.get_user)
- app.add_url_rule('/users/',
- view_func=self.add_user,
- methods=['POST'])
- app.add_url_rule('/users/<id>',
- view_func=self.del_user,
- methods=['DELETE'])
-
- if __name__ == "__main__":
- app = flask.Flask(__name__)
- controllers = FlaskController()
- controllers.bind(app)
- hapic.set_context(FlaskContext(app))
- time.sleep(1)
- s = json.dumps(
- hapic.generate_doc(
- title='Fake API',
- description='just an example of hapic API'
- )
- )
- time.sleep(1)
- # print swagger doc
- print(s)
- # Run app
- app.run(host='localhost', port=8082, debug=True)
|