Skip to content

Commit

Permalink
Merge 0f9b21d into b0e7d01
Browse files Browse the repository at this point in the history
  • Loading branch information
marblestation committed Nov 27, 2019
2 parents b0e7d01 + 0f9b21d commit 8b767d7
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions solr/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class SolrInterface(Resource):
def __init__(self, *args, **kwargs):
Resource.__init__(self, *args, **kwargs)
self._host = None
self.internal_logging_params = ('X-Amzn-Trace-Id', 'Authorization', 'X-Forwarded-Authorization') # Pass to solr/clean from response, only for logging purposes

def get(self):
query, headers = self.cleanup_solr_request(dict(request.args))
Expand Down Expand Up @@ -80,7 +81,7 @@ def get(self):
cookies=SolrInterface.set_cookies(request),
)
current_app.logger.info("Received response from from endpoint '{}' with status code '{}'".format(current_app.config[self.handler], r.status_code))
return r.text, r.status_code, r.headers
return self.cleanup_solr_response_text(r.text), r.status_code, r.headers

@staticmethod
def set_cookies(request):
Expand Down Expand Up @@ -126,6 +127,19 @@ def apply_protective_filters(self, payload, user_id, protected_fields):
payload['fl'] = fl
session.commit()

def cleanup_solr_response_text(self, text):
"""
Remove internal logging parameters from solr response
"""
try:
r = json.loads(text)
params = r.get('responseHeader', {}).get('params', {})
for internal_param in self.internal_logging_params:
params.pop(internal_param, None)
clean_text = unicode(json.dumps(r)+'\n')
return clean_text
except:
return text

def cleanup_solr_request(self, payload, user_id=None):
"""
Expand All @@ -147,15 +161,12 @@ def cleanup_solr_request(self, payload, user_id=None):
_h = 'application/x-www-form-urlencoded'
headers['Content-Type'] = _h

# trace id and Host header are important for proper routing/logging
# trace id, Host, token header are important for proper routing/logging
headers['Host'] = self.get_host(current_app.config.get(self.handler))

if 'X-Amzn-Trace-Id' in request.headers:
payload['x-amzn-trace-id'] = request.headers['X-Amzn-Trace-Id']
headers['X-Amzn-Trace-Id'] = request.headers['X-Amzn-Trace-Id']
elif 'x-amzn-trace-id' in request.headers:
payload['x-amzn-trace-id'] = request.headers['x-amzn-trace-id']
headers['X-Amzn-Trace-Id'] = request.headers['x-amzn-trace-id']
for internal_param in self.internal_logging_params:
if internal_param in request.headers:
payload[internal_param] = request.headers[internal_param]
headers[internal_param] = request.headers[internal_param]

payload['wt'] = 'json'
max_rows = current_app.config.get('SOLR_SERVICE_MAX_ROWS', 100)
Expand Down Expand Up @@ -317,6 +328,11 @@ def _get_stream_data(self, params, streams, request):
value = s

new_headers = {'Authorization': request.headers['Authorization']}
# trace id, Host, token header are important for proper routing/logging
new_headers['Host'] = self.get_host(current_app.config.get(self.handler))
for internal_param in self.internal_logging_params:
if internal_param in request.headers:
new_headers[internal_param] = request.headers[internal_param]
docs = None

if prefix == 'library':
Expand Down Expand Up @@ -451,7 +467,7 @@ def post(self):
message = "Malformed request"
current_app.logger.error(message)
return json.dumps({'error': message}), 400
return r.text, r.status_code, r.headers
return self.cleanup_solr_response_text(r.text), r.status_code, r.headers


def _safe_int(val, default=0):
Expand Down

0 comments on commit 8b767d7

Please sign in to comment.