mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
обновлен сторонний скрипт cadesplugin_api.js, предоставляемый КриптоПро
This commit is contained in:
parent
430e8d919d
commit
7f17a7dc6a
2
dist/2.crypto-pro.js.map
vendored
2
dist/2.crypto-pro.js.map
vendored
File diff suppressed because one or more lines are too long
131
dist/crypto-pro.js
vendored
131
dist/crypto-pro.js
vendored
@ -813,8 +813,8 @@ var CryptoPro =
|
|||||||
var plugin_reject;
|
var plugin_reject;
|
||||||
var plugin_resolve;
|
var plugin_resolve;
|
||||||
var isOpera = 0;
|
var isOpera = 0;
|
||||||
var isYaBrowser = 0;
|
|
||||||
var isFireFox = 0;
|
var isFireFox = 0;
|
||||||
|
var isEdge = 0;
|
||||||
var failed_extensions = 0;
|
var failed_extensions = 0;
|
||||||
|
|
||||||
var canPromise = !!window.Promise;
|
var canPromise = !!window.Promise;
|
||||||
@ -831,6 +831,22 @@ var CryptoPro =
|
|||||||
{
|
{
|
||||||
cadesplugin = {};
|
cadesplugin = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function check_browser() {
|
||||||
|
var ua= navigator.userAgent, tem, M= ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
|
||||||
|
if(/trident/i.test(M[1])){
|
||||||
|
tem= /\brv[ :]+(\d+)/g.exec(ua) || [];
|
||||||
|
return {name:'IE',version:(tem[1] || '')};
|
||||||
|
}
|
||||||
|
if(M[1]=== 'Chrome'){
|
||||||
|
tem= ua.match(/\b(OPR|Edge)\/(\d+)/);
|
||||||
|
if(tem!= null) return {name:tem[1].replace('OPR', 'Opera'),version:tem[2]};
|
||||||
|
}
|
||||||
|
M= M[2]? [M[1], M[2]]: [navigator.appName, navigator.appVersion, '-?'];
|
||||||
|
if((tem= ua.match(/version\/(\d+)/i))!= null) M.splice(1, 1, tem[1]);
|
||||||
|
return {name:M[0],version:M[1]};
|
||||||
|
}
|
||||||
|
var browserSpecs = check_browser();
|
||||||
|
|
||||||
function cpcsp_console_log(level, msg){
|
function cpcsp_console_log(level, msg){
|
||||||
//IE9 не может писать в консоль если не открыта вкладка developer tools
|
//IE9 не может писать в консоль если не открыта вкладка developer tools
|
||||||
@ -992,9 +1008,9 @@ var CryptoPro =
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isIE() {
|
function isIE() {
|
||||||
var retVal = (("Microsoft Internet Explorer" == navigator.appName) || // IE < 11
|
// var retVal = (("Microsoft Internet Explorer" == navigator.appName) || // IE < 11
|
||||||
navigator.userAgent.match(/Trident\/./i)); // IE 11
|
// navigator.userAgent.match(/Trident\/./i)); // IE 11
|
||||||
return retVal;
|
return (browserSpecs.name == 'IE' || browserSpecs.name == 'MSIE');
|
||||||
}
|
}
|
||||||
|
|
||||||
function isIOS() {
|
function isIOS() {
|
||||||
@ -1006,25 +1022,41 @@ var CryptoPro =
|
|||||||
|
|
||||||
function isNativeMessageSupported()
|
function isNativeMessageSupported()
|
||||||
{
|
{
|
||||||
var retVal_chrome = navigator.userAgent.match(/chrome/i);
|
// В IE работаем через NPAPI
|
||||||
isOpera = navigator.userAgent.match(/opr/i);
|
if(isIE())
|
||||||
isYaBrowser = navigator.userAgent.match(/YaBrowser/i);
|
|
||||||
isFireFox = navigator.userAgent.match(/Firefox/i);
|
|
||||||
|
|
||||||
if(isFireFox && window.allow_firefox_cadesplugin_async)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
if(retVal_chrome == null) // В IE работаем через NPAPI
|
|
||||||
return false;
|
return false;
|
||||||
else
|
// В Edge работаем через NativeMessage
|
||||||
{
|
if(browserSpecs.name == 'Edge') {
|
||||||
// В Chrome и Opera работаем через асинхронную версию
|
isEdge = true;
|
||||||
if(retVal_chrome.length > 0 || isOpera != null )
|
return true;
|
||||||
{
|
}
|
||||||
|
// В Chrome, Firefox и Opera работаем через асинхронную версию в зависимости от версии
|
||||||
|
if(browserSpecs.name == 'Opera') {
|
||||||
|
isOpera = true;
|
||||||
|
if(browserSpecs.version >= 33){
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(browserSpecs.name == 'Firefox') {
|
||||||
|
isFireFox = true;
|
||||||
|
if(browserSpecs.version >= 52){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(browserSpecs.name == 'Chrome') {
|
||||||
|
if(browserSpecs.version >= 42){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Функция активации объектов КриптоПро ЭЦП Browser plug-in
|
// Функция активации объектов КриптоПро ЭЦП Browser plug-in
|
||||||
@ -1056,7 +1088,7 @@ var CryptoPro =
|
|||||||
return new ActiveXObject(name);
|
return new ActiveXObject(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// В Firefox, Safari создаются объекты NPAPI
|
// создаются объекты NPAPI
|
||||||
return pluginObject.CreateObject(name);
|
return pluginObject.CreateObject(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1090,6 +1122,11 @@ var CryptoPro =
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Функция для удаления созданных объектов
|
||||||
|
function ReleasePluginObjects() {
|
||||||
|
return cpcsp_chrome_nmcades.ReleasePluginObjects();
|
||||||
|
}
|
||||||
|
|
||||||
// Функция активации асинхронных объектов КриптоПро ЭЦП Browser plug-in
|
// Функция активации асинхронных объектов КриптоПро ЭЦП Browser plug-in
|
||||||
function CreateObjectAsync(name) {
|
function CreateObjectAsync(name) {
|
||||||
return pluginObject.CreateObjectAsync(name);
|
return pluginObject.CreateObjectAsync(name);
|
||||||
@ -1148,6 +1185,35 @@ var CryptoPro =
|
|||||||
return tmpobj;
|
return tmpobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function show_firefox_missing_extension_dialog()
|
||||||
|
{
|
||||||
|
if (!window.cadesplugin_skip_extension_install)
|
||||||
|
{
|
||||||
|
var ovr = document.createElement('div');
|
||||||
|
ovr.id = "cadesplugin_ovr";
|
||||||
|
ovr.style = "visibility: hidden; position: fixed; left: 0px; top: 0px; width:100%; height:100%; background-color: rgba(0,0,0,0.7)";
|
||||||
|
ovr.innerHTML = "<div id='cadesplugin_ovr_item' style='position:relative; width:400px; margin:100px auto; background-color:#fff; border:2px solid #000; padding:10px; text-align:center; opacity: 1; z-index: 1500'>" +
|
||||||
|
"<button id='cadesplugin_close_install' style='float: right; font-size: 10px; background: transparent; border: 1; margin: -5px'>X</button>" +
|
||||||
|
"<p>Для работы КриптоПро ЭЦП Browser plugin на данном сайте необходимо расширение для браузера. Убедитесь, что оно у Вас включено или установите его." +
|
||||||
|
"<p><a href='https://www.cryptopro.ru/sites/default/files/products/cades/extensions/firefox_cryptopro_extension_latest.xpi'>Скачать расширение</a></p>" +
|
||||||
|
"</div>";
|
||||||
|
document.getElementsByTagName("Body")[0].appendChild(ovr);
|
||||||
|
document.getElementById("cadesplugin_close_install").addEventListener('click',function()
|
||||||
|
{
|
||||||
|
plugin_loaded_error("Плагин недоступен");
|
||||||
|
document.getElementById("cadesplugin_ovr").style.visibility = 'hidden';
|
||||||
|
});
|
||||||
|
|
||||||
|
ovr.addEventListener('click',function()
|
||||||
|
{
|
||||||
|
plugin_loaded_error("Плагин недоступен");
|
||||||
|
document.getElementById("cadesplugin_ovr").style.visibility = 'hidden';
|
||||||
|
});
|
||||||
|
ovr.style.visibility="visible";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//Выводим окно поверх других с предложением установить расширение для Opera.
|
//Выводим окно поверх других с предложением установить расширение для Opera.
|
||||||
//Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
//Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
||||||
function install_opera_extension()
|
function install_opera_extension()
|
||||||
@ -1196,7 +1262,7 @@ var CryptoPro =
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function firefox_nmcades_onload() {
|
function firefox_or_edge_nmcades_onload() {
|
||||||
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1205,7 +1271,7 @@ var CryptoPro =
|
|||||||
window.addEventListener("message", function (event){
|
window.addEventListener("message", function (event){
|
||||||
if (typeof(event.data) != "string" || !event.data.match("cadesplugin_loaded"))
|
if (typeof(event.data) != "string" || !event.data.match("cadesplugin_loaded"))
|
||||||
return;
|
return;
|
||||||
if(isFireFox)
|
if(isFireFox || isEdge)
|
||||||
{
|
{
|
||||||
// Для Firefox вместе с сообщением cadesplugin_loaded прилетает url для загрузки nmcades_plugin_api.js
|
// Для Firefox вместе с сообщением cadesplugin_loaded прилетает url для загрузки nmcades_plugin_api.js
|
||||||
var url = event.data.substring(event.data.indexOf("url:") + 4);
|
var url = event.data.substring(event.data.indexOf("url:") + 4);
|
||||||
@ -1213,9 +1279,10 @@ var CryptoPro =
|
|||||||
fileref.setAttribute("type", "text/javascript");
|
fileref.setAttribute("type", "text/javascript");
|
||||||
fileref.setAttribute("src", url);
|
fileref.setAttribute("src", url);
|
||||||
fileref.onerror = plugin_loaded_error;
|
fileref.onerror = plugin_loaded_error;
|
||||||
fileref.onload = firefox_nmcades_onload;
|
fileref.onload = firefox_or_edge_nmcades_onload;
|
||||||
document.getElementsByTagName("head")[0].appendChild(fileref);
|
document.getElementsByTagName("head")[0].appendChild(fileref);
|
||||||
|
// Для Firefox и Edge у нас только по одному расширению.
|
||||||
|
failed_extensions++;
|
||||||
}else {
|
}else {
|
||||||
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
||||||
}
|
}
|
||||||
@ -1226,7 +1293,7 @@ var CryptoPro =
|
|||||||
function load_extension()
|
function load_extension()
|
||||||
{
|
{
|
||||||
|
|
||||||
if(isFireFox){
|
if(isFireFox || isEdge){
|
||||||
// вызываем callback руками т.к. нам нужно узнать ID расширения. Он уникальный для браузера.
|
// вызываем callback руками т.к. нам нужно узнать ID расширения. Он уникальный для браузера.
|
||||||
nmcades_api_onload();
|
nmcades_api_onload();
|
||||||
return;
|
return;
|
||||||
@ -1314,6 +1381,10 @@ var CryptoPro =
|
|||||||
{
|
{
|
||||||
if(plugin_resolved == 1)
|
if(plugin_resolved == 1)
|
||||||
return;
|
return;
|
||||||
|
if(isFireFox)
|
||||||
|
{
|
||||||
|
show_firefox_missing_extension_dialog();
|
||||||
|
}
|
||||||
plugin_resolved = 1;
|
plugin_resolved = 1;
|
||||||
if(canPromise)
|
if(canPromise)
|
||||||
{
|
{
|
||||||
@ -1379,10 +1450,15 @@ var CryptoPro =
|
|||||||
false);
|
false);
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
window.addEventListener("load", function (event) {
|
if(document.readyState === "complete"){
|
||||||
load_npapi_plugin();
|
load_npapi_plugin();
|
||||||
check_npapi_plugin();
|
check_npapi_plugin();
|
||||||
}, false);
|
} else {
|
||||||
|
window.addEventListener("load", function (event) {
|
||||||
|
load_npapi_plugin();
|
||||||
|
check_npapi_plugin();
|
||||||
|
}, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1401,6 +1477,7 @@ var CryptoPro =
|
|||||||
if(isNativeMessageSupported())
|
if(isNativeMessageSupported())
|
||||||
{
|
{
|
||||||
cadesplugin.CreateObjectAsync = CreateObjectAsync;
|
cadesplugin.CreateObjectAsync = CreateObjectAsync;
|
||||||
|
cadesplugin.ReleasePluginObjects = ReleasePluginObjects;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isNativeMessageSupported())
|
if(!isNativeMessageSupported())
|
||||||
|
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
131
vendor/cadesplugin_api.js
vendored
Executable file → Normal file
131
vendor/cadesplugin_api.js
vendored
Executable file → Normal file
@ -8,8 +8,8 @@
|
|||||||
var plugin_reject;
|
var plugin_reject;
|
||||||
var plugin_resolve;
|
var plugin_resolve;
|
||||||
var isOpera = 0;
|
var isOpera = 0;
|
||||||
var isYaBrowser = 0;
|
|
||||||
var isFireFox = 0;
|
var isFireFox = 0;
|
||||||
|
var isEdge = 0;
|
||||||
var failed_extensions = 0;
|
var failed_extensions = 0;
|
||||||
|
|
||||||
var canPromise = !!window.Promise;
|
var canPromise = !!window.Promise;
|
||||||
@ -26,6 +26,22 @@
|
|||||||
{
|
{
|
||||||
cadesplugin = {};
|
cadesplugin = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function check_browser() {
|
||||||
|
var ua= navigator.userAgent, tem, M= ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
|
||||||
|
if(/trident/i.test(M[1])){
|
||||||
|
tem= /\brv[ :]+(\d+)/g.exec(ua) || [];
|
||||||
|
return {name:'IE',version:(tem[1] || '')};
|
||||||
|
}
|
||||||
|
if(M[1]=== 'Chrome'){
|
||||||
|
tem= ua.match(/\b(OPR|Edge)\/(\d+)/);
|
||||||
|
if(tem!= null) return {name:tem[1].replace('OPR', 'Opera'),version:tem[2]};
|
||||||
|
}
|
||||||
|
M= M[2]? [M[1], M[2]]: [navigator.appName, navigator.appVersion, '-?'];
|
||||||
|
if((tem= ua.match(/version\/(\d+)/i))!= null) M.splice(1, 1, tem[1]);
|
||||||
|
return {name:M[0],version:M[1]};
|
||||||
|
}
|
||||||
|
var browserSpecs = check_browser();
|
||||||
|
|
||||||
function cpcsp_console_log(level, msg){
|
function cpcsp_console_log(level, msg){
|
||||||
//IE9 не может писать в консоль если не открыта вкладка developer tools
|
//IE9 не может писать в консоль если не открыта вкладка developer tools
|
||||||
@ -187,9 +203,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isIE() {
|
function isIE() {
|
||||||
var retVal = (("Microsoft Internet Explorer" == navigator.appName) || // IE < 11
|
// var retVal = (("Microsoft Internet Explorer" == navigator.appName) || // IE < 11
|
||||||
navigator.userAgent.match(/Trident\/./i)); // IE 11
|
// navigator.userAgent.match(/Trident\/./i)); // IE 11
|
||||||
return retVal;
|
return (browserSpecs.name == 'IE' || browserSpecs.name == 'MSIE');
|
||||||
}
|
}
|
||||||
|
|
||||||
function isIOS() {
|
function isIOS() {
|
||||||
@ -201,25 +217,41 @@
|
|||||||
|
|
||||||
function isNativeMessageSupported()
|
function isNativeMessageSupported()
|
||||||
{
|
{
|
||||||
var retVal_chrome = navigator.userAgent.match(/chrome/i);
|
// В IE работаем через NPAPI
|
||||||
isOpera = navigator.userAgent.match(/opr/i);
|
if(isIE())
|
||||||
isYaBrowser = navigator.userAgent.match(/YaBrowser/i);
|
|
||||||
isFireFox = navigator.userAgent.match(/Firefox/i);
|
|
||||||
|
|
||||||
if(isFireFox && window.allow_firefox_cadesplugin_async)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
if(retVal_chrome == null) // В IE работаем через NPAPI
|
|
||||||
return false;
|
return false;
|
||||||
else
|
// В Edge работаем через NativeMessage
|
||||||
{
|
if(browserSpecs.name == 'Edge') {
|
||||||
// В Chrome и Opera работаем через асинхронную версию
|
isEdge = true;
|
||||||
if(retVal_chrome.length > 0 || isOpera != null )
|
return true;
|
||||||
{
|
}
|
||||||
|
// В Chrome, Firefox и Opera работаем через асинхронную версию в зависимости от версии
|
||||||
|
if(browserSpecs.name == 'Opera') {
|
||||||
|
isOpera = true;
|
||||||
|
if(browserSpecs.version >= 33){
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(browserSpecs.name == 'Firefox') {
|
||||||
|
isFireFox = true;
|
||||||
|
if(browserSpecs.version >= 52){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(browserSpecs.name == 'Chrome') {
|
||||||
|
if(browserSpecs.version >= 42){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Функция активации объектов КриптоПро ЭЦП Browser plug-in
|
// Функция активации объектов КриптоПро ЭЦП Browser plug-in
|
||||||
@ -251,7 +283,7 @@
|
|||||||
return new ActiveXObject(name);
|
return new ActiveXObject(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// В Firefox, Safari создаются объекты NPAPI
|
// создаются объекты NPAPI
|
||||||
return pluginObject.CreateObject(name);
|
return pluginObject.CreateObject(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,6 +317,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Функция для удаления созданных объектов
|
||||||
|
function ReleasePluginObjects() {
|
||||||
|
return cpcsp_chrome_nmcades.ReleasePluginObjects();
|
||||||
|
}
|
||||||
|
|
||||||
// Функция активации асинхронных объектов КриптоПро ЭЦП Browser plug-in
|
// Функция активации асинхронных объектов КриптоПро ЭЦП Browser plug-in
|
||||||
function CreateObjectAsync(name) {
|
function CreateObjectAsync(name) {
|
||||||
return pluginObject.CreateObjectAsync(name);
|
return pluginObject.CreateObjectAsync(name);
|
||||||
@ -343,6 +380,35 @@
|
|||||||
return tmpobj;
|
return tmpobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function show_firefox_missing_extension_dialog()
|
||||||
|
{
|
||||||
|
if (!window.cadesplugin_skip_extension_install)
|
||||||
|
{
|
||||||
|
var ovr = document.createElement('div');
|
||||||
|
ovr.id = "cadesplugin_ovr";
|
||||||
|
ovr.style = "visibility: hidden; position: fixed; left: 0px; top: 0px; width:100%; height:100%; background-color: rgba(0,0,0,0.7)";
|
||||||
|
ovr.innerHTML = "<div id='cadesplugin_ovr_item' style='position:relative; width:400px; margin:100px auto; background-color:#fff; border:2px solid #000; padding:10px; text-align:center; opacity: 1; z-index: 1500'>" +
|
||||||
|
"<button id='cadesplugin_close_install' style='float: right; font-size: 10px; background: transparent; border: 1; margin: -5px'>X</button>" +
|
||||||
|
"<p>Для работы КриптоПро ЭЦП Browser plugin на данном сайте необходимо расширение для браузера. Убедитесь, что оно у Вас включено или установите его." +
|
||||||
|
"<p><a href='https://www.cryptopro.ru/sites/default/files/products/cades/extensions/firefox_cryptopro_extension_latest.xpi'>Скачать расширение</a></p>" +
|
||||||
|
"</div>";
|
||||||
|
document.getElementsByTagName("Body")[0].appendChild(ovr);
|
||||||
|
document.getElementById("cadesplugin_close_install").addEventListener('click',function()
|
||||||
|
{
|
||||||
|
plugin_loaded_error("Плагин недоступен");
|
||||||
|
document.getElementById("cadesplugin_ovr").style.visibility = 'hidden';
|
||||||
|
});
|
||||||
|
|
||||||
|
ovr.addEventListener('click',function()
|
||||||
|
{
|
||||||
|
plugin_loaded_error("Плагин недоступен");
|
||||||
|
document.getElementById("cadesplugin_ovr").style.visibility = 'hidden';
|
||||||
|
});
|
||||||
|
ovr.style.visibility="visible";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//Выводим окно поверх других с предложением установить расширение для Opera.
|
//Выводим окно поверх других с предложением установить расширение для Opera.
|
||||||
//Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
//Если установленна переменная cadesplugin_skip_extension_install - не предлагаем установить расширение
|
||||||
function install_opera_extension()
|
function install_opera_extension()
|
||||||
@ -391,7 +457,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function firefox_nmcades_onload() {
|
function firefox_or_edge_nmcades_onload() {
|
||||||
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,7 +466,7 @@
|
|||||||
window.addEventListener("message", function (event){
|
window.addEventListener("message", function (event){
|
||||||
if (typeof(event.data) != "string" || !event.data.match("cadesplugin_loaded"))
|
if (typeof(event.data) != "string" || !event.data.match("cadesplugin_loaded"))
|
||||||
return;
|
return;
|
||||||
if(isFireFox)
|
if(isFireFox || isEdge)
|
||||||
{
|
{
|
||||||
// Для Firefox вместе с сообщением cadesplugin_loaded прилетает url для загрузки nmcades_plugin_api.js
|
// Для Firefox вместе с сообщением cadesplugin_loaded прилетает url для загрузки nmcades_plugin_api.js
|
||||||
var url = event.data.substring(event.data.indexOf("url:") + 4);
|
var url = event.data.substring(event.data.indexOf("url:") + 4);
|
||||||
@ -408,9 +474,10 @@
|
|||||||
fileref.setAttribute("type", "text/javascript");
|
fileref.setAttribute("type", "text/javascript");
|
||||||
fileref.setAttribute("src", url);
|
fileref.setAttribute("src", url);
|
||||||
fileref.onerror = plugin_loaded_error;
|
fileref.onerror = plugin_loaded_error;
|
||||||
fileref.onload = firefox_nmcades_onload;
|
fileref.onload = firefox_or_edge_nmcades_onload;
|
||||||
document.getElementsByTagName("head")[0].appendChild(fileref);
|
document.getElementsByTagName("head")[0].appendChild(fileref);
|
||||||
|
// Для Firefox и Edge у нас только по одному расширению.
|
||||||
|
failed_extensions++;
|
||||||
}else {
|
}else {
|
||||||
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
cpcsp_chrome_nmcades.check_chrome_plugin(plugin_loaded, plugin_loaded_error);
|
||||||
}
|
}
|
||||||
@ -421,7 +488,7 @@
|
|||||||
function load_extension()
|
function load_extension()
|
||||||
{
|
{
|
||||||
|
|
||||||
if(isFireFox){
|
if(isFireFox || isEdge){
|
||||||
// вызываем callback руками т.к. нам нужно узнать ID расширения. Он уникальный для браузера.
|
// вызываем callback руками т.к. нам нужно узнать ID расширения. Он уникальный для браузера.
|
||||||
nmcades_api_onload();
|
nmcades_api_onload();
|
||||||
return;
|
return;
|
||||||
@ -509,6 +576,10 @@
|
|||||||
{
|
{
|
||||||
if(plugin_resolved == 1)
|
if(plugin_resolved == 1)
|
||||||
return;
|
return;
|
||||||
|
if(isFireFox)
|
||||||
|
{
|
||||||
|
show_firefox_missing_extension_dialog();
|
||||||
|
}
|
||||||
plugin_resolved = 1;
|
plugin_resolved = 1;
|
||||||
if(canPromise)
|
if(canPromise)
|
||||||
{
|
{
|
||||||
@ -574,10 +645,15 @@
|
|||||||
false);
|
false);
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
window.addEventListener("load", function (event) {
|
if(document.readyState === "complete"){
|
||||||
load_npapi_plugin();
|
load_npapi_plugin();
|
||||||
check_npapi_plugin();
|
check_npapi_plugin();
|
||||||
}, false);
|
} else {
|
||||||
|
window.addEventListener("load", function (event) {
|
||||||
|
load_npapi_plugin();
|
||||||
|
check_npapi_plugin();
|
||||||
|
}, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -596,6 +672,7 @@
|
|||||||
if(isNativeMessageSupported())
|
if(isNativeMessageSupported())
|
||||||
{
|
{
|
||||||
cadesplugin.CreateObjectAsync = CreateObjectAsync;
|
cadesplugin.CreateObjectAsync = CreateObjectAsync;
|
||||||
|
cadesplugin.ReleasePluginObjects = ReleasePluginObjects;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isNativeMessageSupported())
|
if(!isNativeMessageSupported())
|
||||||
|
Loading…
Reference in New Issue
Block a user