forked from openannotation/annotator-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
executable file
·93 lines (72 loc) · 3.16 KB
/
run.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
#!/usr/bin/env python
"""
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, document, store
from tests.helpers import MockUser, MockConsumer, MockAuthenticator
from tests.helpers import mock_authorizer
here = os.path.dirname(__file__)
def main():
app = Flask(__name__)
cfg_file = 'annotator.cfg'
if len(sys.argv) == 2:
cfg_file = sys.argv[1]
cfg_path = os.path.join(here, cfg_file)
try:
app.config.from_pyfile(cfg_path)
except IOError:
print("Could not find config file %s" % cfg_path, file=sys.stderr)
print("Perhaps you need to copy annotator.cfg.example to annotator.cfg", file=sys.stderr)
sys.exit(1)
if app.config.get('ELASTICSEARCH_HOST') is not None:
es.host = app.config['ELASTICSEARCH_HOST']
# We do need to set this one (the other settings have fine defaults)
default_index = app.name
es.index = app.config.get('ELASTICSEARCH_INDEX', default_index)
if app.config.get('AUTHZ_ON') is not None:
es.authorization_enabled = app.config['AUTHZ_ON']
if app.config.get('ELASTICSEARCH_COMPATIBILITY_MODE') is not None:
es.compatibility_mode = \
app.config['ELASTICSEARCH_COMPATIBILITY_MODE']
with app.test_request_context():
annotation.Annotation.create_all()
document.Document.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')
# 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)
host = os.environ.get('HOST', '127.0.0.1')
port = int(os.environ.get('PORT', 5000))
app.run(host=host, port=port)
if __name__ == '__main__':
main()