2018-04-18 14:38:06 +00:00
|
|
|
/* gpgme.js - Javascript integration for gpgme
|
|
|
|
* Copyright (C) 2018 Bundesamt für Sicherheit in der Informationstechnik
|
|
|
|
*
|
|
|
|
* This file is part of GPGME.
|
|
|
|
*
|
|
|
|
* GPGME is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GPGME 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
*/
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-04-25 17:45:39 +00:00
|
|
|
import {GPGME_Message, createMessage} from './Message'
|
2018-04-18 14:38:06 +00:00
|
|
|
import {toKeyIdArray} from "./Helpers"
|
2018-04-25 13:59:36 +00:00
|
|
|
import { gpgme_error } from "./Errors"
|
2018-04-24 16:44:30 +00:00
|
|
|
import { GPGME_Keyring } from "./Keyring";
|
2018-04-18 14:38:06 +00:00
|
|
|
|
|
|
|
export class GpgME {
|
|
|
|
/**
|
2018-04-23 15:18:46 +00:00
|
|
|
* initializes GpgME by opening a nativeMessaging port
|
2018-04-18 14:38:06 +00:00
|
|
|
* TODO: add configuration
|
|
|
|
*/
|
2018-05-28 14:52:50 +00:00
|
|
|
constructor(config){ //TODO config not parsed
|
|
|
|
this._config = config;
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-28 14:52:50 +00:00
|
|
|
set Keyring(keyring){
|
2018-05-23 10:56:23 +00:00
|
|
|
if (keyring && keyring instanceof GPGME_Keyring){
|
|
|
|
this._Keyring = keyring;
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
2018-04-10 09:33:14 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 16:44:30 +00:00
|
|
|
get Keyring(){
|
2018-05-28 14:52:50 +00:00
|
|
|
if (!this._Keyring){
|
|
|
|
this._Keyring = new GPGME_Keyring;
|
|
|
|
}
|
2018-04-25 13:59:36 +00:00
|
|
|
return this._Keyring;
|
2018-04-24 16:44:30 +00:00
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
|
2018-04-18 14:38:06 +00:00
|
|
|
/**
|
2018-05-22 12:24:16 +00:00
|
|
|
* @param {String} data text/data to be encrypted as String
|
2018-04-18 14:38:06 +00:00
|
|
|
* @param {GPGME_Key|String|Array<String>|Array<GPGME_Key>} publicKeys Keys used to encrypt the message
|
|
|
|
* @param {Boolean} wildcard (optional) If true, recipient information will not be added to the message
|
|
|
|
*/
|
2018-05-22 12:24:16 +00:00
|
|
|
encrypt(data, publicKeys, base64=false, wildcard=false){
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-04-25 17:45:39 +00:00
|
|
|
let msg = createMessage('encrypt');
|
|
|
|
if (msg instanceof Error){
|
|
|
|
return Promise.reject(msg)
|
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
// TODO temporary
|
|
|
|
msg.setParameter('armor', true);
|
|
|
|
msg.setParameter('always-trust', true);
|
2018-05-22 12:24:16 +00:00
|
|
|
if (base64 === true) {
|
|
|
|
msg.setParameter('base64', true);
|
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
let pubkeys = toKeyIdArray(publicKeys);
|
|
|
|
msg.setParameter('keys', pubkeys);
|
|
|
|
putData(msg, data);
|
2018-05-22 12:24:16 +00:00
|
|
|
if (wildcard === true){
|
|
|
|
msg.setParameter('throw-keyids', true);
|
2018-04-18 14:38:06 +00:00
|
|
|
};
|
2018-04-27 18:03:09 +00:00
|
|
|
if (msg.isComplete === true){
|
2018-05-28 14:52:50 +00:00
|
|
|
return msg.post();
|
2018-04-27 18:03:09 +00:00
|
|
|
} else {
|
|
|
|
return Promise.reject(gpgme_error('MSG_INCOMPLETE'));
|
|
|
|
}
|
2018-04-10 09:33:14 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 14:38:06 +00:00
|
|
|
/**
|
2018-05-22 12:24:16 +00:00
|
|
|
* @param {String} data TODO base64? Message with the encrypted data
|
|
|
|
* @param {Boolean} base64 (optional) Response should stay base64
|
2018-04-18 14:38:06 +00:00
|
|
|
* @returns {Promise<Object>} decrypted message:
|
|
|
|
data: The decrypted data. This may be base64 encoded.
|
|
|
|
base64: Boolean indicating whether data is base64 encoded.
|
|
|
|
mime: A Boolean indicating whether the data is a MIME object.
|
|
|
|
info: An optional object with extra information.
|
|
|
|
* @async
|
|
|
|
*/
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-05-22 12:24:16 +00:00
|
|
|
decrypt(data, base64=false){
|
2018-04-18 14:38:06 +00:00
|
|
|
if (data === undefined){
|
2018-04-25 13:59:36 +00:00
|
|
|
return Promise.reject(gpgme_error('MSG_EMPTY'));
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-25 17:45:39 +00:00
|
|
|
let msg = createMessage('decrypt');
|
2018-05-22 12:24:16 +00:00
|
|
|
if (base64 === true){
|
|
|
|
msg.expected = 'base64';
|
|
|
|
}
|
2018-04-25 17:45:39 +00:00
|
|
|
if (msg instanceof Error){
|
|
|
|
return Promise.reject(msg);
|
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
putData(msg, data);
|
2018-05-28 14:52:50 +00:00
|
|
|
return msg.post();
|
2018-04-23 15:18:46 +00:00
|
|
|
|
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
|
2018-05-24 13:16:18 +00:00
|
|
|
sign(data, keys, mode='clearsign', base64=false) { //sender
|
|
|
|
if (data === undefined){
|
|
|
|
return Promise.reject(gpgme_error('MSG_EMPTY'));
|
|
|
|
}
|
|
|
|
let key_arr = toKeyIdArray(keys);
|
|
|
|
if (key_arr.length === 0){
|
|
|
|
return Promise.reject(gpgme_error('MSG_NO_KEYS'));
|
|
|
|
}
|
|
|
|
let msg = createMessage('sign');
|
|
|
|
|
|
|
|
msg.setParameter('keys', key_arr);
|
|
|
|
if (base64 === true){
|
|
|
|
msg.setParameter('base64', true);
|
|
|
|
}
|
|
|
|
msg.setParameter('mode', mode);
|
|
|
|
putData(msg, data);
|
|
|
|
if (mode === 'detached') {
|
|
|
|
msg.expected = 'base64';
|
|
|
|
}
|
|
|
|
let me = this;
|
|
|
|
return new Promise(function(resolve,reject) {
|
2018-05-28 14:52:50 +00:00
|
|
|
msg.post().then( function(message) {
|
2018-05-24 13:16:18 +00:00
|
|
|
if (mode === 'clearsign'){
|
|
|
|
resolve({
|
|
|
|
data: message.data}
|
|
|
|
);
|
|
|
|
} else if (mode === 'detached') {
|
|
|
|
resolve({
|
|
|
|
data: data,
|
|
|
|
signature: message.data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, function(error){
|
|
|
|
reject(error);
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-23 15:18:46 +00:00
|
|
|
deleteKey(key, delete_secret = false, no_confirm = false){
|
2018-04-25 13:59:36 +00:00
|
|
|
return Promise.reject(gpgme_error('NOT_YET_IMPLEMENTED'));
|
2018-04-25 17:45:39 +00:00
|
|
|
let msg = createMessage('deletekey');
|
|
|
|
if (msg instanceof Error){
|
|
|
|
return Promise.reject(msg);
|
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
let key_arr = toKeyIdArray(key);
|
|
|
|
if (key_arr.length !== 1){
|
2018-04-25 17:45:39 +00:00
|
|
|
return Promise.reject(
|
|
|
|
gpgme_error('GENERIC_ERROR'));
|
|
|
|
// TBD should always be ONE key?
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
|
|
|
msg.setParameter('key', key_arr[0]);
|
|
|
|
if (delete_secret === true){
|
2018-04-25 17:45:39 +00:00
|
|
|
msg.setParameter('allow_secret', true);
|
|
|
|
// TBD
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
if (no_confirm === true){ //TODO: Do we want this hidden deep in the code?
|
2018-04-25 17:45:39 +00:00
|
|
|
msg.setParameter('delete_force', true);
|
|
|
|
// TBD
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-27 18:03:09 +00:00
|
|
|
if (msg.isComplete === true){
|
2018-05-28 14:52:50 +00:00
|
|
|
return msg.post();
|
2018-04-27 18:03:09 +00:00
|
|
|
} else {
|
|
|
|
return Promise.reject(gpgme_error('MSG_INCOMPLETE'));
|
|
|
|
}
|
2018-04-10 09:33:14 +00:00
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-10 09:33:14 +00:00
|
|
|
|
|
|
|
/**
|
2018-05-22 12:24:16 +00:00
|
|
|
* Sets the data of the message
|
2018-04-18 14:38:06 +00:00
|
|
|
* @param {GPGME_Message} message The message where this data will be set
|
|
|
|
* @param {*} data The data to enter
|
2018-04-10 09:33:14 +00:00
|
|
|
*/
|
2018-04-18 14:38:06 +00:00
|
|
|
function putData(message, data){
|
|
|
|
if (!message || !message instanceof GPGME_Message ) {
|
2018-04-25 13:59:36 +00:00
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-10 09:33:14 +00:00
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
if (!data){
|
2018-04-27 18:03:09 +00:00
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-18 14:38:06 +00:00
|
|
|
} else if (typeof(data) === 'string') {
|
|
|
|
message.setParameter('data', data);
|
2018-05-14 14:23:24 +00:00
|
|
|
} else if (
|
|
|
|
typeof(data) === 'object' &&
|
|
|
|
typeof(data.getText) === 'function'
|
|
|
|
){
|
2018-04-24 17:47:48 +00:00
|
|
|
let txt = data.getText();
|
2018-05-22 12:24:16 +00:00
|
|
|
if (typeof(txt) === 'string'){
|
|
|
|
message.setParameter('data', txt);
|
2018-05-14 14:23:24 +00:00
|
|
|
} else {
|
2018-05-08 16:33:41 +00:00
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-24 17:47:48 +00:00
|
|
|
}
|
2018-05-14 14:23:24 +00:00
|
|
|
|
2018-04-18 14:38:06 +00:00
|
|
|
} else {
|
2018-04-25 13:59:36 +00:00
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-10 09:33:14 +00:00
|
|
|
}
|
2018-04-24 16:44:30 +00:00
|
|
|
}
|