mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
Убрана попытка загрузки двух расширений (для Opera и для Chrome)
This commit is contained in:
parent
0c71fa8a77
commit
79d5d3f3b5
91
dist/crypto-pro.js
vendored
91
dist/crypto-pro.js
vendored
@ -219,7 +219,6 @@ var CryptoPro =
|
|||||||
plugin_resolve,
|
plugin_resolve,
|
||||||
isOpera = 0,
|
isOpera = 0,
|
||||||
isYaBrowser = 0,
|
isYaBrowser = 0,
|
||||||
failed_extensions = 0,
|
|
||||||
canPromise = Boolean(window.Promise),
|
canPromise = Boolean(window.Promise),
|
||||||
cadesplugin;
|
cadesplugin;
|
||||||
|
|
||||||
@ -565,16 +564,15 @@ var CryptoPro =
|
|||||||
// Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
// Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
||||||
function install_opera_extension() {
|
function install_opera_extension() {
|
||||||
if (!window.cadesplugin_skip_extension_install) {
|
if (!window.cadesplugin_skip_extension_install) {
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
var ovr = document.createElement('div');
|
||||||
var ovr = document.createElement('div');
|
|
||||||
|
|
||||||
ovr.id = 'cadesplugin_ovr';
|
ovr.id = 'cadesplugin_ovr';
|
||||||
ovr.style = [
|
ovr.style = [
|
||||||
'visibility: hidden; position: fixed; left: 0px; top: 0px;',
|
'visibility: hidden; position: fixed; left: 0px; top: 0px;',
|
||||||
'width:100%; height:100%; background-color: rgba(0,0,0,0.7)'
|
'width:100%; height:100%; background-color: rgba(0,0,0,0.7)'
|
||||||
].join(' ');
|
].join(' ');
|
||||||
|
|
||||||
ovr.innerHTML = '\
|
ovr.innerHTML = '\
|
||||||
<div id="cadesplugin_ovr_item" style="\
|
<div id="cadesplugin_ovr_item" style="\
|
||||||
position:relative;\
|
position:relative;\
|
||||||
width:400px;\
|
width:400px;\
|
||||||
@ -598,35 +596,34 @@ var CryptoPro =
|
|||||||
</div>\
|
</div>\
|
||||||
';
|
';
|
||||||
|
|
||||||
document.getElementsByTagName('Body')[0].appendChild(ovr);
|
document.getElementsByTagName('Body')[0].appendChild(ovr);
|
||||||
|
|
||||||
var btn_install = document.getElementById('cadesplugin_install');
|
var btn_install = document.getElementById('cadesplugin_install');
|
||||||
|
|
||||||
btn_install.addEventListener('click', function (event) {
|
btn_install.addEventListener('click', function (event) {
|
||||||
opr.addons.installExtension('epebfcehmdedogndhlcacafjaacknbcm',
|
opr.addons.installExtension('epebfcehmdedogndhlcacafjaacknbcm',
|
||||||
function () {
|
function () {
|
||||||
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
||||||
location.reload();
|
location.reload();
|
||||||
},
|
},
|
||||||
function () {}
|
function () {}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById('cadesplugin_close_install').addEventListener('click', function () {
|
document.getElementById('cadesplugin_close_install').addEventListener('click', function () {
|
||||||
plugin_loaded_error('Плагин недоступен');
|
plugin_loaded_error('Плагин недоступен');
|
||||||
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
||||||
});
|
});
|
||||||
|
|
||||||
ovr.addEventListener('click', function () {
|
ovr.addEventListener('click', function () {
|
||||||
plugin_loaded_error('Плагин недоступен');
|
plugin_loaded_error('Плагин недоступен');
|
||||||
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
||||||
});
|
});
|
||||||
|
|
||||||
ovr.style.visibility = 'visible';
|
ovr.style.visibility = 'visible';
|
||||||
|
|
||||||
document.getElementById('cadesplugin_ovr_item').addEventListener('click', function (e) {
|
document.getElementById('cadesplugin_ovr_item').addEventListener('click', function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
});
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
plugin_loaded_error('Плагин недоступен');
|
plugin_loaded_error('Плагин недоступен');
|
||||||
@ -647,21 +644,16 @@ var CryptoPro =
|
|||||||
|
|
||||||
// Загружаем расширения для Chrome, Opera, YaBrowser
|
// Загружаем расширения для Chrome, Opera, YaBrowser
|
||||||
function load_extension() {
|
function load_extension() {
|
||||||
var fileref = document.createElement('script');
|
var fileref = document.createElement('script'),
|
||||||
|
hash = isChromiumBased() && isOpera ? 'epebfcehmdedogndhlcacafjaacknbcm' : 'iifchhfnnmpdbibifmljnfjhpififfog';
|
||||||
|
|
||||||
fileref.setAttribute('type', 'text/javascript');
|
if (hash) {
|
||||||
fileref.setAttribute('src', 'chrome-extension://iifchhfnnmpdbibifmljnfjhpififfog/nmcades_plugin_api.js');
|
fileref.setAttribute('type', 'text/javascript');
|
||||||
fileref.onerror = plugin_loaded_error;
|
fileref.setAttribute('src', 'chrome-extension://' + hash + '/nmcades_plugin_api.js');
|
||||||
fileref.onload = extension_onload;
|
fileref.onerror = plugin_loaded_error;
|
||||||
|
fileref.onload = extension_onload;
|
||||||
document.getElementsByTagName('head')[0].appendChild(fileref);
|
document.getElementsByTagName('head')[0].appendChild(fileref);
|
||||||
|
}
|
||||||
fileref = document.createElement('script');
|
|
||||||
fileref.setAttribute('type', 'text/javascript');
|
|
||||||
fileref.setAttribute('src', 'chrome-extension://epebfcehmdedogndhlcacafjaacknbcm/nmcades_plugin_api.js');
|
|
||||||
fileref.onerror = plugin_loaded_error;
|
|
||||||
fileref.onload = extension_onload;
|
|
||||||
document.getElementsByTagName('head')[0].appendChild(fileref);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Загружаем плагин для NPAPI
|
// Загружаем плагин для NPAPI
|
||||||
@ -705,13 +697,6 @@ var CryptoPro =
|
|||||||
// Отправляем событие что сломались.
|
// Отправляем событие что сломались.
|
||||||
function plugin_loaded_error(msg) {
|
function plugin_loaded_error(msg) {
|
||||||
if (isChromiumBased()) {
|
if (isChromiumBased()) {
|
||||||
// в асинхронном варианте подключаем оба расширения, если сломались оба пробуем установить для Opera
|
|
||||||
failed_extensions++;
|
|
||||||
|
|
||||||
if (failed_extensions < 2) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isOpera && (typeof(msg) == 'undefined' || typeof(msg) == 'object')) {
|
if (isOpera && (typeof(msg) == 'undefined' || typeof(msg) == 'object')) {
|
||||||
install_opera_extension();
|
install_opera_extension();
|
||||||
return;
|
return;
|
||||||
|
2
dist/crypto-pro.js.map
vendored
2
dist/crypto-pro.js.map
vendored
File diff suppressed because one or more lines are too long
91
src/cades.js
91
src/cades.js
@ -15,7 +15,6 @@
|
|||||||
plugin_resolve,
|
plugin_resolve,
|
||||||
isOpera = 0,
|
isOpera = 0,
|
||||||
isYaBrowser = 0,
|
isYaBrowser = 0,
|
||||||
failed_extensions = 0,
|
|
||||||
canPromise = Boolean(window.Promise),
|
canPromise = Boolean(window.Promise),
|
||||||
cadesplugin;
|
cadesplugin;
|
||||||
|
|
||||||
@ -361,16 +360,15 @@
|
|||||||
// Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
// Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
||||||
function install_opera_extension() {
|
function install_opera_extension() {
|
||||||
if (!window.cadesplugin_skip_extension_install) {
|
if (!window.cadesplugin_skip_extension_install) {
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
var ovr = document.createElement('div');
|
||||||
var ovr = document.createElement('div');
|
|
||||||
|
|
||||||
ovr.id = 'cadesplugin_ovr';
|
ovr.id = 'cadesplugin_ovr';
|
||||||
ovr.style = [
|
ovr.style = [
|
||||||
'visibility: hidden; position: fixed; left: 0px; top: 0px;',
|
'visibility: hidden; position: fixed; left: 0px; top: 0px;',
|
||||||
'width:100%; height:100%; background-color: rgba(0,0,0,0.7)'
|
'width:100%; height:100%; background-color: rgba(0,0,0,0.7)'
|
||||||
].join(' ');
|
].join(' ');
|
||||||
|
|
||||||
ovr.innerHTML = '\
|
ovr.innerHTML = '\
|
||||||
<div id="cadesplugin_ovr_item" style="\
|
<div id="cadesplugin_ovr_item" style="\
|
||||||
position:relative;\
|
position:relative;\
|
||||||
width:400px;\
|
width:400px;\
|
||||||
@ -394,35 +392,34 @@
|
|||||||
</div>\
|
</div>\
|
||||||
';
|
';
|
||||||
|
|
||||||
document.getElementsByTagName('Body')[0].appendChild(ovr);
|
document.getElementsByTagName('Body')[0].appendChild(ovr);
|
||||||
|
|
||||||
var btn_install = document.getElementById('cadesplugin_install');
|
var btn_install = document.getElementById('cadesplugin_install');
|
||||||
|
|
||||||
btn_install.addEventListener('click', function (event) {
|
btn_install.addEventListener('click', function (event) {
|
||||||
opr.addons.installExtension('epebfcehmdedogndhlcacafjaacknbcm',
|
opr.addons.installExtension('epebfcehmdedogndhlcacafjaacknbcm',
|
||||||
function () {
|
function () {
|
||||||
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
||||||
location.reload();
|
location.reload();
|
||||||
},
|
},
|
||||||
function () {}
|
function () {}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById('cadesplugin_close_install').addEventListener('click', function () {
|
document.getElementById('cadesplugin_close_install').addEventListener('click', function () {
|
||||||
plugin_loaded_error('Плагин недоступен');
|
plugin_loaded_error('Плагин недоступен');
|
||||||
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
||||||
});
|
});
|
||||||
|
|
||||||
ovr.addEventListener('click', function () {
|
ovr.addEventListener('click', function () {
|
||||||
plugin_loaded_error('Плагин недоступен');
|
plugin_loaded_error('Плагин недоступен');
|
||||||
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
document.getElementById('cadesplugin_ovr').style.visibility = 'hidden';
|
||||||
});
|
});
|
||||||
|
|
||||||
ovr.style.visibility = 'visible';
|
ovr.style.visibility = 'visible';
|
||||||
|
|
||||||
document.getElementById('cadesplugin_ovr_item').addEventListener('click', function (e) {
|
document.getElementById('cadesplugin_ovr_item').addEventListener('click', function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
});
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
plugin_loaded_error('Плагин недоступен');
|
plugin_loaded_error('Плагин недоступен');
|
||||||
@ -443,21 +440,16 @@
|
|||||||
|
|
||||||
// Загружаем расширения для Chrome, Opera, YaBrowser
|
// Загружаем расширения для Chrome, Opera, YaBrowser
|
||||||
function load_extension() {
|
function load_extension() {
|
||||||
var fileref = document.createElement('script');
|
var fileref = document.createElement('script'),
|
||||||
|
hash = isChromiumBased() && isOpera ? 'epebfcehmdedogndhlcacafjaacknbcm' : 'iifchhfnnmpdbibifmljnfjhpififfog';
|
||||||
|
|
||||||
fileref.setAttribute('type', 'text/javascript');
|
if (hash) {
|
||||||
fileref.setAttribute('src', 'chrome-extension://iifchhfnnmpdbibifmljnfjhpififfog/nmcades_plugin_api.js');
|
fileref.setAttribute('type', 'text/javascript');
|
||||||
fileref.onerror = plugin_loaded_error;
|
fileref.setAttribute('src', 'chrome-extension://' + hash + '/nmcades_plugin_api.js');
|
||||||
fileref.onload = extension_onload;
|
fileref.onerror = plugin_loaded_error;
|
||||||
|
fileref.onload = extension_onload;
|
||||||
document.getElementsByTagName('head')[0].appendChild(fileref);
|
document.getElementsByTagName('head')[0].appendChild(fileref);
|
||||||
|
}
|
||||||
fileref = document.createElement('script');
|
|
||||||
fileref.setAttribute('type', 'text/javascript');
|
|
||||||
fileref.setAttribute('src', 'chrome-extension://epebfcehmdedogndhlcacafjaacknbcm/nmcades_plugin_api.js');
|
|
||||||
fileref.onerror = plugin_loaded_error;
|
|
||||||
fileref.onload = extension_onload;
|
|
||||||
document.getElementsByTagName('head')[0].appendChild(fileref);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Загружаем плагин для NPAPI
|
// Загружаем плагин для NPAPI
|
||||||
@ -501,13 +493,6 @@
|
|||||||
// Отправляем событие что сломались.
|
// Отправляем событие что сломались.
|
||||||
function plugin_loaded_error(msg) {
|
function plugin_loaded_error(msg) {
|
||||||
if (isChromiumBased()) {
|
if (isChromiumBased()) {
|
||||||
// в асинхронном варианте подключаем оба расширения, если сломались оба пробуем установить для Opera
|
|
||||||
failed_extensions++;
|
|
||||||
|
|
||||||
if (failed_extensions < 2) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isOpera && (typeof(msg) == 'undefined' || typeof(msg) == 'object')) {
|
if (isOpera && (typeof(msg) == 'undefined' || typeof(msg) == 'object')) {
|
||||||
install_opera_extension();
|
install_opera_extension();
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user