forked from openannotation/annotator-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.py
More file actions
71 lines (56 loc) · 2.38 KB
/
run.py
File metadata and controls
71 lines (56 loc) · 2.38 KB
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
"""
run.py: A simple example app for using the Annotator Store blueprint
This file creates and runs a Flask[1] application which mounts the Annotator
Store blueprint at its root. It demonstrates how the major components of the
Annotator Store (namely the 'store' blueprint, the annotation model and the
auth and authz helper modules) fit together, but it is emphatically NOT
INTENDED FOR PRODUCTION USE.
[1]: http://flask.pocoo.org
"""
from __future__ import print_function
import os
import sys
from flask import Flask, g, current_app
from annotator import es, annotation, auth, authz, store
from tests.helpers import MockUser, MockConsumer, MockAuthenticator
from tests.helpers import mock_authorizer
here = os.path.dirname(__file__)
def main():
app = Flask(__name__)
try:
app.config.from_pyfile(os.path.join(here, 'annotator.cfg'))
except IOError:
print("Please copy example config from annotator.cfg.example to annotator.cfg", file=sys.stderr)
sys.exit(1)
es.init_app(app)
with app.test_request_context():
annotation.Annotation.create_all()
@app.before_request
def before_request():
# In a real app, the current user and consumer would be determined by
# a lookup in either the session or the request headers, as described
# in the Annotator authentication documentation[1].
#
# [1]: https://github.com/okfn/annotator/wiki/Authentication
g.user = MockUser('alice')
g.session_user = MockUser('alice')
g.consumer = MockConsumer('annotateit')
# By default, this test application won't do full-on authentication
# tests. Set AUTH_ON to True in the config file to enable (limited)
# authentication testing.
if current_app.config['AUTH_ON']:
g.auth = auth.Authenticator(lambda x: MockConsumer('annotateit'))
else:
g.auth = MockAuthenticator()
# Similarly, this test application won't prevent you from modifying
# annotations you don't own, deleting annotations you're disallowed
# from deleting, etc. Set AUTHZ_ON to True in the config file to
# enable authorization testing.
if current_app.config['AUTHZ_ON']:
g.authorize = authz.authorize
else:
g.authorize = mock_authorizer
app.register_blueprint(store.store)
app.run()
if __name__ == '__main__':
main()