-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathdemo_rel2.py
executable file
·315 lines (246 loc) · 10.5 KB
/
demo_rel2.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#!/usr/bin/env python3
# This script is deployed on thomaxxl.pythonanywhere.com
#
# This is a demo application to demonstrate the functionality of the safrs REST API
#
# It can be ran standalone like this:
# python demo_relationship.py [Listener-IP]
#
# This will run the example on http://Listener-Ip:5000
#
# - A database is created and items are added
# - A rest api is available
# - swagger2 documentation is generated
# - jsonapi-admin pages are served
#
# All sorts of customizations are applied to the exposed objects
# The explanation can be found on the github wiki (https://github.com/thomaxxl/safrs/wiki)
#
import sys
import os
import datetime
import hashlib
from flask import Flask, redirect, send_from_directory, request
from flask_sqlalchemy import SQLAlchemy
from flask_cors import CORS
from safrs import SafrsApi, SAFRSRestAPI # api factory
from safrs import SAFRSBase # db Mixin
from safrs import SAFRSFormattedResponse, jsonapi_format_response, log, paginate
from safrs import jsonapi_attr, ValidationError
from safrs import jsonapi_rpc # rpc decorator
from safrs.api_methods import search, startswith, duplicate # rpc methods
from flask import url_for, jsonify
from flask_httpauth import HTTPBasicAuth
# This html will be rendered in the swagger UI
description = """
<pre>
Login:
username: user
password: pass
</pre>
<a href=http://jsonapi.org>Json:API</a> compliant API built with https://github.com/thomaxxl/safrs <br/>
- <a href="https://github.com/thomaxxl/safrs/blob/master/examples/demo_pythonanywhere_com.py">Source code of this page</a><br/>
- <a href="/ja/index.html">reactjs+redux frontend</a>
- Auto-generated swagger spec: <a href=/api/swagger.json>swagger.json</a><br/>
- <a href="/swagger_editor/index.html?url=/api/swagger.json">Swagger2 Editor</a> (updates can be added with the SafrsApi "custom_swagger" argument)
"""
db = SQLAlchemy()
# SQLAlchemy Mixin Superclass with multiple inheritance
class BaseModel(SAFRSBase, db.Model):
__abstract__ = True
# Customized columns
class WriteOnlyColumn(db.Column):
"""
The "permissions" attribute set to "w" indicates that the column shouldn't be readable
in this case it's write-only
"""
permissions = "w"
class DocumentedColumn(db.Column):
"""
The class attributes are used for the swagger
"""
description = "My custom column description"
swagger_type = "string"
swagger_format = "string"
name_format = "filter[{}]" # Format string with the column name as argument
required = False
default_filter = ""
sample = "my custom value"
# Customized relationships
def hiddenRelationship(*args, **kwargs):
"""
To hide a relationship, set the expose attribute to False
"""
relationship = db.relationship(*args, **kwargs)
relationship.expose = False
return relationship
# SQLA objects that will be exposed
friendship = db.Table(
"friendships",
db.metadata,
db.Column("friend_a_id", db.Integer, db.ForeignKey("People.id"), primary_key=True),
db.Column("friend_b_id", db.Integer, db.ForeignKey("People.id"), primary_key=True),
)
class Book(BaseModel):
"""
description: My book description
"""
__tablename__ = "Books"
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String, default="")
reader_id = db.Column(db.Integer, db.ForeignKey("People.id"))
author_id = db.Column(db.Integer, db.ForeignKey("People.id"))
publisher_id = db.Column(db.Integer, db.ForeignKey("Publishers.id"))
publisher = db.relationship("Publisher", back_populates="books", cascade="save-update, delete")
reviews = db.relationship("Review", backref="book", cascade="save-update, delete")
published = db.Column(db.Time)
class Person(BaseModel):
"""
description: My person description
"""
__tablename__ = "People"
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, default="John Doe")
email = db.Column(db.String, default="")
comment = DocumentedColumn(db.Text, default="my empty comment")
dob = db.Column(db.Date)
books_read = db.relationship("Book", backref="reader", foreign_keys=[Book.reader_id], cascade="save-update, merge")
books_written = db.relationship("Book", backref="author", foreign_keys=[Book.author_id])
reviews = db.relationship("Review", backref="reader", cascade="save-update, delete")
password = WriteOnlyColumn(db.String, default="")
employer_id = db.Column(db.Integer, db.ForeignKey("Publishers.id"))
employer = hiddenRelationship("Publisher", back_populates="employees", cascade="save-update, delete")
_salary = db.Column(db.String, default="") # hidden column
friends = db.relationship(
"Person", secondary=friendship, primaryjoin=id == friendship.c.friend_a_id, secondaryjoin=id == friendship.c.friend_b_id
)
class Publisher(BaseModel):
"""
description: My publisher description
---
demonstrate custom (de)serialization in __init__ and to_dict
"""
__tablename__ = "Publishers"
id = db.Column(db.Integer, primary_key=True) # Integer pk instead of str
name = db.Column(db.String, default="")
# books = db.relationship("Book", back_populates="publisher", lazy="dynamic")
books = db.relationship("Book", back_populates="publisher")
employees = hiddenRelationship(Person, back_populates="employer")
data = db.Column(db.JSON, default={1: 1})
def __init__(self, *args, **kwargs):
custom_field = kwargs.pop("custom_field", None)
SAFRSBase.__init__(self, **kwargs)
def to_dict(self):
result = SAFRSBase.to_dict(self)
result["custom_field"] = "some customization"
return result
class Review(BaseModel):
"""
description: Review description
"""
__tablename__ = "Reviews"
book_id = db.Column(db.Integer, db.ForeignKey("Books.id"), primary_key=True)
reader_id = db.Column(db.Integer, db.ForeignKey("People.id", ondelete="CASCADE"), primary_key=True)
review = db.Column(db.String, default="")
created = db.Column(db.DateTime, default=datetime.datetime.now())
http_methods = {"GET", "POST"} # only allow GET and POST
# API app initialization:
# Create the instances and exposes the classes
def populate_db():
# populate the database
if Person.query.all():
return
print("Populating db")
publisher = Publisher(name="publisher")
NR_INSTANCES = 4
for i in range(NR_INSTANCES):
reader = Person(name="Reader " + str(i), email="reader@email" + str(i), password=hashlib.sha256(bytes(i)).hexdigest())
author = Person(name="Author " + str(i), email="author@email" + str(i), password=hashlib.sha256(bytes(i)).hexdigest())
book = Book(title="book_title" + str(i))
review = Review(reader_id=2 * i + 1, book_id=book.id, review=f"review {i}")
publisher.books.append(book)
reader.books_read.append(book)
author.books_written.append(book)
reader.friends.append(author)
author.friends.append(reader)
test_reader = Person.get_instance(1)
test_reader_friend = Person.get_instance(3)
test_author = Person.get_instance(2)
test_reader.friends.append(test_reader_friend)
test_reader.friends.append(test_author)
test_review = Review(reader_id=1, book_id=book.id, review=f"test review")
test_book = book = Book(title="test_book_title")
test_author.books_written.append(test_book)
test_book = book = Book(title="test_book_title2")
test_author.books_written.append(test_book)
def print_db():
test_reader = Person.get_instance(1)
test_reader_friend = Person.get_instance(3)
test_author = Person.get_instance(2)
print(f"{test_reader} Reviews:")
print(test_reader.reviews)
for r in test_reader.reviews:
print(f"reviews.book {r} {r.book}")
print(f"{test_reader} Friends:")
print(test_reader.friends)
for f in test_reader.friends:
print(f"friends.books_written {f} {f.books_written}")
print(f"friends.books_read {f} {f.books_read}")
print(f"author books_written", test_author.books_written)
# Authentication with flask-httpauth
# https://flask-httpauth.readthedocs.io/en/latest/
auth = HTTPBasicAuth()
@auth.verify_password
def verify_password(username_or_token, password):
# Implement your authentication here
if username_or_token == "user" and password == "pass":
return True
return False
def start_api(swagger_host="0.0.0.0", PORT=None):
# Add startswith methods so we can perform lookups from the frontend
SAFRSBase.startswith = startswith
# Needed because we don't want to implicitly commit when using flask-admin
# SAFRSBase.db_commit = False
with app.app_context():
db.init_app(app)
db.create_all()
custom_swagger = {
"info": {"title": "My Customized Title"},
"securityDefinitions": {"ApiKeyAuth": {"type": "apiKey", "in": "header", "name": "My-ApiKey"}},
} # Customized swagger will be merged
api = SafrsApi(
app,
host=swagger_host,
port=PORT,
prefix=API_PREFIX,
custom_swagger=custom_swagger,
schemes=["http", "https"],
description=description,
)
for model in [Person, Book, Review, Publisher]:
# Create an API endpoint
api.expose_object(model, method_decorators=[auth.login_required])
populate_db()
print_db()
API_PREFIX = "/api" # swagger location
app = Flask("SAFRS Demo App", template_folder="/home/thomaxxl/mysite/templates")
app.secret_key = "not so secret"
CORS(app, origins="*", allow_headers=["Content-Type", "Authorization", "Access-Control-Allow-Credentials"], supports_credentials=True)
app.config.update(
SQLALCHEMY_DATABASE_URI="sqlite:///test_db.sqlite", DEBUG=True
) # DEBUG will also show safrs log messages + exception messages
@app.route("/ja") # React jsonapi frontend
@app.route("/ja/<path:path>", endpoint="jsonapi_admin")
def send_ja(path="index.html"):
return send_from_directory(os.path.join(os.path.dirname(__file__), "..", "jsonapi-admin/build"), path)
@app.route("/swagger_editor/<path:path>", endpoint="swagger_editor")
def send_swagger_editor(path="index.html"):
return send_from_directory(os.path.join(os.path.dirname(__file__), "..", "swagger-editor"), path)
@app.route("/")
def goto_api():
return redirect(API_PREFIX)
if __name__ == "__main__":
HOST = sys.argv[1] if len(sys.argv) > 1 else "thomaxxl.pythonanywhere.com"
PORT = int(sys.argv[2]) if len(sys.argv) > 2 else 5000
start_api(HOST, PORT)
app.run(host=HOST, port=PORT, threaded=False)