uBlock/src/js/logger-ui.js

1191 lines
35 KiB
JavaScript
Raw Normal View History

2015-05-09 00:28:01 +02:00
/*******************************************************************************
uMatrix - a browser extension to benchmark browser session.
Copyright (C) 2015 Raymond Hill
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/sessbench
*/
/* jshint boss: true */
/* global vAPI, uDom */
/******************************************************************************/
(function() {
'use strict';
/******************************************************************************/
2015-05-16 16:15:02 +02:00
// Adjust top padding of content table, to match that of toolbar height.
document.getElementById('content').style.setProperty(
'margin-top',
document.getElementById('toolbar').offsetHeight + 'px'
);
/******************************************************************************/
2015-05-09 00:28:01 +02:00
var messager = vAPI.messaging.channel('logger-ui.js');
var tbody = document.querySelector('#content tbody');
var trJunkyard = [];
var tdJunkyard = [];
var firstVarDataCol = 2; // currently, column 2 (0-based index)
var lastVarDataIndex = 4; // currently, d0-d3
var maxEntries = 5000;
var noTabId = '';
var allTabIds = {};
var allTabIdsToken;
2015-05-16 16:15:02 +02:00
var hiddenTemplate = document.querySelector('#hiddenTemplate > span');
2015-05-21 20:15:17 +02:00
var reRFC3986 = /^([^:\/?#]+:)?(\/\/[^\/?#]*)?([^?#]*)(\?[^#]*)?(#.*)?/;
var urlFilteringMenu = document.querySelector('#urlFilteringMenu');
2015-05-16 16:15:02 +02:00
2015-05-09 00:28:01 +02:00
var prettyRequestTypes = {
'main_frame': 'doc',
'stylesheet': 'css',
'sub_frame': 'frame',
'xmlhttprequest': 'xhr'
};
2015-05-21 20:15:17 +02:00
var uglyRequestTypes = {
'doc': 'main_frame',
'css': 'stylesheet',
'frame': 'sub_frame',
'xhr': 'xmlhttprequest'
};
2015-05-09 00:28:01 +02:00
var timeOptions = {
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
hour12: false
};
var dateOptions = {
month: 'short',
day: '2-digit'
};
/******************************************************************************/
2015-05-16 16:15:02 +02:00
var classNameFromTabId = function(tabId) {
if ( tabId === noTabId ) {
return 'tab_bts';
}
if ( tabId !== '' ) {
return 'tab_' + tabId;
}
return '';
};
/******************************************************************************/
var tabIdFromClassName = function(className) {
var matches = className.match(/(?:^| )tab_([^ ]+)(?: |$)/);
if ( matches === null ) {
return '';
}
return matches[1];
};
/******************************************************************************/
2015-05-21 20:15:17 +02:00
var retextFromStaticFilteringResult = function(result) {
var retext = result.slice(3);
var pos = retext.indexOf('$');
if ( pos > 0 ) {
retext = retext.slice(0, pos);
}
if ( retext === '*' ) {
return '^.*$';
}
if ( retext.charAt(0) === '/' && retext.slice(-1) === '/' ) {
return retext.slice(1, -1);
}
return retext
.replace(/\./g, '\\.')
.replace(/\?/g, '\\?')
.replace('||', '')
.replace(/\^/g, '.')
.replace(/^\|/g, '^')
.replace(/\|$/g, '$')
.replace(/\*/g, '.*')
;
};
/******************************************************************************/
var retextFromURLFilteringResult = function(result) {
var beg = result.indexOf(' ');
var end = result.indexOf(' ', beg + 1);
var url = result.slice(beg + 1, end);
if ( url === '*' ) {
return '^.*$';
}
return '^' + url.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
};
/******************************************************************************/
2015-05-09 00:28:01 +02:00
// Emphasize hostname in URL, as this is what matters in uMatrix's rules.
var nodeFromURL = function(url, filter) {
2015-05-21 20:15:17 +02:00
var filterType = filter.charAt(0);
if ( filterType !== 's' && filterType !== 'l' ) {
2015-05-09 00:28:01 +02:00
return document.createTextNode(url);
}
// make a regex out of the filter
2015-05-21 20:15:17 +02:00
var retext = '';
if ( filterType === 's' ) {
retext = retextFromStaticFilteringResult(filter);
} else if ( filterType === 'l' ) {
retext = retextFromURLFilteringResult(filter);
2015-05-09 00:28:01 +02:00
}
2015-05-21 20:15:17 +02:00
if ( retext === '' ) {
return document.createTextNode(url);
}
var re = new RegExp(retext, 'gi');
2015-05-09 00:28:01 +02:00
var matches = re.exec(url);
if ( matches === null || matches[0].length === 0 ) {
return document.createTextNode(url);
}
var node = renderedURLTemplate.cloneNode(true);
node.childNodes[0].textContent = url.slice(0, matches.index);
node.childNodes[1].textContent = url.slice(matches.index, re.lastIndex);
node.childNodes[2].textContent = url.slice(re.lastIndex);
return node;
};
var renderedURLTemplate = document.querySelector('#renderedURLTemplate > span');
/******************************************************************************/
var createCellAt = function(tr, index) {
var td = tr.cells[index];
var mustAppend = !td;
if ( mustAppend ) {
td = tdJunkyard.pop();
}
if ( td ) {
td.removeAttribute('colspan');
td.textContent = '';
} else {
td = document.createElement('td');
}
if ( mustAppend ) {
tr.appendChild(td);
}
return td;
};
/******************************************************************************/
var createRow = function(layout) {
var tr = trJunkyard.pop();
if ( tr ) {
tr.className = '';
2015-05-21 20:15:17 +02:00
tr.removeAttribute('data-context');
2015-05-09 00:28:01 +02:00
} else {
tr = document.createElement('tr');
}
for ( var index = 0; index < firstVarDataCol; index++ ) {
createCellAt(tr, index);
}
var i = 1, span = 1, td;
for (;;) {
td = createCellAt(tr, index);
if ( i === lastVarDataIndex ) {
break;
}
if ( layout.charAt(i) !== '1' ) {
span += 1;
} else {
if ( span !== 1 ) {
td.setAttribute('colspan', span);
}
index += 1;
span = 1;
}
i += 1;
}
if ( span !== 1 ) {
td.setAttribute('colspan', span);
}
index += 1;
while ( td = tr.cells[index] ) {
tdJunkyard.push(tr.removeChild(td));
}
return tr;
};
/******************************************************************************/
2015-05-16 16:15:02 +02:00
var createHiddenTextNode = function(text) {
var node = hiddenTemplate.cloneNode(true);
node.textContent = text;
return node;
};
/******************************************************************************/
2015-05-09 00:28:01 +02:00
var createGap = function(tabId, url) {
var tr = createRow('1');
tr.classList.add('tab');
tr.classList.add('canMtx');
tr.classList.add('tab_' + tabId);
tr.classList.add('maindoc');
tr.cells[firstVarDataCol].textContent = url;
tbody.insertBefore(tr, tbody.firstChild);
};
/******************************************************************************/
var renderNetLogEntry = function(tr, entry) {
var filter = entry.d0;
var type = entry.d1;
var url = entry.d2;
2015-05-21 20:15:17 +02:00
var td;
2015-05-09 00:28:01 +02:00
tr.classList.add('canMtx');
// If the request is that of a root frame, insert a gap in the table
// in order to visually separate entries for different documents.
if ( type === 'main_frame' ) {
createGap(entry.tab, url);
}
2015-05-21 20:15:17 +02:00
// Root hostname
if ( entry.d3 ) {
tr.setAttribute('data-context', entry.d3);
}
2015-05-09 00:28:01 +02:00
// Cosmetic filter?
2015-05-21 20:15:17 +02:00
var filterCat = filter.slice(0, 3);
if ( filterCat.charAt(2) === ':' ) {
tr.classList.add(filterCat.slice(0, 2));
2015-05-09 00:28:01 +02:00
}
var filterText = filter.slice(3);
if ( filter.lastIndexOf('sa', 0) === 0 ) {
filterText = '@@' + filterText;
}
tr.cells[2].textContent = filterText;
td = tr.cells[3];
2015-05-09 00:28:01 +02:00
if ( filter.charAt(1) === 'b' ) {
tr.classList.add('blocked');
2015-05-21 20:15:17 +02:00
td.textContent = '--';
2015-05-09 00:28:01 +02:00
} else if ( filter.charAt(1) === 'a' ) {
tr.classList.add('allowed');
2015-05-21 20:15:17 +02:00
td.textContent = '++';
} else if ( filter.charAt(1) === 'n' ) {
tr.classList.add('nooped');
td.textContent = '**';
2015-05-09 00:28:01 +02:00
} else {
2015-05-21 20:15:17 +02:00
td.textContent = '';
2015-05-09 00:28:01 +02:00
}
2015-05-21 20:15:17 +02:00
tr.cells[4].textContent = (prettyRequestTypes[type] || type);
2015-05-09 00:28:01 +02:00
tr.cells[5].appendChild(nodeFromURL(url, filter));
};
/******************************************************************************/
var renderLogEntry = function(entry) {
var tr;
var fvdc = firstVarDataCol;
switch ( entry.cat ) {
case 'error':
case 'info':
tr = createRow('1');
tr.cells[fvdc].textContent = entry.d0;
break;
case 'cosmetic':
case 'net':
tr = createRow('1111');
renderNetLogEntry(tr, entry);
break;
default:
tr = createRow('1');
tr.cells[fvdc].textContent = entry.d0;
break;
}
// Fields common to all rows.
var time = new Date(entry.tstamp);
tr.cells[0].textContent = time.toLocaleTimeString('fullwide', timeOptions);
tr.cells[0].title = time.toLocaleDateString('fullwide', dateOptions);
if ( entry.tab ) {
2015-05-16 16:15:02 +02:00
tr.classList.add('tab', classNameFromTabId(entry.tab));
2015-05-09 00:28:01 +02:00
if ( entry.tab === noTabId ) {
2015-05-16 16:15:02 +02:00
tr.cells[1].appendChild(createHiddenTextNode('bts'));
2015-05-09 00:28:01 +02:00
}
}
if ( entry.cat !== '' ) {
tr.classList.add('cat_' + entry.cat);
}
rowFilterer.filterOne(tr, true);
tbody.insertBefore(tr, tbody.firstChild);
};
/******************************************************************************/
var renderLogEntries = function(response) {
document.body.classList.toggle('colorBlind', response.colorBlind);
var entries = response.entries;
if ( entries.length === 0 ) {
return;
}
// Preserve scroll position
var height = tbody.offsetHeight;
var tabIds = response.tabIds;
var n = entries.length;
var entry;
for ( var i = 0; i < n; i++ ) {
entry = entries[i];
// Unlikely, but it may happen
if ( entry.tab && tabIds.hasOwnProperty(entry.tab) === false ) {
continue;
}
renderLogEntry(entries[i]);
}
// Prevent logger from growing infinitely and eating all memory. For
// instance someone could forget that it is left opened for some
// dynamically refreshed pages.
truncateLog(maxEntries);
var yDelta = tbody.offsetHeight - height;
if ( yDelta === 0 ) {
return;
}
// Chromium:
// body.scrollTop = good value
// body.parentNode.scrollTop = 0
if ( document.body.scrollTop !== 0 ) {
document.body.scrollTop += yDelta;
return;
}
// Firefox:
// body.scrollTop = 0
// body.parentNode.scrollTop = good value
var parentNode = document.body.parentNode;
if ( parentNode && parentNode.scrollTop !== 0 ) {
parentNode.scrollTop += yDelta;
}
};
/******************************************************************************/
2015-05-16 16:15:02 +02:00
var synchronizeTabIds = function(newTabIds) {
var oldTabIds = allTabIds;
var autoDeleteVoidRows = !!vAPI.localStorage.getItem('loggerAutoDeleteVoidRows');
var rowVoided = false;
var trs;
for ( var tabId in oldTabIds ) {
if ( oldTabIds.hasOwnProperty(tabId) === false ) {
continue;
}
if ( newTabIds.hasOwnProperty(tabId) ) {
continue;
}
// Mark or remove voided rows
trs = uDom('.tab_' + tabId);
if ( autoDeleteVoidRows ) {
toJunkyard(trs);
} else {
trs.removeClass('canMtx');
rowVoided = true;
}
// Remove popup if it is currently bound to a removed tab.
if ( tabId === popupManager.tabId ) {
popupManager.toggleOff();
}
}
var select = document.getElementById('pageSelector');
var selectValue = select.value;
var tabIds = Object.keys(newTabIds).sort(function(a, b) {
return newTabIds[a].localeCompare(newTabIds[b]);
});
var option;
for ( var i = 0, j = 2; i < tabIds.length; i++ ) {
tabId = tabIds[i];
if ( tabId === noTabId ) {
continue;
}
option = select.options[j];
j += 1;
if ( !option ) {
option = document.createElement('option');
select.appendChild(option);
}
option.textContent = newTabIds[tabId];
option.value = classNameFromTabId(tabId);
if ( option.value === selectValue ) {
option.setAttribute('selected', '');
} else {
option.removeAttribute('selected');
}
}
while ( j < select.options.length ) {
select.removeChild(select.options[j]);
}
if ( select.value !== selectValue ) {
select.selectedIndex = 0;
select.value = '';
select.options[0].setAttribute('selected', '');
pageSelectorChanged();
}
allTabIds = newTabIds;
return rowVoided;
};
/******************************************************************************/
2015-05-09 00:28:01 +02:00
var truncateLog = function(size) {
if ( size === 0 ) {
size = 5000;
}
var tbody = document.querySelector('#content tbody');
size = Math.min(size, 10000);
var tr;
while ( tbody.childElementCount > size ) {
tr = tbody.lastElementChild;
trJunkyard.push(tbody.removeChild(tr));
}
};
/******************************************************************************/
var onLogBufferRead = function(response) {
// This tells us the behind-the-scene tab id
noTabId = response.noTabId;
// This may have changed meanwhile
if ( response.maxEntries !== maxEntries ) {
maxEntries = response.maxEntries;
uDom('#maxEntries').val(maxEntries || '');
}
// Neuter rows for which a tab does not exist anymore
var rowVoided = false;
if ( response.tabIdsToken !== allTabIdsToken ) {
rowVoided = synchronizeTabIds(response.tabIds);
allTabIdsToken = response.tabIdsToken;
}
2015-05-09 00:28:01 +02:00
renderLogEntries(response);
if ( rowVoided ) {
uDom('#clean').toggleClass(
'disabled',
tbody.querySelector('tr.tab:not(.canMtx)') === null
);
}
2015-05-09 00:28:01 +02:00
// Synchronize toolbar with content of log
uDom('#clear').toggleClass(
'disabled',
tbody.querySelector('tr') === null
);
vAPI.setTimeout(readLogBuffer, 1200);
2015-05-09 00:28:01 +02:00
};
/******************************************************************************/
// This can be called only once, at init time. After that, this will be called
// automatically. If called after init time, this will be messy, and this would
// require a bit more code to ensure no multi time out events.
var readLogBuffer = function() {
messager.send({ what: 'readAll' }, onLogBufferRead);
};
/******************************************************************************/
2015-05-16 16:15:02 +02:00
var pageSelectorChanged = function() {
var style = document.getElementById('tabFilterer');
var tabClass = document.getElementById('pageSelector').value;
var sheet = style.sheet;
while ( sheet.cssRules.length !== 0 ) {
sheet.deleteRule(0);
}
if ( tabClass !== '' ) {
sheet.insertRule(
'#content table tr:not(.' + tabClass + ') { display: none; }',
0
);
}
uDom('#refresh').toggleClass(
'disabled',
tabClass === '' || tabClass === 'tab_bts'
);
};
/******************************************************************************/
var reloadTab = function() {
var tabClass = document.getElementById('pageSelector').value;
var tabId = tabIdFromClassName(tabClass);
if ( tabId === 'bts' || tabId === '' ) {
2015-05-16 16:15:02 +02:00
return;
}
messager.send({ what: 'reloadTab', tabId: tabId });
2015-05-16 16:15:02 +02:00
};
/******************************************************************************/
2015-05-09 00:28:01 +02:00
var onMaxEntriesChanged = function() {
var raw = uDom(this).val();
try {
maxEntries = parseInt(raw, 10);
if ( isNaN(maxEntries) ) {
maxEntries = 0;
}
} catch (e) {
maxEntries = 0;
}
messager.send({
what: 'userSettings',
name: 'requestLogMaxEntries',
value: maxEntries
});
truncateLog(maxEntries);
};
2015-05-21 20:15:17 +02:00
/******************************************************************************/
/******************************************************************************/
var urlFilteringDialog = (function() {
var dialog = null;
var selectContext = null;
var selectType = null;
var targetURLs = [];
var tabId = '';
2015-05-21 20:15:17 +02:00
var removeAllChildren = function(node) {
while ( node.firstChild ) {
node.removeChild(node.firstChild);
}
};
var uglyTypeFromSelector = function() {
var prettyType = selectType.value;
return uglyRequestTypes[prettyType] || prettyType;
};
var onColorsReady = function(response) {
document.body.classList.toggle('dirty', response.dirty);
var colorEntries = response.colors;
var colorEntry, node;
for ( var url in colorEntries ) {
if ( colorEntries.hasOwnProperty(url) === false ) {
continue;
}
colorEntry = colorEntries[url];
node = urlFilteringMenu.querySelector('.entry .action[data-url="' + url + '"]');
2015-05-21 20:15:17 +02:00
if ( node === null ) {
continue;
}
node.classList.toggle('allow', colorEntry.r === 2);
node.classList.toggle('noop', colorEntry.r === 3);
node.classList.toggle('block', colorEntry.r === 1);
node.classList.toggle('own', colorEntry.own);
}
};
var colorize = function() {
messager.send({
what: 'getURLFilteringData',
context: selectContext.value,
urls: targetURLs,
2015-05-21 20:15:17 +02:00
type: uglyTypeFromSelector()
}, onColorsReady);
};
var onClick = function(ev) {
var target = ev.target;
// click outside the url filtering menu
if ( target.id === 'urlFilteringMenu' ) {
toggleOff();
return;
}
ev.stopPropagation();
var tcl = target.classList;
2015-05-21 20:15:17 +02:00
// Save url filtering rule(s)
if ( tcl.contains('save') ) {
2015-05-21 20:15:17 +02:00
messager.send({
what: 'saveURLFilteringRules',
context: selectContext.value,
urls: targetURLs,
2015-05-21 20:15:17 +02:00
type: uglyTypeFromSelector()
}, colorize);
return;
}
2015-05-22 14:05:55 +02:00
var persist = !!ev.ctrlKey || !!ev.metaKey;
2015-05-21 20:15:17 +02:00
// Remove url filtering rule
if ( tcl.contains('action') ) {
2015-05-21 20:15:17 +02:00
messager.send({
what: 'setURLFilteringRule',
context: selectContext.value,
url: target.getAttribute('data-url'),
type: uglyTypeFromSelector(),
2015-05-22 14:05:55 +02:00
action: 0,
persist: persist
2015-05-21 20:15:17 +02:00
}, colorize);
return;
}
// add "allow" url filtering rule
if ( tcl.contains('allow') ) {
2015-05-21 20:15:17 +02:00
messager.send({
what: 'setURLFilteringRule',
context: selectContext.value,
url: target.parentNode.getAttribute('data-url'),
type: uglyTypeFromSelector(),
2015-05-22 14:05:55 +02:00
action: 2,
persist: persist
2015-05-21 20:15:17 +02:00
}, colorize);
return;
}
// add "block" url filtering rule
if ( tcl.contains('noop') ) {
2015-05-21 20:15:17 +02:00
messager.send({
what: 'setURLFilteringRule',
context: selectContext.value,
url: target.parentNode.getAttribute('data-url'),
type: uglyTypeFromSelector(),
2015-05-22 14:05:55 +02:00
action: 3,
persist: persist
2015-05-21 20:15:17 +02:00
}, colorize);
return;
}
// add "block" url filtering rule
if ( tcl.contains('block') ) {
2015-05-21 20:15:17 +02:00
messager.send({
what: 'setURLFilteringRule',
context: selectContext.value,
url: target.parentNode.getAttribute('data-url'),
type: uglyTypeFromSelector(),
2015-05-22 14:05:55 +02:00
action: 1,
persist: persist
2015-05-21 20:15:17 +02:00
}, colorize);
return;
}
// Force a reload of the tab
if ( tcl.contains('reload') ) {
messager.send({
what: 'reloadTab',
tabId: tabId
});
return;
}
// Hightlight corresponding element in target web page
if ( tcl.contains('picker') ) {
messager.send({
what: 'launchElementPicker',
tabId: tabId,
targetURL: 'img\t' + targetURLs[0],
select: true
});
return;
}
};
var createPreview = function(type, url) {
var preview = null;
if ( type === 'image' ) {
preview = document.createElement('img');
preview.setAttribute('src', url);
}
// More...
var container = dialog.querySelector('table.toolbar td.preview');
container.classList.toggle('hide', preview === null);
if ( preview === null ) {
return;
}
container.appendChild(preview);
2015-05-21 20:15:17 +02:00
};
var toggleOn = function(ev) {
if ( dialog !== null ) {
return toggleOff();
}
dialog = urlFilteringMenu.querySelector('.dialog');
selectContext = dialog.querySelector('.context');
selectType = dialog.querySelector('.type');
2015-05-21 20:15:17 +02:00
var td = ev.target;
var tr = td.parentElement;
var cells = tr.cells;
var context = tr.getAttribute('data-context');
if ( !context ) {
return toggleOff();
2015-05-21 20:15:17 +02:00
}
var type = cells[4].textContent.trim();
if ( !type ) {
return toggleOff();
2015-05-21 20:15:17 +02:00
}
tabId = tabIdFromClassName(tr.className);
2015-05-21 20:15:17 +02:00
var pos, option;
// Fill context selector
removeAllChildren(selectContext);
for (;;) {
option = document.createElement('option');
option.textContent = context;
option.setAttribute('value', context);
pos = context.indexOf('.');
selectContext.appendChild(option);
if ( pos === -1 ) {
break;
}
context = context.slice(pos + 1);
}
option = document.createElement('option');
option.textContent = '*';
option.setAttribute('value', '*');
selectContext.appendChild(option);
// Fill type selector
selectType.options[0].textContent = type;
selectType.options[0].setAttribute('value', type);
selectType.selectedIndex = 0;
// Extract data needed to build URL filtering menu
var candidateURL = cells[5].textContent;
var matches = reRFC3986.exec(candidateURL);
if ( matches === null || !matches[1] || !matches[2] ) {
return toggleOff();
2015-05-21 20:15:17 +02:00
}
uDom(dialog).descendants('.picker').toggleClass(
'hide',
tr.classList.contains('tab_bts') ||
type !== 'image' ||
/(?:^| )[dlsu]b(?: |$)/.test(tr.className)
);
2015-05-21 20:15:17 +02:00
// Shortest URL which for a valid URL filtering rule
var candidateRootURL = matches[1] + matches[2];
targetURLs.unshift(candidateRootURL);
2015-05-21 20:15:17 +02:00
var candidatePath = matches[3] || '';
pos = candidatePath.charAt(0) === '/' ? 1 : 0;
while ( pos < candidatePath.length ) {
pos = candidatePath.indexOf('/', pos + 1);
if ( pos === -1 ) {
pos = candidatePath.length;
}
targetURLs.unshift(candidateRootURL + candidatePath.slice(0, pos));
2015-05-21 20:15:17 +02:00
}
var candidateQuery = matches[4] || '';
if ( candidateQuery !== '') {
targetURLs.unshift(candidateRootURL + candidatePath + candidateQuery);
2015-05-21 20:15:17 +02:00
}
// Create preview whenever possible
createPreview(type, targetURLs[0]);
2015-05-21 20:15:17 +02:00
// Fill menu
var menuEntryTemplate = dialog.querySelector('table.toolbar tr.entry');
var tbody = dialog.querySelector('div.entries tbody');
2015-05-21 20:15:17 +02:00
// Adding URL filtering rules
var url, menuEntry;
for ( var i = 0; i < targetURLs.length; i++ ) {
url = targetURLs[i];
2015-05-21 20:15:17 +02:00
menuEntry = menuEntryTemplate.cloneNode(true);
menuEntry.cells[0].children[0].setAttribute('data-url', url);
menuEntry.cells[1].textContent = url;
tbody.appendChild(menuEntry);
2015-05-21 20:15:17 +02:00
}
colorize();
document.body.appendChild(urlFilteringMenu);
urlFilteringMenu.addEventListener('click', onClick, true);
2015-05-21 20:15:17 +02:00
selectContext.addEventListener('change', colorize);
selectType.addEventListener('change', colorize);
};
var toggleOff = function() {
if ( selectContext !== null ) {
selectContext.removeEventListener('change', colorize);
selectContext = null;
}
if ( selectType !== null ) {
selectType.removeEventListener('change', colorize);
selectType = null;
}
if ( dialog !== null ) {
uDom(dialog).descendants('table.toolbar td.preview > *').remove();
uDom(dialog).descendants('div.entries tr').remove();
dialog = null;
2015-05-21 20:15:17 +02:00
}
urlFilteringMenu.removeEventListener('click', onClick, true);
document.body.removeChild(urlFilteringMenu);
targetURLs = [];
2015-05-21 20:15:17 +02:00
};
return {
toggleOn: toggleOn
};
})();
/******************************************************************************/
2015-05-09 00:28:01 +02:00
/******************************************************************************/
var rowFilterer = (function() {
var filters = [];
var parseInput = function() {
filters = [];
2015-05-23 15:27:24 +02:00
var rawPart, hardBeg, hardEnd;
2015-05-09 00:28:01 +02:00
var raw = uDom('#filterInput').val().trim();
var rawParts = raw.split(/\s+/);
2015-05-23 15:27:24 +02:00
var reStr, reStrs = [], not = false;
2015-05-28 02:48:04 +02:00
var n = rawParts.length;
for ( var i = 0; i < n; i++ ) {
2015-05-09 00:28:01 +02:00
rawPart = rawParts[i];
2015-05-23 15:27:24 +02:00
if ( rawPart.charAt(0) === '!' ) {
if ( reStrs.length === 0 ) {
not = true;
}
rawPart = rawPart.slice(1);
}
2015-05-09 00:28:01 +02:00
hardBeg = rawPart.charAt(0) === '|';
if ( hardBeg ) {
rawPart = rawPart.slice(1);
}
hardEnd = rawPart.slice(-1) === '|';
if ( hardEnd ) {
rawPart = rawPart.slice(0, -1);
}
if ( rawPart === '' ) {
continue;
}
// https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions
reStr = rawPart.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
2015-05-09 00:28:01 +02:00
if ( hardBeg ) {
reStr = '(?:^|\\s)' + reStr;
}
if ( hardEnd ) {
reStr += '(?:\\s|$)';
}
2015-05-23 15:27:24 +02:00
reStrs.push(reStr);
2015-05-28 02:48:04 +02:00
if ( i < (n - 1) && rawParts[i + 1] === '||' ) {
i += 1;
2015-05-23 15:27:24 +02:00
continue;
}
reStr = reStrs.length === 1 ? reStrs[0] : reStrs.join('|');
2015-05-09 00:28:01 +02:00
filters.push({
re: new RegExp(reStr, 'i'),
r: !not
});
2015-05-23 15:27:24 +02:00
reStrs = [];
not = false;
2015-05-09 00:28:01 +02:00
}
};
var filterOne = function(tr, clean) {
var ff = filters;
var fcount = ff.length;
if ( fcount === 0 && clean === true ) {
return;
}
// do not filter out doc boundaries, they help separate important
// section of log.
var cl = tr.classList;
if ( cl.contains('maindoc') ) {
return;
}
if ( fcount === 0 ) {
cl.remove('f');
return;
}
var cc = tr.cells;
var ccount = cc.length;
var hit, j, f;
// each filter expression must hit (implicit and-op)
// if...
// positive filter expression = there must one hit on any field
// negative filter expression = there must be no hit on all fields
for ( var i = 0; i < fcount; i++ ) {
f = ff[i];
hit = !f.r;
for ( j = 0; j < ccount; j++ ) {
if ( f.re.test(cc[j].textContent) ) {
hit = f.r;
break;
}
}
if ( !hit ) {
cl.add('f');
return;
}
}
cl.remove('f');
};
var filterAll = function() {
// Special case: no filter
if ( filters.length === 0 ) {
uDom('#content tr').removeClass('f');
return;
}
var tbody = document.querySelector('#content tbody');
var rows = tbody.rows;
var i = rows.length;
while ( i-- ) {
filterOne(rows[i]);
}
};
var onFilterChangedAsync = (function() {
var timer = null;
var commit = function() {
timer = null;
parseInput();
filterAll();
};
return function() {
if ( timer !== null ) {
clearTimeout(timer);
}
timer = vAPI.setTimeout(commit, 750);
2015-05-09 00:28:01 +02:00
};
})();
var onFilterButton = function() {
var cl = document.body.classList;
cl.toggle('f', cl.contains('f') === false);
};
uDom('#filterButton').on('click', onFilterButton);
uDom('#filterInput').on('input', onFilterChangedAsync);
return {
filterOne: filterOne,
filterAll: filterAll
};
})();
/******************************************************************************/
var toJunkyard = function(trs) {
trs.remove();
var i = trs.length;
while ( i-- ) {
trJunkyard.push(trs.nodeAt(i));
}
};
/******************************************************************************/
var clearBuffer = function() {
var tbody = document.querySelector('#content tbody');
var tr;
while ( tbody.firstChild !== null ) {
tr = tbody.lastElementChild;
trJunkyard.push(tbody.removeChild(tr));
}
uDom('#clear').addClass('disabled');
uDom('#clean').addClass('disabled');
};
/******************************************************************************/
var cleanBuffer = function() {
var rows = uDom('#content tr.tab:not(.canMtx)').remove();
var i = rows.length;
while ( i-- ) {
trJunkyard.push(rows.nodeAt(i));
}
uDom('#clean').addClass('disabled');
2015-05-09 00:28:01 +02:00
};
/******************************************************************************/
var toggleCompactView = function() {
document.body.classList.toggle(
'compactView',
document.body.classList.contains('compactView') === false
);
};
/******************************************************************************/
var popupManager = (function() {
var realTabId = null;
var localTabId = null;
var container = null;
var popup = null;
var popupObserver = null;
var style = null;
var styleTemplate = [
'#content tr:not(.tab_{{tabId}}) {',
2015-05-09 00:28:01 +02:00
'cursor: not-allowed;',
'opacity: 0.2;',
'}'
].join('\n');
2015-05-10 15:28:50 +02:00
var resizePopup = function() {
if ( popup === null ) {
2015-05-09 00:28:01 +02:00
return;
}
var popupBody = popup.contentWindow.document.body;
if ( popupBody.clientWidth !== 0 && container.clientWidth !== popupBody.clientWidth ) {
2015-05-10 15:28:50 +02:00
container.style.setProperty('width', popupBody.clientWidth + 'px');
2015-05-09 00:28:01 +02:00
}
if ( popupBody.clientHeight !== 0 && popup.clientHeight !== popupBody.clientHeight ) {
2015-05-10 15:28:50 +02:00
popup.style.setProperty('height', popupBody.clientHeight + 'px');
2015-05-09 00:28:01 +02:00
}
};
2015-05-10 15:28:50 +02:00
var toggleSize = function() {
container.classList.toggle('hide');
};
2015-05-09 00:28:01 +02:00
var onLoad = function() {
resizePopup();
popupObserver.observe(popup.contentDocument.body, {
subtree: true,
attributes: true
});
};
var toggleOn = function(td) {
var tr = td.parentNode;
realTabId = localTabId = tabIdFromClassName(tr.className);
if ( realTabId === '' ) {
2015-05-09 00:28:01 +02:00
return;
}
if ( localTabId === 'bts' ) {
realTabId = noTabId;
}
container = document.getElementById('popupContainer');
2015-05-10 15:28:50 +02:00
container.querySelector('div > span:nth-of-type(1)').addEventListener('click', toggleSize);
container.querySelector('div > span:nth-of-type(2)').addEventListener('click', toggleOff);
2015-05-09 00:28:01 +02:00
popup = document.createElement('iframe');
popup.addEventListener('load', onLoad);
popup.setAttribute('src', 'popup.html?tabId=' + realTabId);
popupObserver = new MutationObserver(resizePopup);
container.appendChild(popup);
2015-05-16 16:15:02 +02:00
style = document.getElementById('popupFilterer');
2015-05-09 00:28:01 +02:00
style.textContent = styleTemplate.replace('{{tabId}}', localTabId);
document.body.classList.add('popupOn');
};
var toggleOff = function() {
document.body.classList.remove('popupOn');
2015-05-10 15:28:50 +02:00
container.querySelector('div > span:nth-of-type(1)').removeEventListener('click', toggleSize);
container.querySelector('div > span:nth-of-type(2)').removeEventListener('click', toggleOff);
container.classList.remove('hide');
2015-05-09 00:28:01 +02:00
popup.removeEventListener('load', onLoad);
popupObserver.disconnect();
popupObserver = null;
popup.setAttribute('src', '');
container.removeChild(popup);
popup = null;
style.textContent = '';
style = null;
container = null;
realTabId = null;
};
var exports = {
toggleOn: function(ev) {
if ( realTabId === null ) {
toggleOn(ev.target);
}
},
toggleOff: function() {
if ( realTabId !== null ) {
toggleOff();
}
}
};
Object.defineProperty(exports, 'tabId', {
get: function() { return realTabId || 0; }
});
return exports;
})();
/******************************************************************************/
uDom.onLoad(function() {
readLogBuffer();
2015-05-16 16:15:02 +02:00
uDom('#pageSelector').on('change', pageSelectorChanged);
uDom('#refresh').on('click', reloadTab);
2015-05-09 00:28:01 +02:00
uDom('#compactViewToggler').on('click', toggleCompactView);
uDom('#clean').on('click', cleanBuffer);
2015-05-09 00:28:01 +02:00
uDom('#clear').on('click', clearBuffer);
uDom('#maxEntries').on('change', onMaxEntriesChanged);
uDom('#content table').on('click', 'tr.canMtx > td:nth-of-type(2)', popupManager.toggleOn);
uDom('#content').on('click', 'tr.cat_net > td:nth-of-type(4)', urlFilteringDialog.toggleOn);
2015-05-09 00:28:01 +02:00
});
/******************************************************************************/
})();