/[winpt]/trunk/Src/wptKeyserverSearchDlg.cpp
ViewVC logotype

Contents of /trunk/Src/wptKeyserverSearchDlg.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 271 - (show annotations)
Sun Nov 5 08:57:45 2006 UTC (18 years, 3 months ago) by twoaday
File size: 5742 byte(s)


1 /* wptKeyserverSearchDlg.cpp - Keyserver Searching
2 * Copyright (C) 2001-2006 Timo Schulz
3 *
4 * This file is part of WinPT.
5 *
6 * WinPT is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * WinPT is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with WinPT; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 */
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <windows.h>
25 #include <stdio.h>
26
27 #include "resource.h"
28 #include "wptCommonCtl.h"
29 #include "wptGPG.h"
30 #include "wptKeyserver.h"
31 #include "wptErrors.h"
32 #include "wptTypes.h"
33 #include "wptDlgs.h"
34 #include "wptNLS.h"
35 #include "wptKeylist.h"
36
37
38 /* Default threshold for key items. */
39 #define MAX_N_KEYS 64
40
41
42 /* Symbolic column IDs. */
43 enum { KSS_COL_BITS = 0, KSS_COL_ALGO,
44 KSS_COL_KEYID, KSS_COL_DATE, KSS_COL_UID };
45
46 int hkp_recv_key2 (HWND dlg, const char *kserver, WORD port,
47 const char *pattern, int proto, char **r_fpr);
48
49 /* Initialize dialog. */
50 static listview_ctrl_t
51 on_init_dialog (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
52 {
53 struct listview_column_s keysearch[] = {
54 {0, 48, (char *)_("Size")},
55 {1, 48, (char*)_("Algorithm")},
56 {2, 80, (char *)_("Key ID")},
57 {3, 72, (char *)_("Creation")},
58 {4, 256, (char *)_("User ID")},
59 {0, 0, NULL}
60 };
61 listview_ctrl_t lv = NULL;
62 char info[300];
63 int i;
64
65 SetDlgItemText (dlg, IDC_HKPSEARCH_RECV, _("&Receive"));
66 SetDlgItemText (dlg, IDOK, _("&Cancel"));
67 _snprintf (info, DIM (info) - 1,
68 _("Connect to '%s' to search for \"%s\""),
69 ((keyserver_ctx *)lparam)->name,
70 ((keyserver_ctx *)lparam)->pattern);
71 SetDlgItemText (dlg, IDC_HKPSEARCH_INFO, info);
72 SetWindowText (dlg, _("Keyserver Searching"));
73 SetForegroundWindow (dlg);
74 listview_new (&lv, GetDlgItem (dlg, IDC_HKPSEARCH_LIST));
75 for (i = 0; keysearch[i].width; i++)
76 listview_add_column (lv, &keysearch[i]);
77 listview_set_ext_style (lv);
78 return lv;
79 }
80
81
82 /* Begin the key serach and add all results to the list view @lv.
83 Return value: 0 on success. */
84 static int
85 search_hkp_keys (HWND dlg, keyserver_ctx *ksc, listview_ctrl_t lv)
86 {
87 keyserver_key_s *key;
88 const char *uid;
89 char bits[32], algo[32], keyid[32];
90 int conn_fd = 0;
91 int rc, nkeys = 0;
92
93 rc = kserver_search_begin (ksc->name, ksc->port, ksc->pattern,
94 &conn_fd, &nkeys);
95 if (rc) {
96 msg_box (dlg, winpt_strerror (rc), _("Keyserver Search"), MB_ERR);
97 return rc;
98 }
99
100 if (nkeys > MAX_N_KEYS) {
101 rc = log_box (_("Keyserver Search"), MB_INFO_ASK,
102 _("The search result contains a lot of keys: %d\n\n"
103 "Do you really want to continue?"), nkeys);
104 if (rc == IDNO) {
105 kserver_search_end (conn_fd);
106 return -1;
107 }
108 }
109
110 while (nkeys-- > 0) {
111 if (kserver_search_next (conn_fd, &key))
112 break;
113 if (!key)
114 continue;
115
116 _snprintf (bits, DIM (bits) - 1, "%d", key->bits);
117 _snprintf (algo, DIM (algo)-1, "%s",
118 get_key_pubalgo ((gpgme_pubkey_algo_t)key->algo));
119 _snprintf (keyid, DIM (keyid)-1, "0x%s", key->keyid);
120 uid = key->main_uid? key->main_uid->uid : "";
121 listview_add_item (lv, " ");
122 listview_add_sub_item (lv, 0, KSS_COL_BITS, bits);
123 listview_add_sub_item (lv, 0, KSS_COL_ALGO, algo);
124 listview_add_sub_item (lv, 0, KSS_COL_KEYID, keyid);
125 listview_add_sub_item (lv, 0, KSS_COL_DATE, get_key_created (key->creation));
126 listview_add_sub_item (lv, 0, KSS_COL_UID, uid);
127 kserver_release_key (key); key=NULL;
128 }
129
130 kserver_search_end (conn_fd);
131 return 0;
132 }
133
134
135 /* Fetch all selected keys from the keyserver in @ksc. */
136 static void
137 fetch_keys (HWND dlg, listview_ctrl_t lv, keyserver_ctx *ksc)
138 {
139 char keyid[32];
140 char *fpr;
141 int n, rc = 0;
142
143 n = listview_count_items (lv, 1);
144 if (!n) {
145 msg_box (dlg, _("Please select a key."), _("Keyserver Search"), MB_ERR);
146 return;
147 }
148
149 for (n=0; n < listview_count_items (lv, 0); n++) {
150 if (!listview_get_item_state (lv, n))
151 continue;
152
153 listview_get_item_text (lv, n, KSS_COL_KEYID, keyid, DIM (keyid)-1);
154 rc = hkp_recv_key2 (dlg, ksc->name, ksc->port, keyid, 0, &fpr);
155 if (!rc && fpr != NULL) {
156 keycache_update (0, fpr);
157 free_if_alloc (fpr);
158 }
159 }
160 }
161
162
163 /* Dialog box procedure for keyserver searching. */
164 BOOL CALLBACK
165 hkpsearch_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
166 {
167 static listview_ctrl_t lv = NULL;
168 static keyserver_ctx *ksc;
169
170 switch (msg) {
171 case WM_INITDIALOG:
172 ksc = (keyserver_ctx *)lparam;
173 if (!ksc)
174 BUG (0);
175 lv = on_init_dialog (dlg, msg, wparam, lparam);
176 if (search_hkp_keys (dlg, ksc, lv)) {
177 EndDialog (dlg, FALSE);
178 return TRUE;
179 }
180 return TRUE;
181
182 case WM_DESTROY:
183 if (lv) {
184 listview_release (lv);
185 lv = NULL;
186 }
187 return FALSE;
188
189 case WM_COMMAND:
190 switch (LOWORD (wparam)) {
191 case IDOK:
192 EndDialog (dlg, TRUE);
193 return TRUE;
194
195 case IDCANCEL:
196 EndDialog (dlg, FALSE);
197 return TRUE;
198
199 case IDC_HKPSEARCH_RECV:
200 fetch_keys (dlg, lv, ksc);
201 return TRUE;
202 }
203 break;
204 }
205
206 return FALSE;
207 }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26