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
|
/***************************************************************************
certtree.cpp - description
-------------------
begin : Sun Jun 23 2002
copyright : (C) 2002 by ARRL
author : Jon Bloom
email : jbloom@arrl.org
revision : $Id$
***************************************************************************/
#include "certtree.h"
#include <errno.h>
#include <wx/imaglist.h>
#include <map>
#include <vector>
#include <algorithm>
#include <utility>
#include <iostream>
#include "tqslctrls.h"
#include "util.h"
#include "dxcc.h"
#include "tqslerrno.h"
#include "tqsltrace.h"
#include "cert.xpm"
#include "nocert.xpm"
#include "broken-cert.xpm"
#include "folder.xpm"
#include "expired.xpm"
#include "replaced.xpm"
using std::pair;
using std::vector;
using std::map;
using std::make_pair;
enum {
CERT_ICON = 0,
NOCERT_ICON = 1,
BROKEN_ICON = 2,
EXPIRED_ICON = 3,
REPLACED_ICON = 4,
FOLDER_ICON = 5
};
///////////// Certificate Tree Control ////////////////
BEGIN_EVENT_TABLE(CertTree, wxTreeCtrl)
EVT_TREE_ITEM_ACTIVATED(-1, CertTree::OnItemActivated)
EVT_RIGHT_DOWN(CertTree::OnRightDown)
END_EVENT_TABLE()
CertTree::CertTree(wxWindow *parent, const wxWindowID id, const wxPoint& pos,
const wxSize& size, long style)
: wxTreeCtrl(parent, id, pos, size, style), _ncerts(0) {
tqslTrace("CertTree::CertTree");
useContextMenu = true;
wxBitmap certbm(cert_xpm);
wxBitmap no_certbm(nocert_xpm);
wxBitmap broken_certbm(broken_cert_xpm);
wxBitmap folderbm(folder_xpm);
wxBitmap expiredbm(expired_xpm);
wxBitmap replacedbm(replaced_xpm);
wxImageList *il = new wxImageList(16, 16, false, 5);
il->Add(certbm);
il->Add(no_certbm);
il->Add(broken_certbm);
il->Add(expiredbm);
il->Add(replacedbm);
il->Add(folderbm);
SetImageList(il);
}
CertTree::~CertTree() {
tqslTrace("CertTree::~CertTree");
}
CertTreeItemData::~CertTreeItemData() {
tqslTrace("CertTreeItemData::~CertTreeItemData");
if (_cert)
tqsl_freeCertificate(_cert);
}
typedef pair<wxString, int> certitem;
typedef vector<certitem> certlist;
static bool
cl_cmp(const certitem& i1, const certitem& i2) {
return i1.first < i2.first;
}
int
CertTree::Build(int flags, const TQSL_PROVIDER *provider) {
tqslTrace("CertTree::Build", "flags=%d, provider=%lx", flags, static_cast<void *>(const_cast<TQSL_PROVIDER *>(provider)));
typedef map<wxString, certlist> issmap;
issmap issuers;
DeleteAllItems();
wxTreeItemId rootId = AddRoot(wxT("tQSL Certificates"), FOLDER_ICON);
tQSL_Cert *certs;
if (tqsl_selectCertificates(&certs, &_ncerts, 0, 0, 0, provider, flags)) {
if (tQSL_Error != TQSL_SYSTEM_ERROR || tQSL_Errno != ENOENT)
displayTQSLError("Error while accessing certificate store");
}
// Separate certs into lists by issuer
for (int i = 0; i < _ncerts; i++) {
char issname[129];
if (tqsl_getCertificateIssuerOrganization(certs[i], issname, sizeof issname)) {
displayTQSLError("Error parsing certificate for issuer");
return _ncerts;
}
char callsign[129] = "";
if (tqsl_getCertificateCallSign(certs[i], callsign, sizeof callsign - 4)) {
displayTQSLError("Error parsing certificate for call sign");
return _ncerts;
}
strncat(callsign, " - ", sizeof callsign - strlen(callsign)-1);
DXCC dxcc;
int dxccEntity;
if (tqsl_getCertificateDXCCEntity(certs[i], &dxccEntity)) {
displayTQSLError("Error parsing certificate for DXCC entity");
return _ncerts;
}
const char *entityName;
if (dxcc.getByEntity(dxccEntity))
entityName = dxcc.name();
else
entityName = "<UNKNOWN ENTITY>";
strncat(callsign, entityName, sizeof callsign - strlen(callsign)-1);
callsign[sizeof callsign-1] = 0;
issuers[wxString::FromUTF8(issname)].push_back(make_pair(wxString::FromUTF8(callsign), i));
}
// Sort each issuer's list and add items to tree
issmap::iterator iss_it;
wxTreeItemId id;
_nissuers = issuers.size();
for (iss_it = issuers.begin(); iss_it != issuers.end(); iss_it++) {
if (_nissuers > 1) {
id = AppendItem(rootId, iss_it->first, FOLDER_ICON);
}
certlist& list = iss_it->second;
sort(list.begin(), list.end(), cl_cmp);
for (int i = 0; i < static_cast<int>(list.size()); i++) {
CertTreeItemData *cert = new CertTreeItemData(certs[list[i].second]);
int keyonly = 1;
int exp = 0, sup = 0;
int icon_type;
int keytype = tqsl_getCertificatePrivateKeyType(certs[list[i].second]);
tqsl_isCertificateExpired(certs[list[i].second], &exp);
tqsl_isCertificateSuperceded(certs[list[i].second], &sup);
tqsl_getCertificateKeyOnly(certs[list[i].second], &keyonly);
if (keytype == TQSL_PK_TYPE_ERR)
icon_type = BROKEN_ICON;
else if (keyonly)
icon_type = NOCERT_ICON;
else if (sup)
icon_type = REPLACED_ICON;
else if (exp)
icon_type = EXPIRED_ICON;
else
icon_type = CERT_ICON;
AppendItem(_nissuers > 1 ? id : rootId, list[i].first, icon_type, -1, cert);
}
if (id)
Expand(id);
}
Expand(rootId);
return _ncerts;
}
void
CertTree::SelectCert(tQSL_Cert cert) {
long serial;
if (tqsl_getCertificateSerial(cert, &serial))
return;
// Iterate the tree, looking for a matching certificate
wxTreeItemId root = GetRootItem();
wxTreeItemIdValue issCookie;
wxTreeItemIdValue certCookie;
wxTreeItemId top;
if (_nissuers > 1) {
top = GetFirstChild(root, issCookie);
} else {
top = root;
}
while (top.IsOk()) {
wxTreeItemId item = GetFirstChild(top, certCookie);
while (item.IsOk()) {
tQSL_Cert cert = GetItemData(item)->getCert();
long s;
tqsl_getCertificateSerial(cert, &s);
if (s == serial) { // found it
SelectItem(item);
return;
}
item = GetNextChild(top, certCookie);
}
if (_nissuers > 1) {
top = GetNextChild(root, issCookie);
} else {
break;
}
}
return; // Not found
}
void
CertTree::OnItemActivated(wxTreeEvent& event) {
tqslTrace("CertTree::OnItemActivated");
wxTreeItemId id = event.GetItem();
displayCertProperties(reinterpret_cast<CertTreeItemData *>(GetItemData(id)), this);
}
void
CertTree::OnRightDown(wxMouseEvent& event) {
tqslTrace("CertTree::OnRightDown");
if (!useContextMenu)
return;
wxTreeItemId id = HitTest(event.GetPosition());
if (id && GetItemData(id)) {
SelectItem(id);
tQSL_Cert cert = GetItemData(id)->getCert();
int keyonly = 1;
if (cert)
tqsl_getCertificateKeyOnly(cert, &keyonly);
wxMenu *cm = makeCertificateMenu(true, (keyonly != 0));
PopupMenu(cm, event.GetPosition());
delete cm;
}
}
|