uBlock/src/js/about.js

117 lines
3.7 KiB
JavaScript
Raw Normal View History

2014-06-24 00:42:43 +02:00
/*******************************************************************************
µBlock - a Chromium browser extension to block requests.
Copyright (C) 2014 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/uBlock
*/
/* global vAPI, uDom */
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-07-02 18:02:29 +02:00
uDom.onLoad(function() {
2014-06-24 00:42:43 +02:00
'use strict';
2014-06-24 00:42:43 +02:00
/******************************************************************************/
var messager = vAPI.messaging.channel('about.js');
2014-10-07 14:59:35 +02:00
/******************************************************************************/
var exportToFile = function() {
var onUserDataReady = function(userData) {
if (!userData) {
return;
}
var now = new Date();
vAPI.download({
'url': 'data:text/plain;charset=utf-8,' + encodeURIComponent(JSON.stringify(userData)),
'filename': 'ublock-backup_' + now.toLocaleString().replace(/ +/g, '_') + '.txt'
});
2014-10-07 14:59:35 +02:00
};
messager.send({ what: 'getUserData' }, onUserDataReady);
2014-10-07 14:59:35 +02:00
};
/******************************************************************************/
2014-10-12 20:55:20 +02:00
var handleImportFilePicker = function() {
2014-10-07 14:59:35 +02:00
var fileReaderOnLoadHandler = function() {
var userData;
try {
userData = JSON.parse(this.result);
}
catch (e) {
}
if ( userData === undefined ) {
return;
}
var time = new Date(userData.timeStamp);
var msg = vAPI.i18n('aboutRestoreDataConfirm')
2014-10-07 14:59:35 +02:00
.replace('{{time}}', time.toLocaleString());
var proceed = window.confirm(msg);
if ( proceed ) {
messager.send({ what: 'restoreUserData', userData: userData });
2014-10-07 14:59:35 +02:00
}
};
2014-10-12 20:55:20 +02:00
var file = this.files[0];
if ( file === undefined || file.name === '' ) {
return;
}
if ( file.type.indexOf('text') !== 0 ) {
return;
}
var fr = new FileReader();
fr.onload = fileReaderOnLoadHandler;
fr.readAsText(file);
};
/******************************************************************************/
2014-10-07 14:59:35 +02:00
2014-10-12 20:55:20 +02:00
var startImportFilePicker = function() {
var input = document.getElementById('restoreFilePicker');
// Reset to empty string, this will ensure an change event is properly
// triggered if the user pick a file, even if it is the same as the last
// one picked.
input.value = '';
2014-10-07 14:59:35 +02:00
input.click();
};
/******************************************************************************/
var resetUserData = function() {
var msg = vAPI.i18n('aboutResetDataConfirm');
2014-10-07 14:59:35 +02:00
var proceed = window.confirm(msg);
if ( proceed ) {
messager.send({ what: 'resetUserData' });
2014-10-07 14:59:35 +02:00
}
};
/******************************************************************************/
uDom('#export').on('click', exportToFile);
2014-10-12 20:55:20 +02:00
uDom('#import').on('click', startImportFilePicker);
2014-10-07 14:59:35 +02:00
uDom('#reset').on('click', resetUserData);
2014-10-12 20:55:20 +02:00
uDom('#restoreFilePicker').on('change', handleImportFilePicker);
uDom('#aboutNameVer').html(vAPI.app.name + ' v' + vAPI.app.version);
2014-06-24 00:42:43 +02:00
/******************************************************************************/
});