forked from thomaxxl/safrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo_relationship_ext.py
executable file
·109 lines (98 loc) · 3.88 KB
/
demo_relationship_ext.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env python
'''
This demo application demonstrates the functionality of the safrs documented REST API
After installing safrs with pip, you can run this app standalone:
$ python3 demo_relationship.py [Listener-IP]
This will run the example on http://Listener-Ip:5000
- A database is created and a user is added
- A rest api is available
- swagger documentation is generated
'''
import sys
import logging
import builtins
from flask import Flask, redirect
from flask_sqlalchemy import SQLAlchemy
from flask_swagger_ui import get_swaggerui_blueprint
from flask_cors import CORS
from safrs.db import SAFRSBase, jsonapi_rpc
from safrs.jsonapi import SAFRSJSONEncoder, Api, paginate, jsonapi_format_response, SAFRSFormattedResponse
from safrs.errors import ValidationError, GenericError
from safrs.api_methods import search, startswith
db = SQLAlchemy()
# Example sqla database object
class User(SAFRSBase, db.Model):
'''
description: User description
'''
__tablename__ = 'Users'
id = db.Column(db.String, primary_key=True)
name = db.Column(db.String, default='')
email = db.Column(db.String, default='')
books = db.relationship('Book', back_populates="user", lazy='dynamic')
# Following method is exposed through the REST API
# This means it can be invoked with a HTTP POST
@classmethod
@jsonapi_rpc(http_methods = ['POST','GET'])
def send_mail(self, **args):
'''
description : Send an email
args:
email:
type : string
example : test email
'''
return {'result' : args}
startswith = startswith
search = search
class Book(SAFRSBase, db.Model):
'''
description: Book description
'''
__tablename__ = 'Books'
id = db.Column(db.String, primary_key=True)
name = db.Column(db.String, default='')
user_id = db.Column(db.String, db.ForeignKey('Users.id'))
user = db.relationship('User', back_populates='books')
if __name__ == '__main__':
HOST = sys.argv[1] if len(sys.argv) > 1 else '0.0.0.0'
PORT = 5000
app = Flask('SAFRS Demo Application')
CORS(app,
origins="*",
allow_headers=["Content-Type", "Authorization", "Access-Control-Allow-Credentials"],
supports_credentials=True)
app.config.update(SQLALCHEMY_DATABASE_URI='sqlite://', DEBUG=True)
db.init_app(app)
db.app = app
# Create the database
db.create_all()
API_PREFIX = '/api'
log = logging.getLogger()
log.setLevel(logging.DEBUG)
logging.getLogger(__name__).setLevel(logging.DEBUG)
builtins.log = log
# prevent redirects when a trailing slash isn't present
app.url_map.strict_slashes = False
with app.app_context():
# Create a user and a book and add the book to the user.books relationship
user = User(name='thomas', email='em@il')
book = Book(name='test_book')
for i in range(100):
user= User( name = 'test_name_' +str(i) )
user.books.append(book)
api = Api(app, api_spec_url=API_PREFIX + '/swagger', host='{}:{}'.format(HOST, PORT))
# Expose the database objects as REST API endpoints
api.expose_object(User)
api.expose_object(Book)
# Set the JSON encoder used for object to json marshalling
app.json_encoder = SAFRSJSONEncoder
@app.route('/')
def goto_api():
'''Create a redirect from / to /api'''
return redirect(API_PREFIX)
# Register the API at /api/docs
swaggerui_blueprint = get_swaggerui_blueprint(API_PREFIX, API_PREFIX + '/swagger.json')
app.register_blueprint(swaggerui_blueprint, url_prefix=API_PREFIX)
print('Starting API: http://{}:{}{}'.format(HOST, PORT, API_PREFIX))
app.run(host=HOST, port=PORT)