2022-09-07 16:15:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
2022-09-13 23:44:24 +02:00
|
|
|
Copyright (C) 2022-present Raymond Hill
|
2022-09-07 16:15:36 +02:00
|
|
|
|
|
|
|
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/uBlock
|
|
|
|
*/
|
|
|
|
|
2022-09-13 23:44:24 +02:00
|
|
|
/* jshint esversion:11 */
|
|
|
|
|
2022-09-07 16:15:36 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-13 23:44:24 +02:00
|
|
|
import { browser, sendMessage } from './ext.js';
|
2022-09-15 19:14:08 +02:00
|
|
|
import { dom, qs$ } from './dom.js';
|
2022-09-13 23:44:24 +02:00
|
|
|
import { i18n$ } from './i18n.js';
|
|
|
|
import { simpleStorage } from './storage.js';
|
2022-09-07 16:15:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-13 23:44:24 +02:00
|
|
|
let currentTab = {};
|
2022-09-15 19:14:08 +02:00
|
|
|
let tabHostname = '';
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
let originalStateHash = '';
|
|
|
|
|
|
|
|
function getCurrentStateHash() {
|
|
|
|
const parts = [
|
|
|
|
dom.cl.has(dom.body, 'off'),
|
|
|
|
dom.cl.has(dom.body, 'hasGreatPowers'),
|
|
|
|
];
|
|
|
|
return parts.join('\t');
|
|
|
|
}
|
|
|
|
|
|
|
|
function onStateHashChanged() {
|
|
|
|
dom.cl.toggle(
|
|
|
|
dom.body,
|
|
|
|
'needReload',
|
|
|
|
getCurrentStateHash() !== originalStateHash
|
|
|
|
);
|
|
|
|
}
|
2022-09-08 16:04:08 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-07 16:15:36 +02:00
|
|
|
async function toggleTrustedSiteDirective() {
|
|
|
|
let url;
|
|
|
|
try {
|
|
|
|
url = new URL(currentTab.url);
|
|
|
|
} catch(ex) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( url instanceof URL === false ) { return; }
|
2022-09-15 19:14:08 +02:00
|
|
|
|
|
|
|
const targetTrustedState = dom.cl.has(dom.body, 'off');
|
|
|
|
|
2022-09-13 23:44:24 +02:00
|
|
|
const newTrustedState = await sendMessage({
|
2022-09-07 16:15:36 +02:00
|
|
|
what: 'toggleTrustedSiteDirective',
|
|
|
|
origin: url.origin,
|
|
|
|
state: targetTrustedState,
|
|
|
|
tabId: currentTab.id,
|
2022-09-08 16:04:08 +02:00
|
|
|
}).catch(( ) =>
|
|
|
|
targetTrustedState === false
|
|
|
|
);
|
2022-09-15 19:14:08 +02:00
|
|
|
|
|
|
|
dom.cl.toggle(dom.body, 'off', newTrustedState === true);
|
|
|
|
onStateHashChanged();
|
2022-09-07 16:15:36 +02:00
|
|
|
}
|
|
|
|
|
2022-09-15 19:14:08 +02:00
|
|
|
dom.on(qs$('#switch'), 'click', toggleTrustedSiteDirective);
|
|
|
|
|
2022-09-07 16:15:36 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
function reloadTab(ev) {
|
2022-09-13 23:44:24 +02:00
|
|
|
browser.tabs.reload(currentTab.id, {
|
2022-09-07 16:15:36 +02:00
|
|
|
bypassCache: ev.ctrlKey || ev.metaKey || ev.shiftKey,
|
|
|
|
});
|
2022-09-15 19:14:08 +02:00
|
|
|
dom.cl.remove(dom.body, 'needReload');
|
|
|
|
originalStateHash = getCurrentStateHash();
|
2022-09-07 16:15:36 +02:00
|
|
|
}
|
|
|
|
|
2022-09-15 19:14:08 +02:00
|
|
|
dom.on(qs$('#refresh'), 'click', reloadTab);
|
2022-09-07 16:15:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
2022-09-08 16:04:08 +02:00
|
|
|
|
|
|
|
// The popup panel is made of sections. Visibility of sections can be
|
|
|
|
// toggled on/off.
|
|
|
|
|
2022-09-15 19:14:08 +02:00
|
|
|
const maxNumberOfSections = 2;
|
2022-09-08 16:04:08 +02:00
|
|
|
|
|
|
|
const sectionBitsFromAttribute = function() {
|
2022-09-15 19:14:08 +02:00
|
|
|
const value = dom.body.dataset.section;
|
|
|
|
if ( value === '' ) { return 0; }
|
2022-09-08 16:04:08 +02:00
|
|
|
let bits = 0;
|
2022-09-15 19:14:08 +02:00
|
|
|
for ( const c of value.split(' ') ) {
|
2022-09-08 16:04:08 +02:00
|
|
|
bits |= 1 << (c.charCodeAt(0) - 97);
|
|
|
|
}
|
|
|
|
return bits;
|
|
|
|
};
|
|
|
|
|
|
|
|
const sectionBitsToAttribute = function(bits) {
|
|
|
|
if ( typeof bits !== 'number' ) { return; }
|
|
|
|
if ( isNaN(bits) ) { return; }
|
2022-09-15 19:14:08 +02:00
|
|
|
const value = [];
|
2022-09-08 16:04:08 +02:00
|
|
|
for ( let i = 0; i < maxNumberOfSections; i++ ) {
|
|
|
|
const bit = 1 << i;
|
|
|
|
if ( (bits & bit) === 0 ) { continue; }
|
2022-09-15 19:14:08 +02:00
|
|
|
value.push(String.fromCharCode(97 + i));
|
2022-09-08 16:04:08 +02:00
|
|
|
}
|
2022-09-15 19:14:08 +02:00
|
|
|
dom.body.dataset.section = value.join(' ');
|
2022-09-08 16:04:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
async function toggleSections(more) {
|
|
|
|
let currentBits = sectionBitsFromAttribute();
|
|
|
|
let newBits = currentBits;
|
|
|
|
for ( let i = 0; i < maxNumberOfSections; i++ ) {
|
|
|
|
const bit = 1 << (more ? i : maxNumberOfSections - i - 1);
|
|
|
|
if ( more ) {
|
|
|
|
newBits |= bit;
|
|
|
|
} else {
|
|
|
|
newBits &= ~bit;
|
|
|
|
}
|
|
|
|
if ( newBits !== currentBits ) { break; }
|
|
|
|
}
|
|
|
|
if ( newBits === currentBits ) { return; }
|
|
|
|
sectionBitsToAttribute(newBits);
|
2022-09-13 23:44:24 +02:00
|
|
|
simpleStorage.setItem('popupPanelSections', newBits);
|
2022-09-08 16:04:08 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 23:44:24 +02:00
|
|
|
simpleStorage.getItem('popupPanelSections').then(s => {
|
|
|
|
sectionBitsToAttribute(parseInt(s, 10) || 0);
|
|
|
|
});
|
2022-09-08 16:04:08 +02:00
|
|
|
|
2022-09-15 19:14:08 +02:00
|
|
|
dom.on(qs$('#moreButton'), 'click', ( ) => {
|
2022-09-08 16:04:08 +02:00
|
|
|
toggleSections(true);
|
|
|
|
});
|
|
|
|
|
2022-09-15 19:14:08 +02:00
|
|
|
dom.on(qs$('#lessButton'), 'click', ( ) => {
|
2022-09-08 16:04:08 +02:00
|
|
|
toggleSections(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-15 19:14:08 +02:00
|
|
|
async function grantGreatPowers() {
|
|
|
|
const granted = await sendMessage({
|
|
|
|
what: 'grantGreatPowers',
|
|
|
|
hostname: tabHostname,
|
|
|
|
});
|
|
|
|
if ( granted !== true ) { return; }
|
|
|
|
dom.cl.add(dom.body, 'hasGreatPowers');
|
|
|
|
onStateHashChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function revokeGreatPowers() {
|
|
|
|
const removed = await sendMessage({
|
|
|
|
what: 'revokeGreatPowers',
|
|
|
|
hostname: tabHostname,
|
|
|
|
});
|
|
|
|
if ( removed !== true ) { return; }
|
|
|
|
dom.cl.remove(dom.body, 'hasGreatPowers');
|
|
|
|
onStateHashChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
dom.on(qs$('#toggleGreatPowers'), 'click', ( ) => {
|
|
|
|
if ( dom.cl.has(dom.body, 'hasGreatPowers' ) ) {
|
|
|
|
revokeGreatPowers();
|
|
|
|
} else {
|
|
|
|
grantGreatPowers();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
async function init() {
|
|
|
|
const [ tab ] = await browser.tabs.query({ active: true });
|
|
|
|
if ( tab instanceof Object === false ) { return true; }
|
|
|
|
currentTab = tab;
|
|
|
|
|
|
|
|
let url;
|
|
|
|
try {
|
|
|
|
url = new URL(currentTab.url);
|
|
|
|
tabHostname = url.hostname || '';
|
|
|
|
} catch(ex) {
|
|
|
|
}
|
|
|
|
|
|
|
|
let popupPanelData = {};
|
|
|
|
if ( url !== undefined ) {
|
|
|
|
popupPanelData = await sendMessage({
|
|
|
|
what: 'popupPanelData',
|
|
|
|
origin: url.origin,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
dom.cl.toggle(
|
|
|
|
dom.body,
|
|
|
|
'off',
|
|
|
|
popupPanelData.isTrusted === true
|
|
|
|
);
|
|
|
|
|
|
|
|
dom.cl.toggle(
|
|
|
|
dom.body,
|
|
|
|
'hasGreatPowers',
|
|
|
|
popupPanelData.hasGreatPowers === true
|
|
|
|
);
|
|
|
|
|
|
|
|
dom.text(qs$('#hostname'), tabHostname);
|
2022-09-17 14:26:41 +02:00
|
|
|
dom.text(
|
|
|
|
qs$('#toggleGreatPowers .badge'),
|
|
|
|
popupPanelData.injectableCount || ''
|
|
|
|
);
|
2022-09-15 19:14:08 +02:00
|
|
|
|
|
|
|
const parent = qs$('#rulesetStats');
|
|
|
|
for ( const details of popupPanelData.rulesetDetails || [] ) {
|
|
|
|
const div = qs$('#templates .rulesetDetails').cloneNode(true);
|
|
|
|
dom.text(qs$('h1', div), details.name);
|
|
|
|
const { rules, filters, css } = details;
|
|
|
|
dom.text(
|
|
|
|
qs$('p', div),
|
|
|
|
i18n$('perRulesetStats')
|
|
|
|
.replace('{{ruleCount}}', rules.accepted.toLocaleString())
|
|
|
|
.replace('{{filterCount}}', filters.accepted.toLocaleString())
|
|
|
|
.replace('{{cssSpecificCount}}', css.specific.toLocaleString())
|
|
|
|
);
|
|
|
|
parent.append(div);
|
|
|
|
}
|
|
|
|
|
|
|
|
dom.cl.remove(dom.body, 'loading');
|
|
|
|
|
|
|
|
originalStateHash = getCurrentStateHash();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function tryInit() {
|
|
|
|
try {
|
|
|
|
await init();
|
|
|
|
} catch(ex) {
|
|
|
|
setTimeout(tryInit, 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tryInit();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|