Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/rietveld/files/wrapper.py

Issue 6155422901731328: Run Rietveld using the AppEngine SDK (Closed)
Patch Set: Addressed comments and added proper configuration Created June 3, 2015, 3:31 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « modules/rietveld/files/site.conf ('k') | modules/rietveld/manifests/init.pp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/rietveld/files/wrapper.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/modules/rietveld/files/wrapper.py
@@ -0,0 +1,183 @@
+#!/usr/bin/env python
+
+from ConfigParser import SafeConfigParser
+import hashlib
+import hmac
+import json
+import os
+import re
+import sys
+import urllib
+
+OAUTH2_AUTHURL = 'https://accounts.google.com/o/oauth2/auth'
+OAUTH2_TOKENURL = 'https://accounts.google.com/o/oauth2/token'
+OAUTH2_DATAURL = 'https://www.googleapis.com/plus/v1/people/me'
+OAUTH2_SCOPE = 'email'
+
+def setup_paths(engine_dir):
+ sys.path.append(engine_dir)
+
+ import wrapper_util
+ paths = wrapper_util.Paths(engine_dir)
+ script_name = os.path.basename(__file__)
+ sys.path[0:0] = paths.script_paths(script_name)
+ return script_name, paths.script_file(script_name)
+
+def adjust_server_id():
+ from google.appengine.tools.devappserver2 import http_runtime_constants
+ http_runtime_constants.SERVER_SOFTWARE = 'Production/2.0'
+
+def fix_request_scheme():
+ from google.appengine.runtime.wsgi import WsgiRequest
+ orig_init = WsgiRequest.__init__
+ def __init__(self, *args):
+ orig_init(self, *args)
+ self._environ['wsgi.url_scheme'] = self._environ.get('HTTP_X_FORWARDED_PROTO', 'http')
+ self._environ['HTTPS'] = 'on' if self._environ['wsgi.url_scheme'] == 'https' else 'off'
+ WsgiRequest.__init__ = __init__
+
+def read_config(path):
+ config = SafeConfigParser()
+ config.read(path)
+ return config
+
+def set_storage_path(storage_path):
+ sys.argv.extend(['--storage_path', storage_path])
+
+def replace_runtime():
+ from google.appengine.tools.devappserver2 import python_runtime
+ runtime_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '_python_runtime.py')
+ python_runtime._RUNTIME_PATH = runtime_path
+ python_runtime._RUNTIME_ARGS = [sys.executable, runtime_path]
+
+def protect_cookies(cookie_secret):
+ from google.appengine.tools.devappserver2 import login
+
+ def calculate_signature(message):
+ return hmac.new(cookie_secret, message, hashlib.sha256).hexdigest()
+
+ def _get_user_info_from_dict(cookie_dict, cookie_name=login._COOKIE_NAME):
+ cookie_value = cookie_dict.get(cookie_name, '')
+
+ email, admin, user_id, signature = (cookie_value.split(':') + ['', '', '', ''])[:4]
+ if '@' not in email or signature != calculate_signature(':'.join([email, admin, user_id])):
+ return '', False, ''
+ return email, (admin == 'True'), user_id
+ login._get_user_info_from_dict = _get_user_info_from_dict
+
+ orig_create_cookie_data = login._create_cookie_data
+ def _create_cookie_data(email, admin):
+ result = orig_create_cookie_data(email, admin)
+ result += ':' + calculate_signature(result)
+ return result
+ login._create_cookie_data = _create_cookie_data
+
+def enable_oauth2(client_id, client_secret, admins):
+ from google.appengine.tools.devappserver2 import login
+
+ def get(self):
+ def request(method, url, data):
+ if method != 'POST':
+ url += '?' + urllib.urlencode(data)
+ data = None
+ else:
+ data = urllib.urlencode(data)
+ response = urllib.urlopen(url, data)
+ try:
+ return json.loads(response.read())
+ finally:
+ response.close()
+
+ def error(text):
+ self.response.status = 200
+ self.response.headers['Content-Type'] = 'text/plain'
+ self.response.write(text.encode('utf-8'))
+
+ def redirect(url):
+ self.response.status = 302
+ self.response.status_message = 'Found'
+ self.response.headers['Location'] = url.encode('utf-8')
+
+ def logout(continue_url):
+ self.response.headers['Set-Cookie'] = login._clear_user_info_cookie()
+ redirect(continue_url)
+
+ def login_step1(continue_url):
+ # See https://stackoverflow.com/questions/10271110/python-oauth2-login-with-google
+ authorize_params = {
+ 'response_type': 'code',
+ 'client_id': client_id,
+ 'redirect_uri': base_url + login.LOGIN_URL_RELATIVE,
+ 'scope': OAUTH2_SCOPE,
+ 'state': continue_url,
+ }
+ redirect(OAUTH2_AUTHURL + '?' + urllib.urlencode(authorize_params))
+
+ def login_step2(code, continue_url):
+ token_params = {
+ 'code': code,
+ 'client_id': client_id,
+ 'client_secret': client_secret,
+ 'redirect_uri': base_url + login.LOGIN_URL_RELATIVE,
+ 'grant_type':'authorization_code',
+ }
+ data = request('POST', OAUTH2_TOKENURL, token_params)
+ token = data.get('access_token')
+ if not token:
+ error('No token in response: ' + str(data))
+ return
+
+ get_params = {
+ 'access_token': token,
+ }
+ data = request('GET', OAUTH2_DATAURL, get_params)
+ emails = [e for e in data.get('emails') if e['type'] == 'account']
+ if not emails:
+ error('No email address in response: ' + str(data))
+ return
+
+ email = emails[0]['value']
+ is_admin = email in admins
+ self.response.headers['Set-Cookie'] = login._set_user_info_cookie(email, is_admin)
+ redirect(continue_url)
+
+ action = self.request.get(login.ACTION_PARAM)
+ continue_url = self.request.get(login.CONTINUE_PARAM)
+ continue_url = re.sub(r'^http:', 'https:', continue_url)
+ base_url = 'https://%s/' % self.request.environ['HTTP_HOST']
+
+ if action.lower() == login.LOGOUT_ACTION.lower():
+ logout(continue_url or base_url)
+ elif self.request.get('error'):
+ error('Authorization failed: ' + self.request.get('error'))
+ else:
+ code = self.request.get('code')
+ if code:
+ login_step2(code, self.request.get('state') or base_url)
+ else:
+ login_step1(continue_url or base_url)
+
+ login.Handler.get = get
+
+
+if __name__ == '__main__':
+ engine_dir = '/opt/google_appengine'
+ storage_path = '/var/lib/rietveld'
+
+ script_name, script_file = setup_paths(engine_dir)
+ adjust_server_id()
+ fix_request_scheme()
+
+ if script_name == 'dev_appserver.py':
+ config = read_config(os.path.join(storage_path, 'config.ini'))
+
+ set_storage_path(storage_path)
+ replace_runtime()
+ protect_cookies(config.get('main', 'cookie_secret'))
+ enable_oauth2(
+ config.get('oauth2', 'client_id'),
+ config.get('oauth2', 'client_secret'),
+ config.get('main', 'admins').split()
+ )
+
+ execfile(script_file)
« no previous file with comments | « modules/rietveld/files/site.conf ('k') | modules/rietveld/manifests/init.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld