""" raven.contrib.tornado ~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2012 by the Sentry Team, see AUTHORS for more details :license: BSD, see LICENSE for more details """ from __future__ import absolute_import import time import raven from raven.base import Client from raven.utils import get_auth_header from tornado.httpclient import AsyncHTTPClient, HTTPError class AsyncSentryClient(Client): """A mixin class that could be used along with request handlers to asynchronously send errors to sentry. The client also captures the information from the request handlers """ def __init__(self, *args, **kwargs): self.validate_cert = kwargs.pop('validate_cert', True) super(AsyncSentryClient, self).__init__(*args, **kwargs) def capture(self, *args, **kwargs): """ Takes the same arguments as the super function in :py:class:`Client` and extracts the keyword argument callback which will be called on asynchronous sending of the request :return: a 32-length string identifying this event and checksum """ if not self.is_enabled(): return data = self.build_msg(*args, **kwargs) self.send(callback=kwargs.get('callback', None), **data) return (data['event_id'],) def send(self, auth_header=None, callback=None, **data): """ Serializes the message and passes the payload onto ``send_encoded``. """ message = self.encode(data) return self.send_encoded(message, auth_header=auth_header, callback=callback) def send_encoded(self, message, auth_header=None, **kwargs): """ Given an already serialized message, signs the message and passes the payload off to ``send_remote`` for each server specified in the servers configuration. callback can be specified as a keyword argument """ if not auth_header: timestamp = time.time() auth_header = get_auth_header( protocol=self.protocol_version, timestamp=timestamp, client='raven-python/%s' % (raven.VERSION,), api_key=self.public_key, api_secret=self.secret_key, ) for url in self.servers: headers = { 'X-Sentry-Auth': auth_header, 'Content-Type': 'application/octet-stream', } self.send_remote( url=url, data=message, headers=headers, callback=kwargs.get('callback', None) ) def send_remote(self, url, data, headers=None, callback=None): if headers is None: headers = {} if not self.state.should_try(): message = self._get_log_message(data) self.error_logger.error(message) return try: self._send_remote( url=url, data=data, headers=headers, callback=callback ) except HTTPError as e: body = e.response.body self.error_logger.error( 'Unable to reach Sentry log server: %s ' '(url: %%s, body: %%s)' % (e,), url, body, exc_info=True, extra={'data': {'body': body, 'remote_url': url}} ) except Exception as e: self.error_logger.error( 'Unable to reach Sentry log server: %s (url: %%s)' % (e,), url, exc_info=True, extra={'data': {'remote_url': url}} ) message = self._get_log_message(data) self.error_logger.error('Failed to submit message: %r', message) self.state.set_fail() else: self.state.set_success() def _send_remote(self, url, data, headers=None, callback=None): """ Initialise a Tornado AsyncClient and send the reuqest to the sentry server. If the callback is a callable, it will be called with the response. """ if headers is None: headers = {} return AsyncHTTPClient().fetch( url, callback, method="POST", body=data, headers=headers, validate_cert=self.validate_cert ) class SentryMixin(object): """ A mixin class that extracts information from the Request in a Request Handler to capture and send to sentry. This mixin class is designed to be used along with `tornado.web.RequestHandler` .. code-block:: python :emphasize-lines: 6 class MyRequestHandler(SentryMixin, tornado.web.RequestHandler): def get(self): try: fail() except Exception as e: self.captureException() While the above example would result in sequential execution, an example for asynchronous use would be .. code-block:: python :emphasize-lines: 6 class MyRequestHandler(SentryMixin, tornado.web.RequestHandler): @tornado.web.asynchronous @tornado.gen.engine def get(self): # Do something and record a message in sentry response = yield tornado.gen.Task( self.captureMessage, "Did something really important" ) self.write("Your request to do something important is done") self.finish() The mixin assumes that the application will have an attribute called `sentry_client`, which should be an instance of :py:class:`AsyncSentryClient`. This can be changed by implementing your own get_sentry_client method on your request handler. """ def get_sentry_client(self): """ Returns the sentry client configured in the application. If you need to change the behaviour to do something else to get the client, then subclass this method """ return self.application.sentry_client def get_sentry_data_from_request(self): """ Extracts the data required for 'sentry.interfaces.Http' from the current request being handled by the request handler :param return: A dictionary. """ return { 'request': { 'url': self.request.full_url(), 'method': self.request.method, 'data': self.request.body, 'query_string': self.request.query, 'cookies': self.request.headers.get('Cookie', None), 'headers': dict(self.request.headers), } } def get_sentry_user_info(self): """ Data for sentry.interfaces.User Default implementation only sends `is_authenticated` by checking if `tornado.web.RequestHandler.get_current_user` tests postitively for on Truth calue testing """ return { 'user': { 'is_authenticated': True if self.get_current_user() else False } } def get_sentry_extra_info(self): """ Subclass and implement this method if you need to send any extra information """ return { 'extra': { } } def get_default_context(self): data = {} # Update request data data.update(self.get_sentry_data_from_request()) # update user data data.update(self.get_sentry_user_info()) # Update extra data data.update(self.get_sentry_extra_info()) return data def _capture(self, call_name, data=None, **kwargs): if data is None: data = self.get_default_context() else: default_context = self.get_default_context() if isinstance(data, dict): default_context.update(data) else: default_context['extra']['extra_data'] = data data = default_context client = self.get_sentry_client() return getattr(client, call_name)(data=data, **kwargs) def captureException(self, exc_info=None, **kwargs): return self._capture('captureException', exc_info=exc_info, **kwargs) def captureMessage(self, message, **kwargs): return self._capture('captureMessage', message=message, **kwargs) def log_exception(self, typ, value, tb): """Override implementation to report all exceptions to sentry. log_exception() is added in Tornado v3.1. """ rv = super(SentryMixin, self).log_exception(typ, value, tb) self.captureException(exc_info=(typ, value, tb)) return rv def send_error(self, status_code=500, **kwargs): """Override implementation to report all exceptions to sentry, even after self.flush() or self.finish() is called, for pre-v3.1 Tornado. """ if hasattr(super(SentryMixin, self), 'log_exception'): return super(SentryMixin, self).send_error(status_code, **kwargs) else: rv = super(SentryMixin, self).send_error(status_code, **kwargs) if 500 <= status_code <= 599: self.captureException(exc_info=kwargs.get('exc_info')) return rv