Skip to content
Snippets Groups Projects
Commit 4f24bdc0 authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

new handling of error (not every error should be reported)

parent 5c34dce0
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!589Feature error reporting
...@@ -295,73 +295,71 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) { ...@@ -295,73 +295,71 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) {
logger.error(error); logger.error(error);
var errorData = self.getErrorMessageForError(error); var errorData = self.getErrorMessageForError(error);
var message = errorData.message; if (!errorData.showReport) {
var stacktrace = {
value: errorData.stack, } else {
tooltip: 'The error stacktrace. The sequence of events that triggered this particular error.' self._errorDialog = document.createElement('div');
}; self._errorDialog.innerHTML = '<span class="ui-icon ui-icon-info" style="float: right;" title="The error message. This might not be human readable. If this issue persists you should should contact your administrator."></span>' +
self._errorDialog = document.createElement('div'); '<span>' + errorData.message + '</span>';
self._errorDialog.innerHTML = '<span class="ui-icon ui-icon-info" style="float: right;" title="The error message. This might not be human readable. If this issue persists you should should contact your administrator."></span>' + self.gatherReportData().then(function (data) {
'<span>' + message + '</span>'; self._errorDialog.innerHTML += '<p class="report-dialog-warning">If you agree to submit the following information to the Minerva maintainers please uncheck all boxes that might contain sensitive data.</p>';
self.gatherReportData().then(function (data) { self._errorDialogData = document.createElement('div');
self._errorDialog.innerHTML += '<p class="report-dialog-warning">If you agree to submit the following information to the Minerva maintainers please uncheck all boxes that might contain sensitive data.</p>'; self._errorDialog.appendChild(self._errorDialogData);
self._errorDialogData = document.createElement('div'); self._errorDialogData.innerHTML += '<textarea id="report-comment" placeholder="Add comment..."></textarea>';
self._errorDialog.appendChild(self._errorDialogData); Object.keys(data).forEach(function (key) {
self._errorDialogData.innerHTML += '<textarea id="report-comment" placeholder="Add comment..."></textarea>'; self._errorDialogData.innerHTML += '<label>' +
Object.keys(data).forEach(function (key) { data[key].value +
self._errorDialogData.innerHTML += '<label>' + '<input class="report-check" type="checkbox" data-key="' + key + '" data-value="' + data[key].value + '"/>' +
data[key].value + '<span class="ui-icon ui-icon-info" title="' + data[key].tooltip + '"></span>' +
'<input class="report-check" type="checkbox" data-key="' + key + '" data-value="' + data[key].value + '"/>' + '</label>';
'<span class="ui-icon ui-icon-info" title="' + data[key].tooltip + '"></span>' + });
'</label>';
});
if (typeof stacktrace.value !== 'undefined') {
self._errorDialogData.innerHTML += '<div id="report-stacktrace">' + self._errorDialogData.innerHTML += '<div id="report-stacktrace">' +
'<h3>Stacktrace<span class="ui-icon ui-icon-info" title="' + stacktrace.tooltip + '"></span></h3>' + '<h3>Stacktrace' +
'<div><p>' + stacktrace.value + '</p></div>' + '<span class="ui-icon ui-icon-info" title="' + 'The error stacktrace. The sequence of events that triggered this particular error.' + '"></span>' +
'</h3>' +
'<div><p>' + errorData.stacktrace + '</p></div>' +
'</div>'; '</div>';
$('#report-stacktrace') $('#report-stacktrace')
.accordion({active: false, collapsible: true}); .accordion({active: false, collapsible: true});
} $('.report-check')
$('.report-check') .checkboxradio()
.checkboxradio() .prop('checked', true)
.prop('checked', true) .button('refresh');
.button('refresh'); $(self._errorDialogData)
$(self._errorDialogData) .controlgroup({direction: 'vertical'});
.controlgroup({direction: 'vertical'}); $(self._errorDialog)
$(self._errorDialog) .tooltip();
.tooltip(); });
}); document.body.appendChild(self._errorDialog);
document.body.appendChild(self._errorDialog); $(self._errorDialog).dialog({
$(self._errorDialog).dialog({ classes: {'ui-dialog': 'report-dialog'},
classes: {'ui-dialog': 'report-dialog'}, title: 'An error occurred!',
title: 'An error occurred!', resizable: true,
resizable: true, height: 'auto',
height: 'auto', width: '500px',
width: '500px', modal: true,
modal: true, buttons: {
buttons: { 'Submit': function () {
'Submit': function () { var report = {
var report = { stacktrace: errorData.stacktrace,
stacktrace: stacktrace.value, comment: $('#report-comment').val()
comment: $('#report-comment').val() };
}; $('.report-check').each(function () {
$('.report-check').each(function () { var check = $(this);
var check = $(this); if (check.is(':checked')) {
if (check.is(':checked')) { report[check.attr('data-key')] = check.attr('data-value');
report[check.attr('data-key')] = check.attr('data-value'); }
} });
}); ServerConnector.submitErrorToMinervaNet(report);
ServerConnector.submitErrorToMinervaNet(report); $(this).dialog('destroy').remove();
$(this).dialog('destroy').remove(); },
}, 'Cancel': function () {
'Cancel': function () { $(this).dialog('destroy').remove();
$(this).dialog('destroy').remove(); }
} }
} }).dialog("open");
}).dialog("open"); }
} }
}; };
/** /**
...@@ -370,25 +368,21 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) { ...@@ -370,25 +368,21 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) {
* @returns {Object} * @returns {Object}
*/ */
GuiConnector.prototype.getErrorMessageForError = function (error) { GuiConnector.prototype.getErrorMessageForError = function (error) {
var expectedError = typeof error === 'string' || error instanceof SecurityError;
var errorData = {
showReport: !expectedError,
message: typeof error === 'string' ? error : error.message,
stacktrace: error.stack
};
if (error instanceof SecurityError) { if (error instanceof SecurityError) {
if (ServerConnector.getSessionData().getLogin() === "anonymous") { if (ServerConnector.getSessionData().getLogin() === "anonymous") {
return { errorData.message = "<p>Please <a href=\"login.xhtml?from=" + encodeURI(window.location.href) + "\">login</a> to access this resource</p>";
message: error.message + "<p>Please <a href=\"login.xhtml?from=" + encodeURI(window.location.href) + "\">login</a> to access this resource</p>",
stack: error.stack
};
} else { } else {
return { errorData.message += "<p>Please <a href=\"login.xhtml?from=" + encodeURI(window.location.href) + "\">login</a> " + "as a different user or ask your administrator to change the permissions to access this resource.</p>";
message: error.message + "<p>Please <a href=\"login.xhtml?from=" + encodeURI(window.location.href) + "\">login</a> " + "as a different user or ask your administrator to change the permissions to access this resource.</p>",
stack: error.stack
};
} }
} else if (error instanceof ValidationError || error instanceof GuiMessageError || error instanceof Error) {
return {
message: error.message,
stack: error.stack
};
} }
return { message: error }; return errorData;
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment