From 6fb99d2d90a96c59b90c43b5d32f51da04b28e48 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 25 Apr 2018 15:58:40 -0400 Subject: [PATCH] Filter logged server responses - Limit size to 1500 characters - Remove collection names in /getSelectedCollection response --- .../xpcom/connector/server_connector.js | 20 ++++++++++++-- chrome/content/zotero/xpcom/server.js | 27 ++++++++++++++----- 2 files changed, 38 insertions(+), 9 deletions(-) diff --git a/chrome/content/zotero/xpcom/connector/server_connector.js b/chrome/content/zotero/xpcom/connector/server_connector.js index 70da87238..5d55db2f0 100644 --- a/chrome/content/zotero/xpcom/connector/server_connector.js +++ b/chrome/content/zotero/xpcom/connector/server_connector.js @@ -1115,8 +1115,24 @@ Zotero.Server.Connector.GetSelectedCollection.prototype = { Zotero.Prefs.clear('recentSaveTargets'); } - // TODO: Limit debug size - sendResponseCallback(200, "application/json", JSON.stringify(response)); + sendResponseCallback( + 200, + "application/json", + JSON.stringify(response), + { + // Filter out collection names in debug output + logFilter: function (str) { + try { + let json = JSON.parse(str.match(/^{"libraryID"[^]+/m)[0]); + json.targets.forEach(t => t.name = "\u2026"); + return JSON.stringify(json); + } + catch (e) { + return str; + } + } + } + ); } } diff --git a/chrome/content/zotero/xpcom/server.js b/chrome/content/zotero/xpcom/server.js index e3180ea21..d0f2caf90 100755 --- a/chrome/content/zotero/xpcom/server.js +++ b/chrome/content/zotero/xpcom/server.js @@ -439,10 +439,12 @@ Zotero.Server.DataListener.prototype._processEndpoint = Zotero.Promise.coroutine } // set up response callback - var me = this; - var sendResponseCallback = function(code, contentType, arg) { - me._requestFinished(me._generateResponse(code, contentType, arg)); - } + var sendResponseCallback = function (code, contentType, arg, options) { + this._requestFinished( + this._generateResponse(code, contentType, arg), + options + ); + }.bind(this); // Pass to endpoint // @@ -512,7 +514,7 @@ Zotero.Server.DataListener.prototype._processEndpoint = Zotero.Promise.coroutine /* * returns HTTP data from a request */ -Zotero.Server.DataListener.prototype._requestFinished = function(response) { +Zotero.Server.DataListener.prototype._requestFinished = function (response, options) { if(this._responseSent) { Zotero.debug("Request already finished; not sending another response"); return; @@ -530,8 +532,19 @@ Zotero.Server.DataListener.prototype._requestFinished = function(response) { try { intlStream.init(this.oStream, "UTF-8", 1024, "?".charCodeAt(0)); - // write response - Zotero.debug(response, 5); + // Filter logged response + if (Zotero.Debug.enabled) { + let maxLogLength = 2000; + let str = response; + if (options && options.logFilter) { + str = options.logFilter(str); + } + if (str.length > maxLogLength) { + str = str.substr(0, maxLogLength) + `\u2026 (${response.length} chars)`; + } + Zotero.debug(str, 5); + } + intlStream.writeString(response); } finally { intlStream.close();