mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-24 02:13:43 +03:00
First working version
This commit is contained in:
parent
3a79e9738b
commit
314bf57b94
|
@ -241,6 +241,9 @@
|
||||||
const compareVersions = (a, b) => versionToInt(a) - versionToInt(b);
|
const compareVersions = (a, b) => versionToInt(a) - versionToInt(b);
|
||||||
|
|
||||||
window.apis = {
|
window.apis = {
|
||||||
|
platform: {
|
||||||
|
ifFirefox: navigator.userAgent.toLowerCase().includes('firefox'),
|
||||||
|
},
|
||||||
version: {
|
version: {
|
||||||
ifMini: false,
|
ifMini: false,
|
||||||
build: chrome.runtime.getManifest().version.replace(/\d+\.\d+\./g, ''),
|
build: chrome.runtime.getManifest().version.replace(/\d+\.\d+\./g, ''),
|
||||||
|
@ -249,4 +252,36 @@
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Shims for FireFox
|
||||||
|
|
||||||
|
if (!chrome.proxy.settings) {
|
||||||
|
|
||||||
|
let currentSettings = {};
|
||||||
|
|
||||||
|
chrome.proxy.settings = {
|
||||||
|
get: (_, cb) => {
|
||||||
|
|
||||||
|
currentSettings.levelOfControl = 'controlled_by_this_extension'; // May be lie, but this field is required.
|
||||||
|
cb(currentSettings);
|
||||||
|
|
||||||
|
},
|
||||||
|
onChange: {
|
||||||
|
addListener: () => {},
|
||||||
|
},
|
||||||
|
set: (details, cb) => {
|
||||||
|
|
||||||
|
browser.proxy.unregister();
|
||||||
|
browser.proxy.register('./default.pac.js');
|
||||||
|
|
||||||
|
|
||||||
|
browser.proxy.onProxyError.addListener((...err) => { console.log('ERROR IN PAC:', ...err) });
|
||||||
|
|
||||||
|
browser.runtime.sendMessage(details, {toProxyScript: true});
|
||||||
|
currentSettings = details;
|
||||||
|
cb();
|
||||||
|
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
const errorJsonReplacer = function errorJsonReplacer(key, value) {
|
const errorJsonReplacer = function errorJsonReplacer(key, value) {
|
||||||
|
|
||||||
// fooWindow.ErrorEvent !== barWindow.ErrorEvent
|
// fooWindow.ErrorEvent !== barWindow.ErrorEvent
|
||||||
|
if (value === window) {
|
||||||
|
return; // STUPID, because other window object may be passed.
|
||||||
|
}
|
||||||
if (!( value && value.constructor
|
if (!( value && value.constructor
|
||||||
&& ['Error', 'Event'].some(
|
&& ['Error', 'Event'].some(
|
||||||
(suff) => value.constructor.name.endsWith(suff)
|
(suff) => value.constructor.name.endsWith(suff)
|
||||||
|
@ -114,20 +117,22 @@
|
||||||
|
|
||||||
isControllable(details) {
|
isControllable(details) {
|
||||||
|
|
||||||
this.ifControllable = window.utils.areSettingsControllableFor(details);
|
if (details) {
|
||||||
|
this.ifControllable = window.utils.areSettingsControllableFor(details);
|
||||||
|
|
||||||
if (this.ifControllable) {
|
if (this.ifControllable) {
|
||||||
this.ifControlled = window.utils.areSettingsControlledFor(details);
|
this.ifControlled = window.utils.areSettingsControlledFor(details);
|
||||||
} else {
|
} else {
|
||||||
this.ifControlled = false;
|
this.ifControlled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.ifControlled) {
|
if (this.ifControlled) {
|
||||||
chrome.browserAction.setIcon( {path: './icons/default-128.png'} );
|
chrome.browserAction.setIcon( {path: './icons/default-128.png'} );
|
||||||
} else {
|
} else {
|
||||||
chrome.browserAction.setIcon({
|
chrome.browserAction.setIcon({
|
||||||
path: './icons/default-grayscale-128.png',
|
path: './icons/default-grayscale-128.png',
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.ifControllable;
|
return this.ifControllable;
|
||||||
|
@ -136,7 +141,9 @@
|
||||||
|
|
||||||
isControlled(details) {
|
isControlled(details) {
|
||||||
|
|
||||||
this.isControllable(details);
|
if (details) {
|
||||||
|
this.isControllable(details);
|
||||||
|
}
|
||||||
return this.ifControlled;
|
return this.ifControlled;
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -175,16 +182,15 @@
|
||||||
const message = errOrMessage.message || errOrMessage.toString();
|
const message = errOrMessage.message || errOrMessage.toString();
|
||||||
chrome.notifications.create(
|
chrome.notifications.create(
|
||||||
id,
|
id,
|
||||||
{
|
Object.assign({
|
||||||
title: title,
|
title: title,
|
||||||
message: message,
|
message: message,
|
||||||
contextMessage: context,
|
contextMessage: context,
|
||||||
requireInteraction: ifSticky,
|
|
||||||
type: 'basic',
|
type: 'basic',
|
||||||
iconUrl: './icons/' + icon,
|
iconUrl: './icons/' + icon,
|
||||||
appIconMaskUrl: './icons/default-mask-128.png',
|
appIconMaskUrl: './icons/default-mask-128.png',
|
||||||
isClickable: true,
|
isClickable: true,
|
||||||
}
|
}, window.apis.platform.ifFirefox ? {} : { requireInteraction: ifSticky }),
|
||||||
);
|
);
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
|
@ -317,11 +317,11 @@
|
||||||
|
|
||||||
return pacMods.ifNoMods ? pacData : pacData + `${ kitchenStartsMark }
|
return pacMods.ifNoMods ? pacData : pacData + `${ kitchenStartsMark }
|
||||||
/******/
|
/******/
|
||||||
/******/;+function(global) {
|
/******/;(function(global) {
|
||||||
/******/ "use strict";
|
/******/ "use strict";
|
||||||
/******/
|
/******/
|
||||||
/******/ const originalFindProxyForURL = FindProxyForURL;
|
/******/ const originalFindProxyForURL = FindProxyForURL;
|
||||||
/******/ global.FindProxyForURL = function(url, host) {
|
/******/ const tmp = function(url, host) {
|
||||||
/******/
|
/******/
|
||||||
${
|
${
|
||||||
function() {
|
function() {
|
||||||
|
@ -453,7 +453,13 @@ ${ pacMods.filteredCustomsString
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}(this);`;
|
if (global) {
|
||||||
|
/******/ global.FindProxyForURL = tmp;
|
||||||
|
} else {
|
||||||
|
/******/ FindProxyForURL = tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
})(this);`;
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
var coolFind = () => {};
|
||||||
|
this.FindProxyForURL = function (...args) {
|
||||||
|
return coolFind(...args);
|
||||||
|
};
|
||||||
|
|
||||||
|
const dnsResolve = this.dnsResolve || (() => null); // Welcome to hell! Someone forgot dns.
|
||||||
|
|
||||||
|
browser.runtime.onMessage.addListener((details) => {
|
||||||
|
const pacData =
|
||||||
|
details && details.value && details.value.pacScript && details.value.pacScript.data;
|
||||||
|
if (!pacData) {
|
||||||
|
throw new Error('Never install empty PAC scripts!');
|
||||||
|
}
|
||||||
|
coolFind = (function() { eval(pacData); return FindProxyForURL; })();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
|
@ -45,5 +45,7 @@
|
||||||
"options_ui": {
|
"options_ui": {
|
||||||
"page": "/pages/options/index.html",
|
"page": "/pages/options/index.html",
|
||||||
"chrome_style": false
|
"chrome_style": false
|
||||||
}
|
},
|
||||||
|
|
||||||
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,60 +1,63 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const setStatusTo = (msg) => document.getElementById('status').innerHTML = msg;
|
chrome.runtime.getBackgroundPage((bgWin) => {
|
||||||
|
|
||||||
const red = (text) => '<span style="color: red">' + text + '</span>';
|
const setStatusTo = (msg) => document.getElementById('status').innerHTML = msg;
|
||||||
|
|
||||||
const editor = window.ace.edit('editor');
|
const red = (text) => '<span style="color: red">' + text + '</span>';
|
||||||
editor.getSession().setOptions({
|
|
||||||
mode: 'ace/mode/javascript',
|
|
||||||
useSoftTabs: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
chrome.proxy.settings.onChange.addListener(
|
|
||||||
(details) => setStatusTo(red( details.levelOfControl + '!') )
|
|
||||||
);
|
|
||||||
|
|
||||||
function _read() {
|
|
||||||
|
|
||||||
chrome.proxy.settings.get({}, (details) => {
|
|
||||||
|
|
||||||
let control = details.levelOfControl;
|
|
||||||
if (control.startsWith('controlled_by_other')) {
|
|
||||||
control = red(control);
|
|
||||||
}
|
|
||||||
setStatusTo(control);
|
|
||||||
console.log(details);
|
|
||||||
const pac = details.value.pacScript;
|
|
||||||
const data = pac && pac.data || 'PAC скрипт не установлен.';
|
|
||||||
editor.setValue( data );
|
|
||||||
|
|
||||||
|
const editor = window.ace.edit('editor');
|
||||||
|
editor.getSession().setOptions({
|
||||||
|
mode: 'ace/mode/javascript',
|
||||||
|
useSoftTabs: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
bgWin.chrome.proxy.settings.onChange.addListener(
|
||||||
|
(details) => setStatusTo(red( details.levelOfControl + '!') )
|
||||||
|
);
|
||||||
|
|
||||||
document.querySelector('#read-button').onclick = _read;
|
function _read() {
|
||||||
|
|
||||||
document.querySelector('#save-button').onclick = () => {
|
bgWin.chrome.proxy.settings.get({}, (details) => {
|
||||||
|
|
||||||
|
let control = details.levelOfControl;
|
||||||
|
if (control.startsWith('controlled_by_other')) {
|
||||||
|
control = red(control);
|
||||||
|
}
|
||||||
|
setStatusTo(control);
|
||||||
|
console.log(details);
|
||||||
|
const pac = details.value.pacScript;
|
||||||
|
const data = pac && pac.data || 'PAC скрипт не установлен.';
|
||||||
|
editor.setValue( data );
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelector('#read-button').onclick = _read;
|
||||||
|
|
||||||
|
document.querySelector('#save-button').onclick = () => {
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
mode: 'pac_script',
|
||||||
|
pacScript: {
|
||||||
|
mandatory: false,
|
||||||
|
data: editor.getValue(),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
bgWin.chrome.proxy.settings.set( {value: config}, () => alert('Saved!') );
|
||||||
|
|
||||||
const config = {
|
|
||||||
mode: 'pac_script',
|
|
||||||
pacScript: {
|
|
||||||
mandatory: false,
|
|
||||||
data: editor.getValue(),
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
chrome.proxy.settings.set( {value: config}, () => alert('Saved!') );
|
|
||||||
|
|
||||||
};
|
document.querySelector('#clear-button').onclick = () => {
|
||||||
|
|
||||||
document.querySelector('#clear-button').onclick = () => {
|
bgWin.chrome.proxy.settings.clear({}, () => {
|
||||||
|
|
||||||
chrome.proxy.settings.clear({}, () => {
|
alert('Cleared! Reading...');
|
||||||
|
_read();
|
||||||
|
|
||||||
alert('Cleared! Reading...');
|
});
|
||||||
_read();
|
|
||||||
|
|
||||||
});
|
};
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
|
@ -1205,10 +1205,21 @@
|
||||||
"integrity": "sha512-H1b0LNa197L/y2eBcVSQxpldkgzK15HU3xG1hCn0xJ4rxRSo6n78/fabBqyuUYMA1CtVa1Z7WnAVa9FKvlFecQ==",
|
"integrity": "sha512-H1b0LNa197L/y2eBcVSQxpldkgzK15HU3xG1hCn0xJ4rxRSo6n78/fabBqyuUYMA1CtVa1Z7WnAVa9FKvlFecQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
|
"inferno": "3.8.0",
|
||||||
"inferno-shared": "3.8.0",
|
"inferno-shared": "3.8.0",
|
||||||
"inferno-vnode-flags": "3.8.0"
|
"inferno-vnode-flags": "3.8.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"inferno": {
|
||||||
|
"version": "3.8.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/inferno/-/inferno-3.8.0.tgz",
|
||||||
|
"integrity": "sha512-6s/hAYOrKNB0a8FDNHTJlz13d9uup7fVpvfd+2XPzxE69h8WgtMl+CSTIxHkW8RuEcc+hFAqi0ScsXVkMor5pw==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"inferno-shared": "3.8.0",
|
||||||
|
"inferno-vnode-flags": "3.8.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"inferno-vnode-flags": {
|
"inferno-vnode-flags": {
|
||||||
"version": "3.8.0",
|
"version": "3.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-3.8.0.tgz",
|
"resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-3.8.0.tgz",
|
||||||
|
@ -1223,11 +1234,22 @@
|
||||||
"integrity": "sha512-OOCSFxgnQUYvT8bhkE7OearfQi4NXevHVE49rExHhbf6m7U/AW5uQ/Ji8+BmX//sQY4YjQIvZnD/t1O+UEEBgA==",
|
"integrity": "sha512-OOCSFxgnQUYvT8bhkE7OearfQi4NXevHVE49rExHhbf6m7U/AW5uQ/Ji8+BmX//sQY4YjQIvZnD/t1O+UEEBgA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
|
"inferno": "3.8.0",
|
||||||
"inferno-component": "3.8.0",
|
"inferno-component": "3.8.0",
|
||||||
"inferno-shared": "3.8.0",
|
"inferno-shared": "3.8.0",
|
||||||
"inferno-vnode-flags": "3.8.0"
|
"inferno-vnode-flags": "3.8.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"inferno": {
|
||||||
|
"version": "3.8.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/inferno/-/inferno-3.8.0.tgz",
|
||||||
|
"integrity": "sha512-6s/hAYOrKNB0a8FDNHTJlz13d9uup7fVpvfd+2XPzxE69h8WgtMl+CSTIxHkW8RuEcc+hFAqi0ScsXVkMor5pw==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"inferno-shared": "3.8.0",
|
||||||
|
"inferno-vnode-flags": "3.8.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"inferno-vnode-flags": {
|
"inferno-vnode-flags": {
|
||||||
"version": "3.8.0",
|
"version": "3.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-3.8.0.tgz",
|
"resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-3.8.0.tgz",
|
||||||
|
|
|
@ -63,7 +63,7 @@ export default function getPacChooser(theState) {
|
||||||
this.updatePac = function updatePac(onSuccess) {
|
this.updatePac = function updatePac(onSuccess) {
|
||||||
props.funs.conduct(
|
props.funs.conduct(
|
||||||
'Обновляем...',
|
'Обновляем...',
|
||||||
(cb) => props.apis.antiCensorRu.syncWithPacProviderAsync(cb),
|
(cb) => theState.apis.antiCensorRu.syncWithPacProviderAsync(cb),
|
||||||
'Обновлено.',
|
'Обновлено.',
|
||||||
onSuccess
|
onSuccess
|
||||||
);
|
);
|
||||||
|
@ -75,7 +75,7 @@ export default function getPacChooser(theState) {
|
||||||
|
|
||||||
getCurrentProviderId() {
|
getCurrentProviderId() {
|
||||||
|
|
||||||
return this.props.apis.antiCensorRu.getCurrentPacProviderKey() || 'none';
|
return theState.apis.antiCensorRu.getCurrentPacProviderKey() || 'none';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ export default function getPacChooser(theState) {
|
||||||
const pacKey = event.target.id;
|
const pacKey = event.target.id;
|
||||||
if (
|
if (
|
||||||
pacKey === (
|
pacKey === (
|
||||||
this.props.apis.antiCensorRu.getCurrentPacProviderKey() || 'none'
|
theState.apis.antiCensorRu.getCurrentPacProviderKey() || 'none'
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -102,7 +102,7 @@ export default function getPacChooser(theState) {
|
||||||
if (pacKey === 'none') {
|
if (pacKey === 'none') {
|
||||||
this.props.funs.conduct(
|
this.props.funs.conduct(
|
||||||
'Отключение...',
|
'Отключение...',
|
||||||
(cb) => this.props.apis.antiCensorRu.clearPacAsync(cb),
|
(cb) => theState.apis.antiCensorRu.clearPacAsync(cb),
|
||||||
'Отключено.',
|
'Отключено.',
|
||||||
() => this.setState({ chosenPacName: 'none' }),
|
() => this.setState({ chosenPacName: 'none' }),
|
||||||
checkChosenProvider
|
checkChosenProvider
|
||||||
|
@ -110,7 +110,7 @@ export default function getPacChooser(theState) {
|
||||||
} else {
|
} else {
|
||||||
this.props.funs.conduct(
|
this.props.funs.conduct(
|
||||||
'Установка...',
|
'Установка...',
|
||||||
(cb) => this.props.apis.antiCensorRu.installPacAsync(pacKey, cb),
|
(cb) => theState.apis.antiCensorRu.installPacAsync(pacKey, cb),
|
||||||
'PAC-скрипт установлен.',
|
'PAC-скрипт установлен.',
|
||||||
checkChosenProvider
|
checkChosenProvider
|
||||||
);
|
);
|
||||||
|
@ -127,7 +127,7 @@ export default function getPacChooser(theState) {
|
||||||
{props.flags.ifInsideOptionsPage && (<header>PAC-скрипт:</header>)}
|
{props.flags.ifInsideOptionsPage && (<header>PAC-скрипт:</header>)}
|
||||||
<ul>
|
<ul>
|
||||||
{
|
{
|
||||||
[...props.apis.antiCensorRu.getSortedEntriesForProviders(), {key: 'none', label: 'Отключить'}].map((provConf) =>
|
[...theState.apis.antiCensorRu.getSortedEntriesForProviders(), {key: 'none', label: 'Отключить'}].map((provConf) =>
|
||||||
(<InfoLi
|
(<InfoLi
|
||||||
onClick={this.radioClickHandler}
|
onClick={this.radioClickHandler}
|
||||||
conf={provConf}
|
conf={provConf}
|
||||||
|
@ -159,7 +159,7 @@ export default function getPacChooser(theState) {
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
|
||||||
if (this.props.apis.antiCensorRu.ifFirstInstall) {
|
if (theState.apis.antiCensorRu.ifFirstInstall) {
|
||||||
this.updatePac();
|
this.updatePac();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user