forked from VertNet/webapp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appengine_config.py
70 lines (59 loc) · 2.2 KB
/
appengine_config.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
# This file is part of VertNet: https://github.com/VertNet/webapp
#
# VertNet is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# VertNet is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with VertNet. If not, see: http://www.gnu.org/licenses
import json
import logging
import os
import sys
def fix_path():
sys.path.append(os.path.join(os.path.dirname(__file__), 'lib'))
sys.path.append(os.path.join(os.path.dirname(__file__), 'vertnet'))
fix_path()
IS_DEV = os.environ.get('SERVER_SOFTWARE','').startswith('Development')
def get_auth():
"""Return auth file as a JSON object."""
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'auth.txt')
logging.info(path)
auth = json.loads(open(path, "r").read())
return auth
# Set namespace:
# where "namespace" in this case means:
# a concrete instance of a string associated with a data store on
# https://console.developers.google.com/project/vertnet-portal/datastore/query
def namespace_manager_default_namespace_for_request():
if IS_DEV:
return 'dwcns'
else:
return 'index-2014-02-05a'
engineauth = {
# Login uri. The user will be returned here if an error occures.
'login_uri': '/', # default 'login/'
# The user is sent here after successfull authentication.
'success_uri': '/',
'secret_key': 'alice+bob4ever',
# Comment out the following lines to use default
# User and UserProfile models.
#'user_model': 'vertnet.service.model.VertNetUser',
}
auth = get_auth()
if IS_DEV:
# GitHub settings for Development
provider = auth['dev']
else:
# GitHub settings for Production
provider = auth['prod']
engineauth['provider.github'] = provider
def webapp_add_wsgi_middleware(app):
from engineauth import middleware
return middleware.AuthMiddleware(app)