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+
|
|
|
|
*/
|
|
|
|
import { permittedOperations } from './permittedOperations'
|
2018-04-25 13:59:36 +00:00
|
|
|
import { gpgme_error } from './Errors'
|
2018-04-25 17:45:39 +00:00
|
|
|
|
|
|
|
export function createMessage(operation){
|
|
|
|
if (typeof(operation) !== 'string'){
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
}
|
|
|
|
if (permittedOperations.hasOwnProperty(operation)){
|
|
|
|
return new GPGME_Message(operation);
|
|
|
|
} else {
|
|
|
|
return gpgme_error('MSG_WRONG_OP');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepares a communication request. It checks operations and parameters in
|
|
|
|
* ./permittedOperations.
|
|
|
|
* @param {String} operation
|
|
|
|
*/
|
2018-04-26 15:13:34 +00:00
|
|
|
export class GPGME_Message {
|
2018-04-18 14:38:06 +00:00
|
|
|
//TODO getter
|
|
|
|
|
2018-04-23 15:18:46 +00:00
|
|
|
constructor(operation){
|
2018-04-25 17:45:39 +00:00
|
|
|
this.operation = operation;
|
2018-05-22 12:24:16 +00:00
|
|
|
this._expected = 'string';
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 17:45:39 +00:00
|
|
|
set operation (op){
|
2018-04-27 08:21:13 +00:00
|
|
|
if (typeof(op) === "string"){
|
|
|
|
if (!this._msg){
|
|
|
|
this._msg = {};
|
|
|
|
}
|
|
|
|
if (!this._msg.op & permittedOperations.hasOwnProperty(op)){
|
|
|
|
this._msg.op = op;
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 17:45:39 +00:00
|
|
|
}
|
2018-04-27 08:21:13 +00:00
|
|
|
|
2018-04-23 15:18:46 +00:00
|
|
|
get operation(){
|
|
|
|
return this._msg.op;
|
|
|
|
}
|
|
|
|
|
2018-05-22 12:24:16 +00:00
|
|
|
set expected(string){
|
|
|
|
if (string === 'base64'){
|
|
|
|
this._expected = 'base64';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get expected() {
|
|
|
|
if (this._expected === "base64"){
|
|
|
|
return this._expected;
|
|
|
|
}
|
|
|
|
return "string";
|
|
|
|
}
|
|
|
|
|
2018-04-18 14:38:06 +00:00
|
|
|
/**
|
|
|
|
* Sets a parameter for the message. Note that the operation has to be set
|
|
|
|
* first, to be able to check if the parameter is permittted
|
|
|
|
* @param {String} param Parameter to set
|
|
|
|
* @param {any} value Value to set //TODO: Some type checking
|
|
|
|
* @returns {Boolean} If the parameter was set successfully
|
|
|
|
*/
|
|
|
|
setParameter(param,value){
|
|
|
|
if (!param || typeof(param) !== 'string'){
|
2018-04-25 13:59:36 +00:00
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
|
|
|
let po = permittedOperations[this._msg.op];
|
|
|
|
if (!po){
|
2018-04-25 13:59:36 +00:00
|
|
|
return gpgme_error('MSG_WRONG_OP');
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-27 18:03:09 +00:00
|
|
|
let poparam = null;
|
|
|
|
if (po.required.hasOwnProperty(param)){
|
|
|
|
poparam = po.required[param];
|
|
|
|
} else if (po.optional.hasOwnProperty(param)){
|
|
|
|
poparam = po.optional[param];
|
|
|
|
} else {
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-27 18:03:09 +00:00
|
|
|
let checktype = function(val){
|
|
|
|
switch(typeof(val)){
|
|
|
|
case 'string':
|
2018-05-07 16:27:25 +00:00
|
|
|
if (poparam.allowed.indexOf(typeof(val)) >= 0
|
|
|
|
&& val.length > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
break;
|
2018-04-27 18:03:09 +00:00
|
|
|
case 'number':
|
2018-05-07 16:27:25 +00:00
|
|
|
if (
|
|
|
|
poparam.allowed.indexOf('number') >= 0
|
|
|
|
&& isNaN(value) === false){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
break;
|
2018-04-27 18:03:09 +00:00
|
|
|
case 'boolean':
|
2018-05-07 16:27:25 +00:00
|
|
|
if (poparam.allowed.indexOf('boolean') >= 0){
|
2018-04-27 18:03:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
break;
|
|
|
|
case 'object':
|
|
|
|
if (Array.isArray(val)){
|
|
|
|
if (poparam.array_allowed !== true){
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
}
|
|
|
|
for (let i=0; i < val.length; i++){
|
|
|
|
let res = checktype(val[i]);
|
|
|
|
if (res !== true){
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
2018-05-07 16:27:25 +00:00
|
|
|
if (val.length > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-04-27 18:03:09 +00:00
|
|
|
} else if (val instanceof Uint8Array){
|
|
|
|
if (poparam.allowed.indexOf('Uint8Array') >= 0){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
} else {
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let typechecked = checktype(value);
|
|
|
|
if (typechecked !== true){
|
|
|
|
return typechecked;
|
|
|
|
}
|
|
|
|
if (poparam.hasOwnProperty('allowed_data')){
|
|
|
|
if (poparam.allowed_data.indexOf(value) < 0){
|
|
|
|
return gpgme_error('PARAM_WRONG');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._msg[param] = value;
|
|
|
|
return true;
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the message has the minimum requirements to be sent, according
|
|
|
|
* to the definitions in permittedOperations
|
|
|
|
* @returns {Boolean}
|
|
|
|
*/
|
|
|
|
get isComplete(){
|
|
|
|
if (!this._msg.op){
|
|
|
|
return false;
|
|
|
|
}
|
2018-04-27 18:03:09 +00:00
|
|
|
let reqParams = Object.keys(
|
|
|
|
permittedOperations[this._msg.op].required);
|
|
|
|
let msg_params = Object.keys(this._msg);
|
2018-04-18 14:38:06 +00:00
|
|
|
for (let i=0; i < reqParams.length; i++){
|
2018-04-27 18:03:09 +00:00
|
|
|
if (msg_params.indexOf(reqParams[i]) < 0){
|
|
|
|
console.log(reqParams[i] + ' missing');
|
2018-04-18 14:38:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the prepared message with parameters and completeness checked
|
|
|
|
* @returns {Object|null} Object to be posted to gnupg, or null if
|
|
|
|
* incomplete
|
|
|
|
*/
|
|
|
|
get message(){
|
|
|
|
if (this.isComplete === true){
|
|
|
|
return this._msg;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-04-23 17:15:40 +00:00
|
|
|
}
|