summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/servlet/key/model/KeyDAO.java
blob: 5fd17a333bf8c577c5e5afc69f21ece4a0efbcee (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
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2011 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.servlet.key.model;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;

import javax.ws.rs.core.UriBuilder;
import javax.ws.rs.core.UriInfo;
import com.netscape.certsrv.apps.CMS;
import com.netscape.certsrv.base.EBaseException;
import com.netscape.certsrv.dbs.keydb.IKeyRecord;
import com.netscape.certsrv.dbs.keydb.IKeyRepository;
import com.netscape.certsrv.kra.IKeyRecoveryAuthority;
import com.netscape.cms.servlet.request.model.RecoveryRequestData;

/**
 * @author alee
 *
 */
public class KeyDAO {

    private IKeyRepository repo;
    
    public KeyDAO() {
        IKeyRecoveryAuthority kra = null;
        kra = ( IKeyRecoveryAuthority ) CMS.getSubsystem( "kra" );
        repo = kra.getKeyRepository();
    }
    /**
     * Returns list of keys meeting specified search filter.
     * Currently, vlv searches are not used for keys.
     * 
     * @param filter
     * @param maxResults
     * @param maxTime
     * @param uriInfo
     * @return
     * @throws EBaseException
     */
    public KeyDataInfos listKeys(String filter, int maxResults, int maxTime, UriInfo uriInfo) 
        throws EBaseException {
        List <KeyDataInfo> list = new ArrayList<KeyDataInfo>();
        Enumeration<IKeyRecord> e = null;
        
        e = repo.searchKeys(filter, maxResults, maxTime); 
        if (e == null) {
            throw new EBaseException("search results are null");
        }
        
        while (e.hasMoreElements()) {
            IKeyRecord rec = e.nextElement();
            if (rec != null) {
                list.add(createKeyDataInfo(rec, uriInfo));
            }
        }
        
        KeyDataInfos ret = new KeyDataInfos();
        ret.setKeyInfos(list);
        
        return ret;
    }
    
    public KeyData getKey(String keyId, RecoveryRequestData data) throws EBaseException {
        KeyData keyData = null;
        BigInteger serial = new BigInteger(keyId);
        
        // get wrapped key
        IKeyRecord rec = repo.readKeyRecord(serial);
        if (rec == null) {
            // key does not exist
            // log the error
            return null;  
        }
        // TODO unwrap the key and wrap with the credential in RecoveryRequestData
        // need to figure out how to do this with jmagne 
        
        return keyData;
    }
    
    public KeyDataInfo createKeyDataInfo(IKeyRecord rec, UriInfo uriInfo) throws EBaseException {
        KeyDataInfo ret = new KeyDataInfo();
        String serial = null;
        serial = (rec.getSerialNumber()).toString();
         
        UriBuilder keyBuilder = uriInfo.getBaseUriBuilder();
        keyBuilder.path("/key/" + serial);
        ret.setKeyURL(keyBuilder.build().toString());
        
        // clientID = rec.getClientID();
        // TODO add other fields as needed
        return ret;
    }
    
}