aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/src/Key.js
blob: 075a190e2aaaaa5b59e555a91313a88df5755664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/* 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+
 */

/**
 * The key class allows to query the information defined in gpgme Key Objects
 * (see https://www.gnupg.org/documentation/manuals/gpgme/Key-objects.html)
 *
 * This is a stub, as the gpgme-json side is not yet implemented
 *
 */

import { isFingerprint } from './Helpers'
import { gpgme_error } from './Errors'
import { createMessage } from './Message';
import { permittedOperations } from './permittedOperations';
import { Connection } from './Connection';


export function createKey(fingerprint, parent){
    if (!isFingerprint(fingerprint)){
        return gpgme_error('PARAM_WRONG');
    }
    if ( parent instanceof Connection){
        return new GPGME_Key(fingerprint, parent);
    } else if ( parent.hasOwnProperty('connection') &&
        parent.connection instanceof Connection){
            return new GPGME_Key(fingerprint, parent.connection);
    } else {
        return gpgme_error('PARAM_WRONG');
    }
}

export class GPGME_Key {

    constructor(fingerprint, connection){
        this.fingerprint = fingerprint;
        this.connection = connection;
    }

    set connection(conn){
        if (this._connection instanceof Connection) {
            gpgme_error('CONN_ALREADY_CONNECTED');
        } else if (conn instanceof Connection ) {
            this._connection = conn;
        }
    }

    get connection(){
        if (!this._fingerprint){
            return gpgme_error('KEY_INVALID');
        }
        if (!this._connection instanceof Connection){
            return gpgme_error('CONN_NO_CONNECT');
        } else {
            return this._connection;
        }
    }

    set fingerprint(fpr){
        if (isFingerprint(fpr) === true && !this._fingerprint){
            this._fingerprint = fpr;
        }
    }

    get fingerprint(){
        if (!this._fingerprint){
            return gpgme_error('KEY_INVALID');
        }
        return this._fingerprint;
    }

    /**
     * hasSecret returns true if a secret subkey is included in this Key
     */
    get hasSecret(){
        return this.checkKey('secret');
    }

    get isRevoked(){
        return this.checkKey('revoked');
    }

    get isExpired(){
        return this.checkKey('expired');
    }

    get isDisabled(){
        return this.checkKey('disabled');
    }

    get isInvalid(){
        return this.checkKey('invalid');
    }

    get canEncrypt(){
        return this.checkKey('can_encrypt');
    }

    get canSign(){
        return this.checkKey('can_sign');
    }

    get canCertify(){
        return this.checkKey('can_certify');
    }

    get canAuthenticate(){
        return this.checkKey('can_authenticate');
    }

    get isQualified(){
        return this.checkKey('is_qualified');
    }

    get armored(){
        let msg = createMessage ('export_key');
        msg.setParameter('armor', true);
        if (msg instanceof Error){
            return gpgme_error('KEY_INVALID');
        }
        this.connection.post(msg).then(function(result){
            return result.data;
        });
        // TODO return value not yet checked. Should result in an armored block
        // in correct encoding
    }

    /**
     * TODO returns true if this is the default key used to sign
     */
    get isDefault(){
        throw('NOT_YET_IMPLEMENTED');
    }

    /**
     * get the Key's subkeys as GPGME_Key objects
     * @returns {Array<GPGME_Key>}
     */
    get subkeys(){
        return this.checkKey('subkeys').then(function(result){
            // TBD expecting a list of fingerprints
            if (!Array.isArray(result)){
                result = [result];
            }
            let resultset = [];
            for (let i=0; i < result.length; i++){
                let subkey = new GPGME_Key(result[i], this.connection);
                if (subkey instanceof GPGME_Key){
                    resultset.push(subkey);
                }
            }
            return Promise.resolve(resultset);
        }, function(error){
            //TODO this.checkKey fails
        });
    }

    /**
     * creation time stamp of the key
     * @returns {Date|null} TBD
     */
    get timestamp(){
        return this.checkKey('timestamp');
        //TODO GPGME: -1 if the timestamp is invalid, and 0 if it is not available.
    }

    /**
     * The expiration timestamp of this key TBD
     *  @returns {Date|null} TBD
     */
    get expires(){
        return this.checkKey('expires');
        // TODO convert to Date; check for 0
    }

    /**
     * getter name TBD
     * @returns {String|Array<String>} The user ids associated with this key
     */
    get userIds(){
        return this.checkKey('uids');
    }

    /**
     * @returns {String} The public key algorithm supported by this subkey
     */
    get pubkey_algo(){
        return this.checkKey('pubkey_algo');
    }

    /**
    * generic function to query gnupg information on a key.
    * @param {*} property The gpgme-json property to check.
    * TODO: check if Promise.then(return)
    */
    checkKey(property){
        if (!this._fingerprint){
            return gpgme_error('KEY_INVALID');
        }
        return gpgme_error('NOT_YET_IMPLEMENTED');
        // TODO: async is not what is to be ecpected from Key information :(
        if (!property || typeof(property) !== 'string' ||
            !permittedOperations['keyinfo'].hasOwnProperty(property)){
            return gpgme_error('PARAM_WRONG');
        }
        let msg = createMessage ('keyinfo');
        if (msg instanceof Error){
            return gpgme_error('PARAM_WRONG');
        }
        msg.setParameter('fingerprint', this.fingerprint);
        this.connection.post(msg).then(function(result, error){
            if (error){
                return gpgme_error('GNUPG_ERROR',error.msg);
            } else if (result.hasOwnProperty(property)){
                return result[property];
            }
            else if (property == 'secret'){
                // TBD property undefined means "not true" in case of secret?
                return false;
            } else {
                return gpgme_error('CONN_UNEXPECTED_ANSWER');
            }
        }, function(error){
            return gpgme_error('GENERIC_ERROR');
        });
    }
};