This file is indexed.

/usr/share/pyshared/piston_mini_client/failhandlers.py is in python-piston-mini-client 0.7.2-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# -*- coding: utf-8 -*-
# Copyright 2010-2012 Canonical Ltd.  This software is licensed under the
# GNU Lesser General Public License version 3 (see the file LICENSE).

"""A fail handler is passed the raw httplib2 response and body, and has a
chance to raise an exception, modify the body or return it unaltered, or
even return a completely different object.  It's up to the client (and
possibly decorators) to know what to do with these returned objects.
"""

__all__ = [
    'APIError',
    'BaseFailHandler',
    'ExceptionFailHandler',
    'DictFailHandler',
    'NoneFailHandler',
    'MultiExceptionFailHandler',
]

from piston_mini_client.consts import DEBUG_ENVVAR
import os


def format_request(url, method, body, headers):
    """Return a representation of a request"""
    if hasattr(headers, 'items'):
        headers = '\n'.join("%s: %s" % pair for pair in headers.items())
    return """Request: {method} {url}
{headers}

{body}
""".format(method=method, url=url, headers=headers, body=body)


def format_response(response, body):
    """Return a representation of a response"""
    headers = response.copy()
    status = headers.pop('status', 'Unknown status code')
    headers = '\n'.join("%s: %s" % pair for pair in headers.items())
    return """Response: {status}
{headers}

{body}
""".format(status=status, headers=headers, body=body)


class APIError(Exception):
    def __init__(self, msg, body=None, data=None):
        self.msg = msg
        self.body = body
        if data is None:
            data = {}
        self.data = data
        self.debug = os.environ.get(DEBUG_ENVVAR, False)

    def __str__(self):
        if self.debug:
            msg = self.msg + '\n' + format_request(
                url=self.data.get('url', ''),
                method=self.data.get('method', ''),
                body=self.data.get('request_body', ''),
                headers=self.data.get('headers', {}))
            msg += format_response(
                self.data.get('resposne', {}), self.body)
            return msg
        return self.msg


class SocketError(APIError):
    def __init__(self, msg):
        self.msg = msg

    def __str__(self):
        return self.msg


class TimeoutError(SocketError):
    pass


class BaseFailHandler(object):
    """A base class for fail handlers.

    Child classes should at least define handle()
    """
    def __init__(self, url, method, body, headers):
        """Store provided information for if somebody needs it"""
        self.data = {
            'url': url,
            'method': method,
            'request_body': body,
            'request_headers': headers,
        }

    def handle(self, response, body):
        raise NotImplementedError()

    def was_error(self, response):
        """Returns True if 'response' is a failure"""
        try:
            status = int(response.get('status'))
        except (ValueError, TypeError):
            return True
        return status >= 400


class ExceptionFailHandler(BaseFailHandler):
    """A fail handler that will raise APIErrors if anything goes wrong"""

    def handle(self, response, body):
        """Raise APIError if a strange status code is found"""
        if 'status' not in response:
            raise APIError('No status code in response')
        if self.was_error(response):
            raise APIError('%s: %s' % (response['status'], response), body,
                data=self.data)
        return body


class NoneFailHandler(BaseFailHandler):
    """A fail handler that returns None if anything goes wrong.

    You probably only want to use this if you really don't care about what
    went wrong.
    """
    def handle(self, response, body):
        """Return None if a strange status code is found"""
        if self.was_error(response):
            return None
        return body


class DictFailHandler(BaseFailHandler):
    """A fail handler that returns error information in a dict"""

    def handle(self, response, body):
        """Return a dict if a strange status code is found.

        The returned dict will have two keys:
         * 'response': the httplib2 response header dict
         * 'body': the response body, as a string
        """
        if self.was_error(response):
            self.data['response'] = response
            self.data['response_body'] = body
            return self.data
        return body


class BadRequestError(APIError):
    """A 400 Bad Request response was received"""


class UnauthorizedError(APIError):
    """A 401 Bad Request response was received"""


class ForbiddenError(APIError):
    """A 403 Forbidden response was received"""


class NotFoundError(APIError):
    """A 404 Not Found response was received"""


class InternalServerErrorError(APIError):
    """A 500 Internal Server Error response was received"""


class ServiceUnavailableError(APIError):
    """A 503 Service Unavailable Error response was received"""


class MultiExceptionFailHandler(BaseFailHandler):
    """A fail handler that raises an exception according to what goes wrong"""
    exceptions = {
        '400': BadRequestError,
        '401': UnauthorizedError,
        '403': ForbiddenError,
        '404': NotFoundError,
        '500': InternalServerErrorError,
        '503': ServiceUnavailableError,
    }

    def handle(self, response, body):
        """Return an exception according to what went wrong.

        Status codes currently returning their own exception class are:
         * 400: BadRequestError,
         * 401: UnauthorizedError,
         * 403: ForbiddenError,
         * 404: NotFoundError,
         * 500: InternalServerErrorError, and
         * 503: ServiceUnavailableError
        """
        if self.was_error(response):
            status = response.get('status')
            exception_class = self.exceptions.get(status, APIError)
            raise exception_class('%s: %s' % (status, response), body,
                data=self.data)
        return body