keeweb/app/scripts/views/open-view.js

670 lines
22 KiB
JavaScript

'use strict';
var Backbone = require('backbone'),
kdbxweb = require('kdbxweb'),
OpenConfigView = require('./open-config-view'),
Keys = require('../const/keys'),
Alerts = require('../comp/alerts'),
SecureInput = require('../comp/secure-input'),
DropboxLink = require('../comp/dropbox-link'),
Logger = require('../util/logger'),
Locale = require('../util/locale'),
UrlUtil = require('../util/url-util'),
Storage = require('../storage');
var logger = new Logger('open-view');
var OpenView = Backbone.View.extend({
template: require('templates/open.hbs'),
events: {
'change .open__file-ctrl': 'fileSelected',
'click .open__icon-open': 'openFile',
'click .open__icon-new': 'createNew',
'click .open__icon-import-xml': 'importFromXml',
'click .open__icon-demo': 'createDemo',
'click .open__icon-more': 'toggleMore',
'click .open__icon-storage': 'openStorage',
'click .open__icon-settings': 'openSettings',
'click .open__pass-input[readonly]': 'openFile',
'input .open__pass-input': 'inputInput',
'keydown .open__pass-input': 'inputKeydown',
'keyup .open__pass-input': 'inputKeyup',
'keypress .open__pass-input': 'inputKeypress',
'click .open__pass-enter-btn': 'openDb',
'click .open__settings-key-file': 'openKeyFile',
'click .open__last-item': 'openLast',
'dragover': 'dragover',
'dragleave': 'dragleave',
'drop': 'drop'
},
views: null,
params: null,
passwordInput: null,
busy: false,
initialize: function () {
this.views = {};
this.params = {
id: null,
name: '',
storage: null,
path: null,
keyFileName: null,
keyFileData: null,
fileData: null,
rev: null
};
this.passwordInput = new SecureInput();
},
render: function () {
if (this.dragTimeout) {
clearTimeout(this.dragTimeout);
}
var storageProviders = [];
Object.keys(Storage).forEach(function(name) {
var prv = Storage[name];
if (!prv.system && prv.enabled) {
storageProviders.push(prv);
}
});
storageProviders.sort(function(x, y) { return (x.uipos || Infinity) - (y.uipos || Infinity); });
this.renderTemplate({
lastOpenFiles: this.getLastOpenFiles(),
canOpenKeyFromDropbox: DropboxLink.canChooseFile() && Storage.dropbox.enabled,
demoOpened: this.model.settings.get('demoOpened'),
storageProviders: storageProviders
});
this.inputEl = this.$el.find('.open__pass-input');
this.passwordInput.setElement(this.inputEl);
return this;
},
getLastOpenFiles: function() {
return this.model.fileInfos.map(function(f) {
var icon = 'file-text';
var storage = Storage[f.get('storage')];
if (storage && storage.icon) {
icon = storage.icon;
}
if (storage && storage.iconSvg) {
icon = null;
}
return {
id: f.get('id'),
name: f.get('name'),
icon: icon,
iconSvg: storage ? storage.iconSvg : undefined
};
});
},
remove: function() {
this.passwordInput.reset();
Backbone.View.prototype.remove.apply(this, arguments);
},
showLocalFileAlert: function() {
if (this.model.settings.get('skipOpenLocalWarn')) {
return;
}
var that = this;
Alerts.alert({
header: Locale.openLocalFile,
body: Locale.openLocalFileBody,
icon: 'file-text',
buttons: [
{result: 'skip', title: Locale.openLocalFileDontShow, error: true},
{result: 'ok', title: Locale.alertOk}
],
click: '',
esc: '',
enter: '',
success: function(res) {
that.inputEl.focus();
if (res === 'skip') {
that.model.settings.set('skipOpenLocalWarn', true);
}
}
});
},
fileSelected: function(e) {
var file = e.target.files[0];
if (file) {
this.processFile(file, (function(success) {
if (success && !file.path && this.reading === 'fileData') {
this.showLocalFileAlert();
}
}).bind(this));
}
},
processFile: function(file, complete) {
var reader = new FileReader();
reader.onload = (function(e) {
var success = false;
switch (this.reading) {
case 'fileData':
if (!this.checkOpenFileFormat(e.target.result)) {
break;
}
this.params.id = null;
this.params.fileData = e.target.result;
this.params.name = file.name.replace(/\.\w+$/i, '');
this.params.path = file.path || null;
this.params.storage = file.path ? 'file' : null;
this.params.rev = null;
if (!this.params.keyFileData) {
this.params.keyFileName = null;
}
this.displayOpenFile();
this.displayOpenKeyFile();
success = true;
break;
case 'fileXml':
this.params.id = null;
this.params.fileXml = e.target.result;
this.params.name = file.name.replace(/\.\w+$/i, '');
this.params.path = null;
this.params.storage = null;
this.params.rev = null;
this.importDbWithXml();
success = true;
break;
case 'keyFileData':
this.params.keyFileData = e.target.result;
this.params.keyFileName = file.name;
this.displayOpenKeyFile();
success = true;
break;
}
if (complete) {
complete(success);
}
}).bind(this);
reader.onerror = (function() {
Alerts.error({ header: Locale.openFailedRead });
if (complete) {
complete(false);
}
}).bind(this);
if (this.reading === 'fileXml') {
reader.readAsText(file);
} else {
reader.readAsArrayBuffer(file);
}
},
checkOpenFileFormat: function(fileData) {
var fileSig = new Uint32Array(fileData, 0, 2);
if (fileSig[0] !== kdbxweb.Consts.Signatures.FileMagic) {
Alerts.error({ header: Locale.openWrongFile, body: Locale.openWrongFileBody });
return false;
}
if (fileSig[1] === kdbxweb.Consts.Signatures.Sig2Kdb) {
Alerts.error({ header: Locale.openWrongFile, body: Locale.openKdbFileBody });
return false;
}
if (fileSig[1] !== kdbxweb.Consts.Signatures.Sig2Kdbx) {
Alerts.error({ header: Locale.openWrongFile, body: Locale.openWrongFileBody });
return false;
}
return true;
},
displayOpenFile: function() {
this.$el.addClass('open--file');
this.$el.find('.open__settings-key-file').removeClass('hide');
this.inputEl[0].removeAttribute('readonly');
this.inputEl[0].setAttribute('placeholder', Locale.openPassFor + ' ' + this.params.name);
this.inputEl.focus();
},
displayOpenKeyFile: function() {
this.$el.toggleClass('open--key-file', !!this.params.keyFileName);
this.$el.find('.open__settings-key-file-name').text(this.params.keyFileName || Locale.openKeyFile);
this.inputEl.focus();
},
setFile: function(file, keyFile, fileReadyCallback) {
this.reading = 'fileData';
this.processFile(file, (function(success) {
if (success && keyFile) {
this.reading = 'keyFileData';
this.processFile(keyFile);
}
if (success && typeof fileReadyCallback === 'function') {
fileReadyCallback();
}
}).bind(this));
},
openFile: function() {
if (!this.busy) {
this.closeConfig();
this.openAny('fileData');
}
},
importFromXml: function() {
if (!this.busy) {
this.closeConfig();
this.openAny('fileXml', 'xml');
}
},
openKeyFile: function(e) {
if ($(e.target).hasClass('open__settings-key-file-dropbox')) {
this.openKeyFileFromDropbox();
} else if (!this.busy && this.params.name) {
if (this.params.keyFileData) {
this.params.keyFileData = null;
this.params.keyFileName = '';
this.$el.removeClass('open--key-file');
this.$el.find('.open__settings-key-file-name').text(Locale.openKeyFile);
} else {
this.openAny('keyFileData');
}
}
},
openKeyFileFromDropbox: function() {
if (!this.busy) {
DropboxLink.chooseFile((function(err, res) {
if (err) {
return;
}
this.params.keyFileData = res.data;
this.params.keyFileName = res.name;
this.displayOpenKeyFile();
}).bind(this));
}
},
openAny: function(reading, ext) {
this.reading = reading;
this.params[reading] = null;
this.$el.find('.open__file-ctrl').attr('accept', ext || '').val(null).click();
},
openLast: function(e) {
if (this.busy) {
return;
}
var id = $(e.target).closest('.open__last-item').data('id').toString();
if ($(e.target).is('.open__last-item-icon-del')) {
var fileInfo = this.model.fileInfos.get(id);
if (!fileInfo.get('storage') || fileInfo.get('modified')) {
var that = this;
Alerts.yesno({
header: Locale.openRemoveLastQuestion,
body: fileInfo.get('modified') ? Locale.openRemoveLastQuestionModBody : Locale.openRemoveLastQuestionBody,
buttons: [
{result: 'yes', title: Locale.alertYes},
{result: '', title: Locale.alertNo}
],
success: function() {
that.removeFile(id);
}
});
return;
}
this.removeFile(id);
return;
}
this.showOpenFileInfo(this.model.fileInfos.get(id));
},
removeFile: function(id) {
this.model.removeFileInfo(id);
this.$el.find('.open__last-item[data-id="' + id + '"]').remove();
this.initialize();
this.render();
},
inputKeydown: function(e) {
var code = e.keyCode || e.which;
if (code === Keys.DOM_VK_RETURN) {
this.openDb();
} else if (code === Keys.DOM_VK_CAPS_LOCK) {
this.toggleCapsLockWarning(false);
} else if (code === Keys.DOM_VK_A) {
e.stopImmediatePropagation();
}
},
inputKeyup: function(e) {
var code = e.keyCode || e.which;
if (code === Keys.DOM_VK_CAPS_LOCK) {
this.toggleCapsLockWarning(false);
}
},
inputKeypress: function(e) {
var charCode = e.keyCode || e.which;
var ch = String.fromCharCode(charCode),
lower = ch.toLowerCase(),
upper = ch.toUpperCase();
if (lower !== upper && !e.shiftKey) {
this.toggleCapsLockWarning(ch !== lower);
}
},
toggleCapsLockWarning: function(on) {
this.$el.find('.open__pass-warning').toggleClass('invisible', !on);
},
dragover: function(e) {
e.preventDefault();
if (this.dragTimeout) {
clearTimeout(this.dragTimeout);
}
if (!this.$el.hasClass('open--drag')) {
this.$el.addClass('open--drag');
}
},
dragleave: function() {
if (this.dragTimeout) {
clearTimeout(this.dragTimeout);
}
this.dragTimeout = setTimeout((function() {
this.$el.removeClass('open--drag');
}).bind(this), 100);
},
drop: function(e) {
e.preventDefault();
if (this.busy) {
return;
}
if (this.dragTimeout) {
clearTimeout(this.dragTimeout);
}
this.closeConfig();
this.$el.removeClass('open--drag');
var files = e.target.files || e.originalEvent.dataTransfer.files;
var dataFile = _.find(files, function(file) { return file.name.split('.').pop().toLowerCase() === 'kdbx'; });
var keyFile = _.find(files, function(file) { return file.name.split('.').pop().toLowerCase() === 'key'; });
if (dataFile) {
this.setFile(dataFile, keyFile,
dataFile.path ? null : this.showLocalFileAlert.bind(this));
}
},
showOpenFileInfo: function(fileInfo) {
if (this.busy || !fileInfo) {
return;
}
this.params.id = fileInfo.id;
this.params.storage = fileInfo.get('storage');
this.params.path = fileInfo.get('path');
this.params.name = fileInfo.get('name');
this.params.fileData = null;
this.params.rev = null;
this.params.keyFileName = fileInfo.get('keyFileName');
this.displayOpenFile();
this.displayOpenKeyFile();
},
showOpenLocalFile: function(path) {
if (this.busy) {
return;
}
this.params.id = null;
this.params.storage = 'file';
this.params.path = path;
this.params.name = path.match(/[^/\\]*$/)[0];
this.params.rev = null;
this.params.fileData = null;
this.displayOpenFile();
},
createDemo: function() {
if (!this.busy) {
this.closeConfig();
if (!this.model.createDemoFile()) {
this.trigger('close');
}
if (!this.model.settings.get('demoOpened')) {
this.model.settings.set('demoOpened', true);
}
}
},
createNew: function() {
if (!this.busy) {
this.model.createNewFile();
}
},
openDb: function() {
if (this.busy || !this.params.name) {
return;
}
this.$el.toggleClass('open--opening', true);
this.inputEl.attr('disabled', 'disabled');
this.busy = true;
this.params.password = this.passwordInput.value;
this.afterPaint(this.model.openFile.bind(this.model, this.params, this.openDbComplete.bind(this)));
},
openDbComplete: function(err) {
this.busy = false;
this.$el.toggleClass('open--opening', false);
this.inputEl.removeAttr('disabled').toggleClass('input--error', !!err);
if (err) {
logger.error('Error opening file', err);
this.inputEl.focus();
this.inputEl[0].selectionStart = 0;
this.inputEl[0].selectionEnd = this.inputEl.val().length;
if (err.code !== 'InvalidKey') {
Alerts.error({
header: Locale.openError,
body: Locale.openErrorDescription + '<pre class="modal__pre">' + _.escape(err.toString()) +'</pre>'
});
}
} else {
this.trigger('close');
}
},
importDbWithXml: function() {
if (this.busy || !this.params.name) {
return;
}
this.$el.toggleClass('open--opening', true);
this.inputEl.attr('disabled', 'disabled');
this.busy = true;
this.afterPaint(this.model.importFileWithXml.bind(this.model, this.params, this.openDbComplete.bind(this)));
},
toggleMore: function() {
if (this.busy) {
return;
}
this.closeConfig();
this.$el.find('.open__icons--lower').toggleClass('hide');
},
openSettings: function() {
Backbone.trigger('toggle-settings');
},
openStorage: function(e) {
if (this.busy) {
return;
}
var storage = Storage[$(e.target).closest('.open__icon').data('storage')];
if (!storage) {
return;
}
if (storage.needShowOpenConfig && storage.needShowOpenConfig()) {
this.showConfig(storage);
} else if (storage.list) {
this.listStorage(storage);
} else {
Alerts.notImplemented();
}
},
listStorage: function(storage) {
if (this.busy) {
return;
}
this.closeConfig();
var icon = this.$el.find('.open__icon-storage[data-storage=' + storage.name + ']');
var that = this;
that.busy = true;
icon.toggleClass('flip3d', true);
storage.list(function(err, files, dir) {
icon.toggleClass('flip3d', false);
that.busy = false;
if (err || !files) {
return;
}
var buttons = [];
var allStorageFiles = {};
files.forEach(function (file) {
var fileName = UrlUtil.getDataFileName(file.name);
buttons.push({result: file.path, title: fileName});
allStorageFiles[file.path] = file;
});
if (!buttons.length) {
var body = Locale.openNothingFoundBody;
if (dir) {
body += ' ' + Locale.openNothingFoundBodyFolder.replace('{}', dir);
}
Alerts.error({
header: Locale.openNothingFound,
body: body
});
return;
}
buttons.push({result: '', title: Locale.alertCancel});
Alerts.alert({
header: Locale.openSelectFile,
body: Locale.openSelectFileBody,
icon: storage.icon || 'files-o',
buttons: buttons,
esc: '',
click: '',
success: function (file) {
that.openStorageFile(storage, allStorageFiles[file]);
}
});
});
},
openStorageFile: function(storage, file) {
if (this.busy) {
return;
}
this.params.id = null;
this.params.storage = storage.name;
this.params.path = file.path;
this.params.name = UrlUtil.getDataFileName(file.name);
this.params.rev = file.rev;
this.params.fileData = null;
this.displayOpenFile();
},
showConfig: function(storage) {
if (this.busy) {
return;
}
if (this.views.openConfig) {
this.views.openConfig.remove();
}
var config = _.extend({
id: storage.name,
name: Locale[storage.name] || storage.name,
icon: storage.icon
}, storage.getOpenConfig());
this.views.openConfig = new OpenConfigView({ el: this.$el.find('.open__config-wrap'), model: config }).render();
this.views.openConfig.on('cancel', this.closeConfig.bind(this));
this.views.openConfig.on('apply', this.applyConfig.bind(this));
this.$el.find('.open__pass-area').addClass('hide');
this.$el.find('.open__icons--lower').addClass('hide');
},
closeConfig: function() {
if (this.busy) {
this.storageWaitId = null;
this.busy = false;
}
if (this.views.openConfig) {
this.views.openConfig.remove();
delete this.views.openConfig;
}
this.$el.find('.open__pass-area').removeClass('hide');
this.$el.find('.open__config').addClass('hide');
this.inputEl.focus();
},
applyConfig: function(config) {
if (this.busy || !config) {
return;
}
this.busy = true;
this.views.openConfig.setDisabled(true);
var storage = Storage[config.storage];
this.storageWaitId = Math.random();
var path = config.path;
var opts = _.omit(config, ['path', 'storage']);
var req = {
waitId: this.storageWaitId,
storage: config.storage,
path: path,
opts: opts
};
if (storage.applyConfig) {
storage.applyConfig(opts, this.storageApplyConfigComplete.bind(this, req));
} else {
storage.stat(path, opts, this.storageStatComplete.bind(this, req));
}
},
storageApplyConfigComplete: function(req, err) {
if (this.storageWaitId !== req.waitId) {
return;
}
this.storageWaitId = null;
this.busy = false;
if (err) {
this.views.openConfig.setDisabled(false);
this.views.openConfig.setError(err);
} else {
this.closeConfig();
}
},
storageStatComplete: function(req, err, stat) {
if (this.storageWaitId !== req.waitId) {
return;
}
this.storageWaitId = null;
this.busy = false;
if (err) {
this.views.openConfig.setDisabled(false);
this.views.openConfig.setError(err);
} else {
this.closeConfig();
this.params.id = null;
this.params.storage = req.storage;
this.params.path = req.path;
this.params.opts = req.opts;
this.params.name = UrlUtil.getDataFileName(req.path);
this.params.rev = stat.rev;
this.params.fileData = null;
this.displayOpenFile();
}
}
});
module.exports = OpenView;