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-06-06 11:05:53 +00:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Maximilian Krambach <mkrambach@intevation.de>
|
2018-04-18 14:38:06 +00:00
|
|
|
*/
|
2018-06-06 11:05:53 +00:00
|
|
|
|
|
|
|
import { gpgme_error } from './Errors';
|
|
|
|
import { GPGME_Key } from './Key';
|
2018-04-18 14:38:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tries to return an array of fingerprints, either from input fingerprints or
|
2018-06-06 11:05:53 +00:00
|
|
|
* from Key objects (openpgp Keys or GPGME_Keys are both expected)
|
|
|
|
* @param {Object |Array<Object>| String|Array<String>} input
|
2018-04-18 14:38:06 +00:00
|
|
|
* @returns {Array<String>} Array of fingerprints.
|
|
|
|
*/
|
2018-04-23 15:18:46 +00:00
|
|
|
|
2018-04-25 17:45:39 +00:00
|
|
|
export function toKeyIdArray(input){
|
2018-04-18 14:38:06 +00:00
|
|
|
if (!input){
|
2018-04-25 08:54:24 +00:00
|
|
|
return [];
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
|
|
|
if (!Array.isArray(input)){
|
|
|
|
input = [input];
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
let result = [];
|
|
|
|
for (let i=0; i < input.length; i++){
|
|
|
|
if (typeof(input[i]) === 'string'){
|
2018-04-18 14:38:06 +00:00
|
|
|
if (isFingerprint(input[i]) === true){
|
|
|
|
result.push(input[i]);
|
|
|
|
} else {
|
2018-04-25 13:59:36 +00:00
|
|
|
gpgme_error('MSG_NOT_A_FPR');
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
|
|
|
} else if (typeof(input[i]) === 'object'){
|
|
|
|
let fpr = '';
|
|
|
|
if (input[i] instanceof GPGME_Key){
|
|
|
|
fpr = input[i].fingerprint;
|
2018-04-25 17:45:39 +00:00
|
|
|
} else if (input[i].hasOwnProperty('primaryKey') &&
|
2018-05-04 10:56:59 +00:00
|
|
|
input[i].primaryKey.hasOwnProperty('getFingerprint')){
|
2018-06-06 11:05:53 +00:00
|
|
|
fpr = input[i].primaryKey.getFingerprint();
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
|
|
|
if (isFingerprint(fpr) === true){
|
|
|
|
result.push(fpr);
|
2018-04-25 08:54:24 +00:00
|
|
|
} else {
|
2018-04-25 13:59:36 +00:00
|
|
|
gpgme_error('MSG_NOT_A_FPR');
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
} else {
|
2018-04-25 13:59:36 +00:00
|
|
|
return gpgme_error('PARAM_WRONG');
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
}
|
|
|
|
if (result.length === 0){
|
2018-04-25 08:54:24 +00:00
|
|
|
return [];
|
2018-04-23 15:18:46 +00:00
|
|
|
} else {
|
2018-04-18 14:38:06 +00:00
|
|
|
return result;
|
|
|
|
}
|
2018-06-06 11:05:53 +00:00
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* check if values are valid hexadecimal values of a specified length
|
|
|
|
* @param {*} key input value.
|
|
|
|
* @param {int} len the expected length of the value
|
|
|
|
*/
|
|
|
|
function hextest(key, len){
|
2018-06-06 11:05:53 +00:00
|
|
|
if (!key || typeof(key) !== 'string'){
|
2018-04-18 14:38:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (key.length !== len){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let regexp= /^[0-9a-fA-F]*$/i;
|
|
|
|
return regexp.test(key);
|
2018-06-06 11:05:53 +00:00
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* check if the input is a valid Hex string with a length of 40
|
|
|
|
*/
|
|
|
|
export function isFingerprint(string){
|
|
|
|
return hextest(string, 40);
|
2018-06-06 11:05:53 +00:00
|
|
|
}
|
2018-05-25 17:02:18 +00:00
|
|
|
|
2018-04-23 15:18:46 +00:00
|
|
|
/**
|
2018-05-25 17:02:18 +00:00
|
|
|
* check if the input is a valid Hex string with a length of 16
|
2018-04-23 15:18:46 +00:00
|
|
|
*/
|
2018-05-25 17:02:18 +00:00
|
|
|
export function isLongId(string){
|
2018-04-18 14:38:06 +00:00
|
|
|
return hextest(string, 16);
|
2018-06-06 11:05:53 +00:00
|
|
|
}
|