|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var PMA_console = { |
|
|
|
|
|
|
|
|
|
$consoleContent: null, |
|
|
|
|
|
|
|
|
|
|
|
$consoleAllContents: null, |
|
|
|
|
|
|
|
|
|
$consoleToolbar: null, |
|
|
|
|
|
|
|
|
|
$consoleTemplates: null, |
|
|
|
|
|
|
|
|
|
$requestForm: null, |
|
|
|
|
|
|
|
|
|
config: null, |
|
|
|
|
|
|
|
|
|
isEnabled: false, |
|
|
|
|
|
|
|
|
|
isInitialized: false, |
|
|
|
|
|
|
|
|
|
|
|
initialize: function() { |
|
|
|
if ($('#pma_console').length === 0) { |
|
return; |
|
} |
|
|
|
PMA_console.isEnabled = true; |
|
|
|
|
|
if (! $.cookie('pma_console_height')) { |
|
$.cookie('pma_console_height', 92); |
|
} |
|
if (! $.cookie('pma_console_mode')) { |
|
$.cookie('pma_console_mode', 'info'); |
|
} |
|
|
|
|
|
PMA_console.$consoleToolbar = $("#pma_console").find(">.toolbar"); |
|
PMA_console.$consoleContent = $("#pma_console").find(">.content"); |
|
PMA_console.$consoleAllContents = $('#pma_console').find('.content'); |
|
PMA_console.$consoleTemplates = $('#pma_console').find('>.templates'); |
|
|
|
|
|
PMA_console.$requestForm = $('<form method="post" action="import.php">' + |
|
'<input name="is_js_confirmed" value="0">' + |
|
'<textarea name="sql_query"></textarea>' + |
|
'<input name="console_message_id" value="0">' + |
|
'<input name="server" value="">' + |
|
'<input name="db" value="">' + |
|
'<input name="table" value="">' + |
|
'<input name="token" value="' + |
|
PMA_commonParams.get('token') + |
|
'">' + |
|
'</form>' |
|
); |
|
PMA_console.$requestForm.bind('submit', AJAX.requestHandler); |
|
|
|
|
|
if (PMA_console.isInitialized === false) { |
|
|
|
|
|
var tempConfig = JSON.parse($.cookie('pma_console_config')); |
|
if (tempConfig) { |
|
if (tempConfig.alwaysExpand === true) { |
|
$('#pma_console_options input[name=always_expand]').prop('checked', true); |
|
} |
|
if (tempConfig.startHistory === true) { |
|
$('#pma_console_options').find('input[name=start_history]').prop('checked', true); |
|
} |
|
if (tempConfig.currentQuery === true) { |
|
$('#pma_console_options').find('input[name=current_query]').prop('checked', true); |
|
} |
|
if (ConsoleEnterExecutes === true) { |
|
$('#pma_console_options').find('input[name=enter_executes]').prop('checked', true); |
|
} |
|
if (tempConfig.darkTheme === true) { |
|
$('#pma_console_options').find('input[name=dark_theme]').prop('checked', true); |
|
$('#pma_console').find('>.content').addClass('console_dark_theme'); |
|
} |
|
} else { |
|
$('#pma_console_options').find('input[name=current_query]').prop('checked', true); |
|
} |
|
|
|
PMA_console.updateConfig(); |
|
|
|
PMA_consoleResizer.initialize(); |
|
PMA_consoleInput.initialize(); |
|
PMA_consoleMessages.initialize(); |
|
PMA_consoleBookmarks.initialize(); |
|
PMA_consoleDebug.initialize(); |
|
|
|
PMA_console.$consoleToolbar.children('.console_switch').click(PMA_console.toggle); |
|
$(document).keydown(function(event) { |
|
|
|
if (event.ctrlKey && event.altKey && event.keyCode === 67) { |
|
PMA_console.toggle(); |
|
} |
|
}); |
|
|
|
$('#pma_console').find('.toolbar').children().mousedown(function(event) { |
|
event.preventDefault(); |
|
event.stopImmediatePropagation(); |
|
}); |
|
|
|
$('#pma_console').find('.button.clear').click(function() { |
|
PMA_consoleMessages.clear(); |
|
}); |
|
|
|
$('#pma_console').find('.button.history').click(function() { |
|
PMA_consoleMessages.showHistory(); |
|
}); |
|
|
|
$('#pma_console').find('.button.options').click(function() { |
|
PMA_console.showCard('#pma_console_options'); |
|
}); |
|
|
|
$('#pma_console').find('.button.debug').click(function() { |
|
PMA_console.showCard('#debug_console'); |
|
}); |
|
|
|
PMA_console.$consoleContent.click(function(event) { |
|
if (event.target == this) { |
|
PMA_consoleInput.focus(); |
|
} |
|
}); |
|
|
|
$('#pma_console').find('.mid_layer').click(function() { |
|
PMA_console.hideCard($(this).parent().children('.card')); |
|
}); |
|
$('#debug_console').find('.switch_button').click(function() { |
|
PMA_console.hideCard($(this).closest('.card')); |
|
}); |
|
$('#pma_bookmarks').find('.switch_button').click(function() { |
|
PMA_console.hideCard($(this).closest('.card')); |
|
}); |
|
$('#pma_console_options').find('.switch_button').click(function() { |
|
PMA_console.hideCard($(this).closest('.card')); |
|
}); |
|
|
|
$('#pma_console_options').find('input[type=checkbox]').change(function() { |
|
PMA_console.updateConfig(); |
|
}); |
|
|
|
$('#pma_console_options').find('.button.default').click(function() { |
|
$('#pma_console_options input[name=always_expand]').prop('checked', false); |
|
$('#pma_console_options').find('input[name=start_history]').prop('checked', false); |
|
$('#pma_console_options').find('input[name=current_query]').prop('checked', true); |
|
$('#pma_console_options').find('input[name=enter_executes]').prop('checked', false); |
|
$('#pma_console_options').find('input[name=dark_theme]').prop('checked', false); |
|
PMA_console.updateConfig(); |
|
}); |
|
|
|
$('#pma_console_options').find('input[name=enter_executes]').change(function() { |
|
PMA_consoleMessages.showInstructions(PMA_console.config.enterExecutes); |
|
}); |
|
|
|
$(document).ajaxComplete(function (event, xhr, ajaxOptions) { |
|
if (ajaxOptions.dataType != 'json') { |
|
return; |
|
} |
|
try { |
|
var data = $.parseJSON(xhr.responseText); |
|
PMA_console.ajaxCallback(data); |
|
} catch (e) { |
|
console.log("Invalid JSON!" + e.message); |
|
if (AJAX.xhr && AJAX.xhr.status === 0 && AJAX.xhr.statusText !== 'abort') { |
|
|
|
|
|
|
|
PMA_ajaxShowMessage($('<div />',{'class':'error','html':PMA_messages.strRequestFailed+' ( '+escapeHtml(AJAX.xhr.statusText)+' )'})); |
|
AJAX.active = false; |
|
AJAX.xhr = null; |
|
} |
|
} |
|
}); |
|
|
|
PMA_console.isInitialized = true; |
|
} |
|
|
|
|
|
switch($.cookie('pma_console_mode')) { |
|
case 'collapse': |
|
PMA_console.collapse(); |
|
break; |
|
|
|
default: |
|
$.cookie('pma_console_mode', 'info'); |
|
case 'info': |
|
|
|
PMA_console.info(); |
|
break; |
|
case 'show': |
|
PMA_console.show(true); |
|
PMA_console.scrollBottom(); |
|
break; |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
execute: function(queryString, options) { |
|
if (typeof(queryString) != 'string' || ! /[a-z]|[A-Z]/.test(queryString)) { |
|
return; |
|
} |
|
PMA_console.$requestForm.children('textarea').val(queryString); |
|
PMA_console.$requestForm.children('[name=server]').attr('value', PMA_commonParams.get('server')); |
|
if (options && options.db) { |
|
PMA_console.$requestForm.children('[name=db]').val(options.db); |
|
if (options.table) { |
|
PMA_console.$requestForm.children('[name=table]').val(options.table); |
|
} else { |
|
PMA_console.$requestForm.children('[name=table]').val(''); |
|
} |
|
} else { |
|
PMA_console.$requestForm.children('[name=db]').val( |
|
(PMA_commonParams.get('db').length > 0 ? PMA_commonParams.get('db') : '')); |
|
} |
|
PMA_console.$requestForm.find('[name=profiling]').remove(); |
|
if (options && options.profiling === true) { |
|
PMA_console.$requestForm.append('<input name="profiling" value="on">'); |
|
} |
|
if (! confirmQuery(PMA_console.$requestForm[0], PMA_console.$requestForm.children('textarea')[0])) { |
|
return; |
|
} |
|
PMA_console.$requestForm.children('[name=console_message_id]') |
|
.val(PMA_consoleMessages.appendQuery({sql_query: queryString}).message_id); |
|
PMA_console.$requestForm.trigger('submit'); |
|
PMA_consoleInput.clear(); |
|
PMA_reloadNavigation(); |
|
}, |
|
ajaxCallback: function(data) { |
|
if (data && data.console_message_id) { |
|
PMA_consoleMessages.updateQuery(data.console_message_id, data.success, |
|
(data._reloadQuerywindow ? data._reloadQuerywindow : false)); |
|
} else if ( data && data._reloadQuerywindow) { |
|
if (data._reloadQuerywindow.sql_query.length > 0) { |
|
PMA_consoleMessages.appendQuery(data._reloadQuerywindow, 'successed') |
|
.$message.addClass(PMA_console.config.currentQuery ? '' : 'hide'); |
|
} |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
collapse: function() { |
|
$.cookie('pma_console_mode', 'collapse'); |
|
var pmaConsoleHeight = $.cookie('pma_console_height'); |
|
|
|
if (pmaConsoleHeight < 32) { |
|
$.cookie('pma_console_height', 92); |
|
} |
|
PMA_console.$consoleToolbar.addClass('collapsed'); |
|
PMA_console.$consoleAllContents.height(pmaConsoleHeight); |
|
PMA_console.$consoleContent.stop(); |
|
PMA_console.$consoleContent.animate({'margin-bottom': -1 * PMA_console.$consoleContent.outerHeight() + 'px'}, |
|
'fast', 'easeOutQuart', function() { |
|
PMA_console.$consoleContent.css({display:'none'}); |
|
$(window).trigger('resize'); |
|
}); |
|
PMA_console.hideCard(); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
show: function(inputFocus) { |
|
$.cookie('pma_console_mode', 'show'); |
|
|
|
var pmaConsoleHeight = $.cookie('pma_console_height'); |
|
|
|
if (pmaConsoleHeight < 32) { |
|
$.cookie('pma_console_height', 32); |
|
PMA_console.collapse(); |
|
return; |
|
} |
|
PMA_console.$consoleContent.css({display:'block'}); |
|
if (PMA_console.$consoleToolbar.hasClass('collapsed')) { |
|
PMA_console.$consoleToolbar.removeClass('collapsed'); |
|
} |
|
PMA_console.$consoleAllContents.height(pmaConsoleHeight); |
|
PMA_console.$consoleContent.stop(); |
|
PMA_console.$consoleContent.animate({'margin-bottom': 0}, |
|
'fast', 'easeOutQuart', function() { |
|
$(window).trigger('resize'); |
|
if (inputFocus) { |
|
PMA_consoleInput.focus(); |
|
} |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
info: function() { |
|
|
|
PMA_console.collapse(); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
toggle: function() { |
|
switch($.cookie('pma_console_mode')) { |
|
case 'collapse': |
|
case 'info': |
|
PMA_console.show(true); |
|
break; |
|
case 'show': |
|
PMA_console.collapse(); |
|
break; |
|
default: |
|
PMA_consoleInitialize(); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
scrollBottom: function() { |
|
PMA_console.$consoleContent.scrollTop(PMA_console.$consoleContent.prop("scrollHeight")); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
showCard: function(cardSelector) { |
|
var $card = null; |
|
if (typeof(cardSelector) !== 'string') { |
|
if (cardSelector.length > 0) { |
|
$card = cardSelector; |
|
} else { |
|
return; |
|
} |
|
} else { |
|
$card = $("#pma_console " + cardSelector); |
|
} |
|
if ($card.length === 0) { |
|
return; |
|
} |
|
$card.parent().children('.mid_layer').show().fadeTo(0, 0.15); |
|
$card.addClass('show'); |
|
PMA_consoleInput.blur(); |
|
if ($card.parents('.card').length > 0) { |
|
PMA_console.showCard($card.parents('.card')); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
hideCard: function($targetCard) { |
|
if (! $targetCard) { |
|
$('#pma_console').find('.mid_layer').fadeOut(140); |
|
$('#pma_console').find('.card').removeClass('show'); |
|
} else if ($targetCard.length > 0) { |
|
$targetCard.parent().find('.mid_layer').fadeOut(140); |
|
$targetCard.find('.card').removeClass('show'); |
|
$targetCard.removeClass('show'); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
updateConfig: function() { |
|
PMA_console.config = { |
|
alwaysExpand: $('#pma_console_options input[name=always_expand]').prop('checked'), |
|
startHistory: $('#pma_console_options').find('input[name=start_history]').prop('checked'), |
|
currentQuery: $('#pma_console_options').find('input[name=current_query]').prop('checked'), |
|
enterExecutes: $('#pma_console_options').find('input[name=enter_executes]').prop('checked'), |
|
darkTheme: $('#pma_console_options').find('input[name=dark_theme]').prop('checked') |
|
}; |
|
$.cookie('pma_console_config', JSON.stringify(PMA_console.config)); |
|
|
|
if (PMA_console.config.darkTheme) { |
|
$('#pma_console').find('>.content').addClass('console_dark_theme'); |
|
} else { |
|
$('#pma_console').find('>.content').removeClass('console_dark_theme'); |
|
} |
|
}, |
|
isSelect: function (queryString) { |
|
var reg_exp = /^SELECT\s+/i; |
|
return reg_exp.test(queryString); |
|
} |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
var PMA_consoleResizer = { |
|
_posY: 0, |
|
_height: 0, |
|
_resultHeight: 0, |
|
|
|
|
|
|
|
|
|
|
|
_mousedown: function(event) { |
|
if ($.cookie('pma_console_mode') !== 'show') { |
|
return; |
|
} |
|
PMA_consoleResizer._posY = event.pageY; |
|
PMA_consoleResizer._height = PMA_console.$consoleContent.height(); |
|
$(document).mousemove(PMA_consoleResizer._mousemove); |
|
$(document).mouseup(PMA_consoleResizer._mouseup); |
|
|
|
$(document).bind('selectstart', function() { return false; }); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_mousemove: function(event) { |
|
if (event.pageY < 35) { |
|
event.pageY = 35 |
|
} |
|
PMA_consoleResizer._resultHeight = PMA_consoleResizer._height + (PMA_consoleResizer._posY -event.pageY); |
|
|
|
if (PMA_consoleResizer._resultHeight <= 32) { |
|
PMA_console.$consoleAllContents.height(32); |
|
PMA_console.$consoleContent.css('margin-bottom', PMA_consoleResizer._resultHeight - 32); |
|
} |
|
else { |
|
|
|
if (PMA_console.$consoleContent.scrollTop() + PMA_console.$consoleContent.innerHeight() + 16 |
|
>= PMA_console.$consoleContent.prop('scrollHeight')) { |
|
PMA_console.$consoleAllContents.height(PMA_consoleResizer._resultHeight); |
|
PMA_console.scrollBottom(); |
|
} else { |
|
PMA_console.$consoleAllContents.height(PMA_consoleResizer._resultHeight); |
|
} |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_mouseup: function() { |
|
$.cookie('pma_console_height', PMA_consoleResizer._resultHeight); |
|
PMA_console.show(); |
|
$(document).unbind('mousemove'); |
|
$(document).unbind('mouseup'); |
|
$(document).unbind('selectstart'); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
initialize: function() { |
|
$('#pma_console').find('.toolbar').unbind('mousedown'); |
|
$('#pma_console').find('.toolbar').mousedown(PMA_consoleResizer._mousedown); |
|
} |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
var PMA_consoleInput = { |
|
|
|
|
|
|
|
|
|
_inputs: null, |
|
|
|
|
|
|
|
|
|
_codemirror: false, |
|
|
|
|
|
|
|
|
|
_historyCount: 0, |
|
|
|
|
|
|
|
|
|
_historyPreserveCurrent: null, |
|
|
|
|
|
|
|
|
|
|
|
initialize: function() { |
|
|
|
if (PMA_consoleInput._inputs !== null) { |
|
return; |
|
} |
|
if (typeof CodeMirror !== 'undefined') { |
|
PMA_consoleInput._codemirror = true; |
|
} |
|
PMA_consoleInput._inputs = []; |
|
if (PMA_consoleInput._codemirror) { |
|
PMA_consoleInput._inputs.console = CodeMirror($('#pma_console').find('.console_query_input')[0], { |
|
theme: 'pma', |
|
mode: 'text/x-sql', |
|
lineWrapping: true, |
|
extraKeys: {"Ctrl-Space": "autocomplete"}, |
|
hintOptions: {"completeSingle": false, "completeOnSingleClick": true}, |
|
gutters: ["CodeMirror-lint-markers"], |
|
lint: { |
|
"getAnnotations": CodeMirror.sqlLint, |
|
"async": true, |
|
} |
|
}); |
|
PMA_consoleInput._inputs.console.on("inputRead", codemirrorAutocompleteOnInputRead); |
|
PMA_consoleInput._inputs.console.on("keydown", function(instance, event) { |
|
PMA_consoleInput._historyNavigate(event); |
|
}); |
|
if ($('#pma_bookmarks').length !== 0) { |
|
PMA_consoleInput._inputs.bookmark = CodeMirror($('#pma_console').find('.bookmark_add_input')[0], { |
|
theme: 'pma', |
|
mode: 'text/x-sql', |
|
lineWrapping: true, |
|
extraKeys: {"Ctrl-Space": "autocomplete"}, |
|
hintOptions: {"completeSingle": false, "completeOnSingleClick": true}, |
|
gutters: ["CodeMirror-lint-markers"], |
|
lint: { |
|
"getAnnotations": CodeMirror.sqlLint, |
|
"async": true, |
|
} |
|
}); |
|
PMA_consoleInput._inputs.bookmark.on("inputRead", codemirrorAutocompleteOnInputRead); |
|
} |
|
} else { |
|
PMA_consoleInput._inputs.console = |
|
$('<textarea>').appendTo('#pma_console .console_query_input') |
|
.on('keydown', PMA_consoleInput._historyNavigate); |
|
if ($('#pma_bookmarks').length !== 0) { |
|
PMA_consoleInput._inputs.bookmark = |
|
$('<textarea>').appendTo('#pma_console .bookmark_add_input'); |
|
} |
|
} |
|
$('#pma_console').find('.console_query_input').keydown(PMA_consoleInput._keydown); |
|
}, |
|
_historyNavigate: function(event) { |
|
if (event.keyCode == 38 || event.keyCode == 40) { |
|
var upPermitted = false; |
|
var downPermitted = false; |
|
var editor = PMA_consoleInput._inputs.console; |
|
var cursorLine; |
|
var totalLine; |
|
if (PMA_consoleInput._codemirror) { |
|
cursorLine = editor.getCursor().line; |
|
totalLine = editor.lineCount(); |
|
} else { |
|
|
|
var text = PMA_consoleInput.getText(); |
|
cursorLine = text.substr(0, editor.prop("selectionStart")).split("\n").length - 1; |
|
totalLine = text.split(/\r*\n/).length; |
|
} |
|
if (cursorLine === 0) { |
|
upPermitted = true; |
|
} |
|
if (cursorLine == totalLine - 1) { |
|
downPermitted = true; |
|
} |
|
var nextCount; |
|
var queryString = false; |
|
if (upPermitted && event.keyCode == 38) { |
|
|
|
if (PMA_consoleInput._historyCount === 0) { |
|
PMA_consoleInput._historyPreserveCurrent = PMA_consoleInput.getText(); |
|
} |
|
nextCount = PMA_consoleInput._historyCount + 1; |
|
queryString = PMA_consoleMessages.getHistory(nextCount); |
|
} else if (downPermitted && event.keyCode == 40) { |
|
|
|
if (PMA_consoleInput._historyCount === 0) { |
|
return; |
|
} |
|
nextCount = PMA_consoleInput._historyCount - 1; |
|
if (nextCount === 0) { |
|
queryString = PMA_consoleInput._historyPreserveCurrent; |
|
} else { |
|
queryString = PMA_consoleMessages.getHistory(nextCount); |
|
} |
|
} |
|
if (queryString !== false) { |
|
PMA_consoleInput._historyCount = nextCount; |
|
PMA_consoleInput.setText(queryString, 'console'); |
|
if (PMA_consoleInput._codemirror) { |
|
editor.setCursor(editor.lineCount(), 0); |
|
} |
|
event.preventDefault(); |
|
} |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_keydown: function(event) { |
|
if (PMA_console.config.enterExecutes) { |
|
|
|
if (!event.shiftKey && event.keyCode === 13) { |
|
PMA_consoleInput.execute(); |
|
} |
|
} else { |
|
|
|
if (event.ctrlKey && event.keyCode === 13) { |
|
PMA_consoleInput.execute(); |
|
} |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
execute: function() { |
|
if (PMA_consoleInput._codemirror) { |
|
PMA_console.execute(PMA_consoleInput._inputs.console.getValue()); |
|
} else { |
|
PMA_console.execute(PMA_consoleInput._inputs.console.val()); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
clear: function(target) { |
|
PMA_consoleInput.setText('', target); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
focus: function() { |
|
PMA_consoleInput._inputs.console.focus(); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
blur: function() { |
|
if (PMA_consoleInput._codemirror) { |
|
PMA_consoleInput._inputs.console.getInputField().blur(); |
|
} else { |
|
PMA_consoleInput._inputs.console.blur(); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setText: function(text, target) { |
|
if (PMA_consoleInput._codemirror) { |
|
switch(target) { |
|
case 'bookmark': |
|
PMA_console.execute(PMA_consoleInput._inputs.bookmark.setValue(text)); |
|
break; |
|
default: |
|
case 'console': |
|
PMA_console.execute(PMA_consoleInput._inputs.console.setValue(text)); |
|
} |
|
} else { |
|
switch(target) { |
|
case 'bookmark': |
|
PMA_console.execute(PMA_consoleInput._inputs.bookmark.val(text)); |
|
break; |
|
default: |
|
case 'console': |
|
PMA_console.execute(PMA_consoleInput._inputs.console.val(text)); |
|
} |
|
} |
|
}, |
|
getText: function(target) { |
|
if (PMA_consoleInput._codemirror) { |
|
switch(target) { |
|
case 'bookmark': |
|
return PMA_consoleInput._inputs.bookmark.getValue(); |
|
default: |
|
case 'console': |
|
return PMA_consoleInput._inputs.console.getValue(); |
|
} |
|
} else { |
|
switch(target) { |
|
case 'bookmark': |
|
return PMA_consoleInput._inputs.bookmark.val(); |
|
default: |
|
case 'console': |
|
return PMA_consoleInput._inputs.console.val(); |
|
} |
|
} |
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
var PMA_consoleMessages = { |
|
|
|
|
|
|
|
|
|
|
|
clear: function() { |
|
$('#pma_console').find('.content .console_message_container .message:not(.welcome)').addClass('hide'); |
|
$('#pma_console').find('.content .console_message_container .message.failed').remove(); |
|
$('#pma_console').find('.content .console_message_container .message.expanded').find('.action.collapse').click(); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
showHistory: function() { |
|
$('#pma_console').find('.content .console_message_container .message.hide').removeClass('hide'); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
getHistory: function(nthLast) { |
|
var $queries = $('#pma_console').find('.content .console_message_container .query'); |
|
var length = $queries.length; |
|
var $query = $queries.eq(length - nthLast); |
|
if (!$query || (length - nthLast) < 0) { |
|
return false; |
|
} else { |
|
return $query.text(); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
showInstructions: function(enterExecutes) { |
|
enterExecutes = +enterExecutes || 0; |
|
var $welcomeMsg = $('#pma_console').find('.content .console_message_container .message.welcome span'); |
|
$welcomeMsg.children('[id^=instructions]').hide(); |
|
$welcomeMsg.children('#instructions-' + enterExecutes).show(); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
append: function(msgString, msgType) { |
|
if (typeof(msgString) !== 'string') { |
|
return false; |
|
} |
|
|
|
var msgId = Math.round(Math.random()*(899999999999)+100000000000); |
|
var now = new Date(); |
|
var $newMessage = |
|
$('<div class="message ' + |
|
(PMA_console.config.alwaysExpand ? 'expanded' : 'collapsed') + |
|
'" msgid="' + msgId + '"><div class="action_content"></div></div>'); |
|
switch(msgType) { |
|
case 'query': |
|
$newMessage.append('<div class="query highlighted"></div>'); |
|
if (PMA_consoleInput._codemirror) { |
|
CodeMirror.runMode(msgString, |
|
'text/x-sql', $newMessage.children('.query')[0]); |
|
} else { |
|
$newMessage.children('.query').text(msgString); |
|
} |
|
$newMessage.children('.action_content') |
|
.append(PMA_console.$consoleTemplates.children('.query_actions').html()); |
|
break; |
|
default: |
|
case 'normal': |
|
$newMessage.append('<div>' + msgString + '</div>'); |
|
} |
|
PMA_consoleMessages._msgEventBinds($newMessage); |
|
$newMessage.find('span.text.query_time span') |
|
.text(now.getHours() + ':' + now.getMinutes() + ':' + now.getSeconds()) |
|
.parent().attr('title', now); |
|
return {message_id: msgId, |
|
$message: $newMessage.appendTo('#pma_console .content .console_message_container')}; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
appendQuery: function(queryData, state) { |
|
var targetMessage = PMA_consoleMessages.append(queryData.sql_query, 'query'); |
|
if (! targetMessage) { |
|
return false; |
|
} |
|
if (queryData.db && queryData.table) { |
|
targetMessage.$message.attr('targetdb', queryData.db); |
|
targetMessage.$message.attr('targettable', queryData.table); |
|
targetMessage.$message.find('.text.targetdb span').text(queryData.db); |
|
} |
|
if (PMA_console.isSelect(queryData.sql_query)) { |
|
targetMessage.$message.addClass('select'); |
|
} |
|
switch(state) { |
|
case 'failed': |
|
targetMessage.$message.addClass('failed'); |
|
break; |
|
case 'successed': |
|
targetMessage.$message.addClass('successed'); |
|
break; |
|
default: |
|
case 'pending': |
|
targetMessage.$message.addClass('pending'); |
|
} |
|
return targetMessage; |
|
}, |
|
_msgEventBinds: function($targetMessage) { |
|
|
|
$targetMessage = $targetMessage.filter(':not(.binded)'); |
|
if ($targetMessage.length === 0) { |
|
return; |
|
} |
|
$targetMessage.addClass('binded'); |
|
|
|
$targetMessage.find('.action.expand').click(function () { |
|
$(this).closest('.message').removeClass('collapsed'); |
|
$(this).closest('.message').addClass('expanded'); |
|
}); |
|
$targetMessage.find('.action.collapse').click(function () { |
|
$(this).closest('.message').addClass('collapsed'); |
|
$(this).closest('.message').removeClass('expanded'); |
|
}); |
|
$targetMessage.find('.action.edit').click(function () { |
|
PMA_consoleInput.setText($(this).parent().siblings('.query').text()); |
|
PMA_consoleInput.focus(); |
|
}); |
|
$targetMessage.find('.action.requery').click(function () { |
|
var query = $(this).parent().siblings('.query').text(); |
|
var $message = $(this).closest('.message'); |
|
if (confirm(PMA_messages.strConsoleRequeryConfirm + '\n' + |
|
(query.length<100 ? query : query.slice(0, 100) + '...')) |
|
) { |
|
PMA_console.execute(query, {db: $message.attr('targetdb'), table: $message.attr('targettable')}); |
|
} |
|
}); |
|
$targetMessage.find('.action.bookmark').click(function () { |
|
var query = $(this).parent().siblings('.query').text(); |
|
var $message = $(this).closest('.message'); |
|
PMA_consoleBookmarks.addBookmark(query, $message.attr('targetdb')); |
|
PMA_console.showCard('#pma_bookmarks .card.add'); |
|
}); |
|
$targetMessage.find('.action.edit_bookmark').click(function () { |
|
var query = $(this).parent().siblings('.query').text(); |
|
var $message = $(this).closest('.message'); |
|
var isShared = $message.find('span.bookmark_label').hasClass('shared'); |
|
var label = $message.find('span.bookmark_label').text(); |
|
PMA_consoleBookmarks.addBookmark(query, $message.attr('targetdb'), label, isShared); |
|
PMA_console.showCard('#pma_bookmarks .card.add'); |
|
}); |
|
$targetMessage.find('.action.delete_bookmark').click(function () { |
|
var $message = $(this).closest('.message'); |
|
if (confirm(PMA_messages.strConsoleDeleteBookmarkConfirm + '\n' + $message.find('.bookmark_label').text())) { |
|
$.post('import.php', |
|
{token: PMA_commonParams.get('token'), |
|
server: PMA_commonParams.get('server'), |
|
action_bookmark: 2, |
|
ajax_request: true, |
|
id_bookmark: $message.attr('bookmarkid')}, |
|
function () { |
|
PMA_consoleBookmarks.refresh(); |
|
}); |
|
} |
|
}); |
|
$targetMessage.find('.action.profiling').click(function () { |
|
var $message = $(this).closest('.message'); |
|
PMA_console.execute($(this).parent().siblings('.query').text(), |
|
{db: $message.attr('targetdb'), |
|
table: $message.attr('targettable'), |
|
profiling: true}); |
|
}); |
|
$targetMessage.find('.action.explain').click(function () { |
|
var $message = $(this).closest('.message'); |
|
PMA_console.execute('EXPLAIN ' + $(this).parent().siblings('.query').text(), |
|
{db: $message.attr('targetdb'), |
|
table: $message.attr('targettable')}); |
|
}); |
|
$targetMessage.find('.action.dbg_show_trace').click(function () { |
|
var $message = $(this).closest('.message'); |
|
if (!$message.find('.trace').length) { |
|
PMA_consoleDebug.getQueryDetails( |
|
$message.data('queryInfo'), |
|
$message.data('totalTime'), |
|
$message |
|
); |
|
PMA_consoleMessages._msgEventBinds($message.find('.message:not(.binded)')); |
|
} |
|
$message.addClass('show_trace'); |
|
$message.removeClass('hide_trace'); |
|
}); |
|
$targetMessage.find('.action.dbg_hide_trace').click(function () { |
|
var $message = $(this).closest('.message'); |
|
$message.addClass('hide_trace'); |
|
$message.removeClass('show_trace'); |
|
}); |
|
$targetMessage.find('.action.dbg_show_args').click(function () { |
|
var $message = $(this).closest('.message'); |
|
$message.addClass('show_args expanded'); |
|
$message.removeClass('hide_args collapsed'); |
|
}); |
|
$targetMessage.find('.action.dbg_hide_args').click(function () { |
|
var $message = $(this).closest('.message'); |
|
$message.addClass('hide_args collapsed'); |
|
$message.removeClass('show_args expanded'); |
|
}); |
|
if (PMA_consoleInput._codemirror) { |
|
$targetMessage.find('.query:not(.highlighted)').each(function(index, elem) { |
|
CodeMirror.runMode($(elem).text(), |
|
'text/x-sql', elem); |
|
$(this).addClass('highlighted'); |
|
}); |
|
} |
|
}, |
|
msgAppend: function(msgId, msgString, msgType) { |
|
var $targetMessage = $('#pma_console').find('.content .console_message_container .message[msgid=' + msgId +']'); |
|
if ($targetMessage.length === 0 || isNaN(parseInt(msgId)) || typeof(msgString) !== 'string') { |
|
return false; |
|
} |
|
$targetMessage.append('<div>' + msgString + '</div>'); |
|
}, |
|
updateQuery: function(msgId, isSuccessed, queryData) { |
|
var $targetMessage = $('#pma_console').find('.console_message_container .message[msgid=' + parseInt(msgId) +']'); |
|
if ($targetMessage.length === 0 || isNaN(parseInt(msgId))) { |
|
return false; |
|
} |
|
$targetMessage.removeClass('pending failed successed'); |
|
if (isSuccessed) { |
|
$targetMessage.addClass('successed'); |
|
if (queryData) { |
|
$targetMessage.children('.query').text(''); |
|
$targetMessage.removeClass('select'); |
|
if (PMA_console.isSelect(queryData.sql_query)) { |
|
$targetMessage.addClass('select'); |
|
} |
|
if (PMA_consoleInput._codemirror) { |
|
CodeMirror.runMode(queryData.sql_query, 'text/x-sql', $targetMessage.children('.query')[0]); |
|
} else { |
|
$targetMessage.children('.query').text(queryData.sql_query); |
|
} |
|
$targetMessage.attr('targetdb', queryData.db); |
|
$targetMessage.attr('targettable', queryData.table); |
|
$targetMessage.find('.text.targetdb span').text(queryData.db); |
|
} |
|
} else { |
|
$targetMessage.addClass('failed'); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
initialize: function() { |
|
PMA_consoleMessages._msgEventBinds($('#pma_console').find('.message:not(.binded)')); |
|
if (PMA_console.config.startHistory) { |
|
PMA_consoleMessages.showHistory(); |
|
} |
|
PMA_consoleMessages.showInstructions(PMA_console.config.enterExecutes); |
|
} |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
var PMA_consoleBookmarks = { |
|
_bookmarks: [], |
|
addBookmark: function (queryString, targetDb, label, isShared, id) { |
|
$('#pma_bookmarks').find('.add [name=shared]').prop('checked', false); |
|
$('#pma_bookmarks').find('.add [name=label]').val(''); |
|
$('#pma_bookmarks').find('.add [name=targetdb]').val(''); |
|
$('#pma_bookmarks').find('.add [name=id_bookmark]').val(''); |
|
PMA_consoleInput.setText('', 'bookmark'); |
|
|
|
switch(arguments.length) { |
|
case 4: |
|
$('#pma_bookmarks').find('.add [name=shared]').prop('checked', isShared); |
|
case 3: |
|
$('#pma_bookmarks').find('.add [name=label]').val(label); |
|
case 2: |
|
$('#pma_bookmarks').find('.add [name=targetdb]').val(targetDb); |
|
case 1: |
|
PMA_consoleInput.setText(queryString, 'bookmark'); |
|
default: |
|
break; |
|
} |
|
}, |
|
refresh: function () { |
|
$.get('import.php', |
|
{ajax_request: true, |
|
token: PMA_commonParams.get('token'), |
|
server: PMA_commonParams.get('server'), |
|
console_bookmark_refresh: 'refresh'}, |
|
function(data) { |
|
if (data.console_message_bookmark) { |
|
$('#pma_bookmarks').find('.content.bookmark').html(data.console_message_bookmark); |
|
PMA_consoleMessages._msgEventBinds($('#pma_bookmarks').find('.message:not(.binded)')); |
|
} |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
initialize: function() { |
|
if ($('#pma_bookmarks').length === 0) { |
|
return; |
|
} |
|
$('#pma_console').find('.button.bookmarks').click(function() { |
|
PMA_console.showCard('#pma_bookmarks'); |
|
}); |
|
$('#pma_bookmarks').find('.button.add').click(function() { |
|
PMA_console.showCard('#pma_bookmarks .card.add'); |
|
}); |
|
$('#pma_bookmarks').find('.card.add [name=submit]').click(function () { |
|
if ($('#pma_bookmarks').find('.card.add [name=label]').val().length === 0 |
|
|| PMA_consoleInput.getText('bookmark').length === 0) |
|
{ |
|
alert(PMA_messages.strFormEmpty); |
|
return; |
|
} |
|
$(this).prop('disabled', true); |
|
$.post('import.php', |
|
{token: PMA_commonParams.get('token'), |
|
ajax_request: true, |
|
console_bookmark_add: 'true', |
|
label: $('#pma_bookmarks').find('.card.add [name=label]').val(), |
|
server: PMA_commonParams.get('server'), |
|
db: $('#pma_bookmarks').find('.card.add [name=targetdb]').val(), |
|
bookmark_query: PMA_consoleInput.getText('bookmark'), |
|
shared: $('#pma_bookmarks').find('.card.add [name=shared]').prop('checked')}, |
|
function () { |
|
PMA_consoleBookmarks.refresh(); |
|
$('#pma_bookmarks').find('.card.add [name=submit]').prop('disabled', false); |
|
PMA_console.hideCard($('#pma_bookmarks').find('.card.add')); |
|
}); |
|
}); |
|
$('#pma_console').find('.button.refresh').click(function() { |
|
PMA_consoleBookmarks.refresh(); |
|
}); |
|
} |
|
}; |
|
|
|
var PMA_consoleDebug; |
|
PMA_consoleDebug = { |
|
_config: { |
|
groupQueries: false, |
|
orderBy: 'exec', |
|
order: 'asc' |
|
}, |
|
_lastDebugInfo: { |
|
debugInfo: null, |
|
url: null |
|
}, |
|
initialize: function () { |
|
|
|
$(document).ajaxSuccess(function (event, xhr, settings, data) { |
|
if (data._debug) { |
|
PMA_consoleDebug.showLog(data._debug, settings.url); |
|
} |
|
}); |
|
|
|
|
|
this._initConfig(); |
|
|
|
if (this.configParam('groupQueries')) { |
|
$('#debug_console').addClass('grouped'); |
|
} else { |
|
$('#debug_console').addClass('ungrouped'); |
|
if (PMA_consoleDebug.configParam('orderBy') == 'count') { |
|
$('#debug_console').find('.button.order_by.sort_exec').addClass('active'); |
|
} |
|
} |
|
var orderBy = this.configParam('orderBy'); |
|
var order = this.configParam('order'); |
|
$('#debug_console').find('.button.order_by.sort_' + orderBy).addClass('active'); |
|
$('#debug_console').find('.button.order.order_' + order).addClass('active'); |
|
|
|
|
|
$('#debug_console').find('.button.group_queries').click(function () { |
|
$('#debug_console').addClass('grouped'); |
|
$('#debug_console').removeClass('ungrouped'); |
|
PMA_consoleDebug.configParam('groupQueries', true); |
|
PMA_consoleDebug.refresh(); |
|
if (PMA_consoleDebug.configParam('orderBy') == 'count') { |
|
$('#debug_console').find('.button.order_by.sort_exec').removeClass('active'); |
|
} |
|
}); |
|
$('#debug_console').find('.button.ungroup_queries').click(function () { |
|
$('#debug_console').addClass('ungrouped'); |
|
$('#debug_console').removeClass('grouped'); |
|
PMA_consoleDebug.configParam('groupQueries', false); |
|
PMA_consoleDebug.refresh(); |
|
if (PMA_consoleDebug.configParam('orderBy') == 'count') { |
|
$('#debug_console').find('.button.order_by.sort_exec').addClass('active'); |
|
} |
|
}); |
|
$('#debug_console').find('.button.order_by').click(function () { |
|
var $this = $(this); |
|
$('#debug_console').find('.button.order_by').removeClass('active'); |
|
$this.addClass('active'); |
|
if ($this.hasClass('sort_time')) { |
|
PMA_consoleDebug.configParam('orderBy', 'time'); |
|
} else if ($this.hasClass('sort_exec')) { |
|
PMA_consoleDebug.configParam('orderBy', 'exec'); |
|
} else if ($this.hasClass('sort_count')) { |
|
PMA_consoleDebug.configParam('orderBy', 'count'); |
|
} |
|
PMA_consoleDebug.refresh(); |
|
}); |
|
$('#debug_console').find('.button.order').click(function () { |
|
var $this = $(this); |
|
$('#debug_console').find('.button.order').removeClass('active'); |
|
$this.addClass('active'); |
|
if ($this.hasClass('order_asc')) { |
|
PMA_consoleDebug.configParam('order', 'asc'); |
|
} else if ($this.hasClass('order_desc')) { |
|
PMA_consoleDebug.configParam('order', 'desc'); |
|
} |
|
PMA_consoleDebug.refresh(); |
|
}); |
|
|
|
|
|
if (typeof debugSQLInfo !== 'undefined' && debugSQLInfo !== 'null') { |
|
$('#pma_console').find('.button.debug').removeClass('hide'); |
|
} |
|
else { |
|
return; |
|
} |
|
PMA_consoleDebug.showLog(debugSQLInfo); |
|
}, |
|
_initConfig: function () { |
|
var config = JSON.parse($.cookie('pma_console_dbg_config')); |
|
if (config) { |
|
for (var name in config) { |
|
if (config.hasOwnProperty(name)) { |
|
this._config[name] = config[name]; |
|
} |
|
} |
|
} |
|
}, |
|
configParam: function (name, value) { |
|
if (typeof value === 'undefined') { |
|
return this._config[name]; |
|
} |
|
this._config[name] = value; |
|
$.cookie('pma_console_dbg_config', JSON.stringify(this._config)); |
|
return value; |
|
}, |
|
_formatFunctionCall: function (dbgStep) { |
|
var functionName = ''; |
|
if ('class' in dbgStep) { |
|
functionName += dbgStep.class; |
|
functionName += dbgStep.type; |
|
} |
|
functionName += dbgStep.function; |
|
if (dbgStep.args.length) { |
|
functionName += '(...)'; |
|
} else { |
|
functionName += '()'; |
|
} |
|
return functionName; |
|
}, |
|
_formatFunctionArgs: function (dbgStep) { |
|
var $args = $('<div>'); |
|
if (dbgStep.args.length) { |
|
$args.append('<div class="message welcome">') |
|
.append( |
|
$('<div class="message welcome">') |
|
.text( |
|
PMA_sprintf( |
|
PMA_messages.strConsoleDebugArgsSummary, |
|
dbgStep.args.length |
|
) |
|
) |
|
); |
|
for (var i = 0; i < dbgStep.args.length; i++) { |
|
$args.append( |
|
$('<div class="message">') |
|
.html( |
|
'<pre>' + |
|
escapeHtml(JSON.stringify(dbgStep.args[i], null, " ")) + |
|
'</pre>' |
|
) |
|
); |
|
} |
|
} |
|
return $args; |
|
}, |
|
_formatFileName: function (dbgStep) { |
|
var fileName = ''; |
|
if ('file' in dbgStep) { |
|
fileName += dbgStep.file; |
|
fileName += '#' + dbgStep.line; |
|
} |
|
return fileName; |
|
}, |
|
_formatBackTrace: function (dbgTrace) { |
|
var $traceElem = $('<div class="trace">'); |
|
$traceElem.append( |
|
$('<div class="message welcome">') |
|
); |
|
var step, $stepElem; |
|
for (var stepId in dbgTrace) { |
|
if (dbgTrace.hasOwnProperty(stepId)) { |
|
step = dbgTrace[stepId]; |
|
if (!Array.isArray(step) && typeof step !== 'object') { |
|
$stepElem = |
|
$('<div class="message traceStep collapsed hide_args">') |
|
.append( |
|
$('<span>').text(step) |
|
); |
|
} else { |
|
if (typeof step.args === 'string' && step.args) { |
|
step.args = [step.args]; |
|
} |
|
$stepElem = |
|
$('<div class="message traceStep collapsed hide_args">') |
|
.append( |
|
$('<span class="function">').text(this._formatFunctionCall(step)) |
|
) |
|
.append( |
|
$('<span class="file">').text(this._formatFileName(step)) |
|
); |
|
if (step.args.length) { |
|
$stepElem |
|
.append( |
|
$('<span class="args">').html(this._formatFunctionArgs(step)) |
|
) |
|
.prepend( |
|
$('<div class="action_content">') |
|
.append( |
|
'<span class="action dbg_show_args">' + |
|
PMA_messages.strConsoleDebugShowArgs + |
|
'</span> ' |
|
) |
|
.append( |
|
'<span class="action dbg_hide_args">' + |
|
PMA_messages.strConsoleDebugHideArgs + |
|
'</span> ' |
|
) |
|
); |
|
} |
|
} |
|
$traceElem.append($stepElem); |
|
} |
|
} |
|
return $traceElem; |
|
}, |
|
_formatQueryOrGroup: function (queryInfo, totalTime) { |
|
var grouped, queryText, queryTime, count, i; |
|
if (Array.isArray(queryInfo)) { |
|
|
|
grouped = true; |
|
|
|
queryText = queryInfo[0].query; |
|
|
|
queryTime = 0; |
|
for (i in queryInfo) { |
|
queryTime += queryInfo[i].time; |
|
} |
|
|
|
count = queryInfo.length; |
|
} else { |
|
queryText = queryInfo.query; |
|
queryTime = queryInfo.time; |
|
} |
|
|
|
var $query = $('<div class="message collapsed hide_trace">') |
|
.append( |
|
$('#debug_console').find('.templates .debug_query').clone() |
|
) |
|
.append( |
|
$('<div class="query">') |
|
.text(queryText) |
|
) |
|
.data('queryInfo', queryInfo) |
|
.data('totalTime', totalTime); |
|
if (grouped) { |
|
$query.find('.text.count').removeClass('hide'); |
|
$query.find('.text.count span').text(count); |
|
} |
|
$query.find('.text.time span').text(queryTime + 's (' + ((queryTime * 100) / totalTime).toFixed(3) + '%)'); |
|
|
|
return $query; |
|
}, |
|
_appendQueryExtraInfo: function (query, $elem) { |
|
if ('error' in query) { |
|
$elem.append( |
|
$('<div>').html(query.error) |
|
); |
|
} |
|
$elem.append(this._formatBackTrace(query.trace)); |
|
}, |
|
getQueryDetails: function (queryInfo, totalTime, $query) { |
|
if (Array.isArray(queryInfo)) { |
|
var $singleQuery; |
|
for (var i in queryInfo) { |
|
$singleQuery = $('<div class="message welcome trace">') |
|
.text((parseInt(i) + 1) + '.') |
|
.append( |
|
$('<span class="time">').text( |
|
PMA_messages.strConsoleDebugTimeTaken + |
|
' ' + queryInfo[i].time + 's' + |
|
' (' + ((queryInfo[i].time * 100) / totalTime).toFixed(3) + '%)' |
|
) |
|
); |
|
this._appendQueryExtraInfo(queryInfo[i], $singleQuery); |
|
$query |
|
.append('<div class="message welcome trace">') |
|
.append($singleQuery); |
|
} |
|
} else { |
|
this._appendQueryExtraInfo(queryInfo, $query); |
|
} |
|
}, |
|
showLog: function (debugInfo, url) { |
|
this._lastDebugInfo.debugInfo = debugInfo; |
|
this._lastDebugInfo.url = url; |
|
|
|
$('#debug_console').find('.debugLog').empty(); |
|
$("#debug_console").find(".debug>.welcome").empty(); |
|
|
|
var debugJson = false, i; |
|
if (typeof debugInfo === "object" && 'queries' in debugInfo) { |
|
|
|
if (!('queries' in debugInfo)) { |
|
debugJson = false; |
|
} else { |
|
debugJson = {queries: []}; |
|
for (i in debugInfo.queries) { |
|
debugJson.queries[i] = debugInfo.queries[i]; |
|
} |
|
} |
|
} else if (typeof debugInfo === "string") { |
|
try { |
|
debugJson = JSON.parse(debugInfo); |
|
} catch (e) { |
|
debugJson = false; |
|
} |
|
if (debugJson && !('queries' in debugJson)) { |
|
debugJson = false; |
|
} |
|
} |
|
if (debugJson === false) { |
|
$("#debug_console").find(".debug>.welcome").text( |
|
PMA_messages.strConsoleDebugError |
|
); |
|
return; |
|
} |
|
var allQueries = debugJson.queries; |
|
var uniqueQueries = {}; |
|
|
|
var totalExec = allQueries.length; |
|
|
|
|
|
var totalTime = 0; |
|
for (i = 0; i < totalExec; ++i) { |
|
totalTime += allQueries[i].time; |
|
if (!(allQueries[i].hash in uniqueQueries)) { |
|
uniqueQueries[allQueries[i].hash] = []; |
|
} |
|
uniqueQueries[allQueries[i].hash].push(allQueries[i]); |
|
} |
|
|
|
var totalUnique = 0, uniqueArray = []; |
|
for (var hash in uniqueQueries) { |
|
if (uniqueQueries.hasOwnProperty(hash)) { |
|
++totalUnique; |
|
uniqueArray.push(uniqueQueries[hash]); |
|
} |
|
} |
|
uniqueQueries = uniqueArray; |
|
|
|
$("#debug_console").find(".debug>.welcome").append( |
|
$('<span class="debug_summary">').text( |
|
PMA_sprintf( |
|
PMA_messages.strConsoleDebugSummary, |
|
totalUnique, |
|
totalExec, |
|
totalTime |
|
) |
|
) |
|
); |
|
if (url) { |
|
$("#debug_console").find(".debug>.welcome").append( |
|
$('<span class="script_name">').text(url.split('?')[0]) |
|
); |
|
} |
|
|
|
|
|
function sortByTime(a, b) { |
|
var order = ((PMA_consoleDebug.configParam('order') == 'asc') ? 1 : -1); |
|
if (Array.isArray(a) && Array.isArray(b)) { |
|
|
|
var timeA = 0, timeB = 0, i; |
|
for (i in a) { |
|
timeA += a[i].time; |
|
} |
|
for (i in b) { |
|
timeB += b[i].time; |
|
} |
|
return (timeA - timeB) * order; |
|
} else { |
|
return (a.time - b.time) * order; |
|
} |
|
} |
|
|
|
function sortByCount(a, b) { |
|
var order = ((PMA_consoleDebug.configParam('order') == 'asc') ? 1 : -1); |
|
return (a.length - b.length) * order; |
|
} |
|
|
|
var orderBy = this.configParam('orderBy'); |
|
var order = PMA_consoleDebug.configParam('order'); |
|
|
|
if (this.configParam('groupQueries')) { |
|
|
|
if (orderBy == 'time') { |
|
uniqueQueries.sort(sortByTime); |
|
} else if (orderBy == 'count') { |
|
uniqueQueries.sort(sortByCount); |
|
} else if (orderBy == 'exec' && order == 'desc') { |
|
uniqueQueries.reverse(); |
|
} |
|
for (i in uniqueQueries) { |
|
if (orderBy == 'time') { |
|
uniqueQueries[i].sort(sortByTime); |
|
} else if (orderBy == 'exec' && order == 'desc') { |
|
uniqueQueries[i].reverse(); |
|
} |
|
$('#debug_console').find('.debugLog').append(this._formatQueryOrGroup(uniqueQueries[i], totalTime)); |
|
} |
|
} else { |
|
if (orderBy == 'time') { |
|
allQueries.sort(sortByTime); |
|
} else if (order == 'desc') { |
|
allQueries.reverse(); |
|
} |
|
for (i = 0; i < totalExec; ++i) { |
|
$('#debug_console').find('.debugLog').append(this._formatQueryOrGroup(allQueries[i], totalTime)); |
|
} |
|
} |
|
|
|
PMA_consoleMessages._msgEventBinds($('#debug_console').find('.message:not(.binded)')); |
|
}, |
|
refresh: function () { |
|
var last = this._lastDebugInfo; |
|
PMA_consoleDebug.showLog(last.debugInfo, last.url); |
|
} |
|
}; |
|
|
|
|
|
|
|
|
|
$(function () { |
|
PMA_console.initialize(); |
|
}); |
|
|