Files
cosmopolite/lib/utils.py

86 lines
2.0 KiB
Python
Raw Normal View History

2014-03-25 13:43:11 -07:00
# Copyright 2014, Ian Gulliver
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2014-05-01 11:33:29 -07:00
import datetime
2014-03-25 13:43:11 -07:00
import functools
import json
2014-11-13 13:46:21 -08:00
import logging
2014-03-25 13:43:11 -07:00
import random
2014-05-01 11:33:29 -07:00
import time
2014-03-25 13:43:11 -07:00
from google.appengine.api import namespace_manager
from cosmopolite import config
from cosmopolite.lib import auth
def expects_json(handler):
@functools.wraps(handler)
def ParseInput(self):
self.request_json = json.load(self.request.body_file)
return handler(self)
return ParseInput
2014-03-25 13:43:11 -07:00
def returns_json(handler):
@functools.wraps(handler)
def SerializeResult(self):
self.response.headers['Content-Type'] = 'application/json'
2014-05-01 11:33:29 -07:00
json.dump(handler(self), self.response.out, default=EncodeJSON)
2014-03-25 13:43:11 -07:00
return SerializeResult
def chaos_monkey(handler):
@functools.wraps(handler)
def IntroduceFailures(self):
if random.random() < config.CHAOS_PROBABILITY:
2014-11-13 13:46:21 -08:00
logging.info('Chaos: returning pre-processing 503')
2014-03-25 13:43:11 -07:00
self.response.headers['Retry-After'] = '0'
self.error(503)
return
ret = handler(self)
if random.random() < config.CHAOS_PROBABILITY:
2014-11-13 13:46:21 -08:00
logging.info('Chaos: returning post-processing 503')
self.response.headers['Retry-After'] = '0'
self.error(503)
return
return ret
2014-03-25 13:43:11 -07:00
return IntroduceFailures
def local_namespace(handler):
@functools.wraps(handler)
def SetNamespace(self):
namespace_manager.set_namespace(config.NAMESPACE)
return handler(self)
return SetNamespace
2014-05-01 11:33:29 -07:00
def EncodeJSON(o):
if isinstance(o, datetime.datetime):
return time.mktime(o.timetuple())
return json.JSONEncoder.default(o)