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

Annotation of /trunk/Src/wptClipEncryptDlg.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 260 - (hide annotations)
Wed Aug 16 10:01:30 2006 UTC (18 years, 6 months ago) by twoaday
File size: 6830 byte(s)


1 werner 36 /* wptClipEncryptDlg.cpp - Clipboard encrypt dialog
2 twoaday 220 * Copyright (C) 2000-2006 Timo Schulz
3 werner 36 * Copyright (C) 2005 g10 Code GmbH
4     *
5     * This file is part of WinPT.
6     *
7     * WinPT is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 2 of the License, or
10     * (at your option) any later version.
11     *
12     * WinPT is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with WinPT; if not, write to the Free Software Foundation,
19     * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20     */
21 twoaday 197
22 werner 36 #ifdef HAVE_CONFIG_H
23     #include <config.h>
24     #endif
25    
26     #include <windows.h>
27     #include <commctrl.h>
28    
29 werner 47 #include "resource.h"
30 werner 36 #include "wptTypes.h"
31     #include "wptW32API.h"
32     #include "wptVersion.h"
33     #include "wptErrors.h"
34     #include "wptCommonCtl.h"
35     #include "wptGPG.h"
36     #include "wptKeylist.h"
37     #include "wptNLS.h"
38     #include "wptContext.h" /* for passphrase_s */
39     #include "wptRegistry.h"
40     #include "wptDlgs.h"
41 twoaday 197 #include "wptUTF8.h"
42 werner 36
43    
44     /* Encrypt the contents of the clipboard with the keys in @rset.
45     If @always_trust is set, GPG is forced to trust any recipients.
46     The context is returned in @r_ctx.
47     Return value: 0 on success. */
48     gpgme_error_t
49     gpg_clip_encrypt (gpgme_key_t rset[], int always_trust, gpgme_ctx_t *r_ctx)
50     {
51     gpgme_error_t err;
52 twoaday 256 gpgme_encrypt_flags_t flags;
53 werner 36 gpgme_ctx_t ctx = NULL;
54     gpgme_data_t plain = NULL;
55     gpgme_data_t ciph = NULL;
56    
57     err = gpgme_new (&ctx);
58     if (err)
59     return err;
60    
61     gpgme_set_armor (ctx, 1);
62 twoaday 175 gpgme_set_textmode (ctx, 1);
63 werner 36
64     err = gpg_data_new_from_clipboard (&plain, 0);
65     if (err)
66     goto leave;
67     err = gpgme_data_new (&ciph);
68     if (err)
69 twoaday 197 goto leave;
70 twoaday 256 flags = always_trust? GPGME_ENCRYPT_ALWAYS_TRUST : (gpgme_encrypt_flags_t)0;
71     err = gpgme_op_encrypt (ctx, rset, flags, plain, ciph);
72 werner 36 *r_ctx = ctx;
73     if (err)
74     goto leave;
75    
76     gpg_data_release_and_set_clipboard (ciph, 1);
77     ciph = NULL;
78    
79     leave:
80     if (ciph)
81     gpgme_data_release (ciph);
82     gpgme_data_release (plain);
83     return err;
84     }
85    
86    
87     /* Show all invalid recipients if possible. @dlg is the
88     handle to the calling dialog and @ctx is the context
89     used for encryption.
90     Return value: 0 if invalid recipients exist -1 otherwise. */
91     static int
92     show_invalid_recipients (HWND dlg, gpgme_ctx_t ctx)
93     {
94     gpgme_encrypt_result_t res;
95     gpgme_invalid_key_t k;
96     gpgme_key_t key;
97     size_t len=0;
98 twoaday 225 const char *keyid;
99     const char *warn = _("key not found");
100 twoaday 197 char *uid, *p;
101 werner 36
102     if (!ctx)
103     return -1;
104     res = gpgme_op_encrypt_result (ctx);
105     if (!res || !res->invalid_recipients)
106     return -1;
107    
108     for (k=res->invalid_recipients; k; k = k->next) {
109 twoaday 225 if (!get_pubkey (k->fpr, &key))
110     len += (32 + strlen (k->fpr)+8 + strlen (key->uids->name) + 2) + 4;
111     else
112     len += strlen (warn) + strlen (k->fpr)+8 + 2 + 4;
113 werner 36 }
114    
115     p = (char *)calloc (1, len+64);
116     if (!p)
117     BUG (NULL);
118 twoaday 68 strcpy (p, _("Recipients unsuable for encryption:\n"));
119 werner 36 for (k = res->invalid_recipients; k; k = k->next) {
120 twoaday 225 if (!get_pubkey (k->fpr, &key)) {
121     uid = utf8_to_native (key->uids->name);
122     keyid = key->subkeys->keyid+8;
123     }
124     else {
125     uid = strdup (warn);
126     keyid = k->fpr;
127     }
128     strcat (p, keyid);
129 werner 36 strcat (p, " : ");
130 twoaday 197 strcat (p, uid);
131 werner 36 strcat (p, "\n");
132 twoaday 197 safe_free (uid);
133 werner 36 }
134     msg_box (dlg, p, _("Encryption"), MB_ERR);
135 twoaday 220 safe_free (p);
136 werner 36 return 0;
137     }
138    
139    
140     /* Dialog procedure for the clipboard encryption. */
141     BOOL CALLBACK
142     clip_encrypt_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
143     {
144     static listview_ctrl_t lv = NULL;
145 twoaday 236 static int keys_sortby = 0;
146 werner 36 gpg_keycache_t kc;
147     gpgme_key_t *rset;
148     gpgme_ctx_t ctx=NULL;
149     gpgme_error_t err;
150 twoaday 256 char tmpbuf[64];
151 twoaday 260 size_t n;
152     int force_trust = 0;
153 werner 36
154 twoaday 197 switch (msg) {
155 werner 36 case WM_INITDIALOG:
156 twoaday 105 SetWindowText (dlg, _("Encryption"));
157     SetDlgItemText (dlg, IDC_ENCRYPT_FNDCMD, _("&Find"));
158     SetDlgItemText (dlg, IDCANCEL, _("&Cancel"));
159 twoaday 197 kc = keycache_get_ctx (KEYCACHE_PUB);
160     lv = keylist_load (GetDlgItem (dlg, IDC_ENCRYPT_KEYLIST), kc, NULL,
161 twoaday 176 KEYLIST_ENCRYPT_MIN, KEY_SORT_USERID);
162 twoaday 197 center_window (dlg, NULL);
163     SetForegroundWindow (dlg);
164 werner 36 return TRUE;
165    
166     case WM_DESTROY:
167 twoaday 220 if (lv) {
168     keylist_delete (lv);
169 werner 36 lv = NULL;
170     }
171     return FALSE;
172    
173     case WM_NOTIFY:
174     NMHDR *notify;
175    
176     notify = (NMHDR *)lparam;
177     if (notify && notify->code == NM_DBLCLK &&
178     notify->idFrom == IDC_ENCRYPT_KEYLIST)
179 twoaday 256 PostMessage( dlg, WM_COMMAND, MAKEWPARAM (IDOK, 0), 0);
180 werner 36 if (notify && notify->code == LVN_COLUMNCLICK &&
181 twoaday 236 notify->idFrom == IDC_ENCRYPT_KEYLIST) {
182 werner 36 NMLISTVIEW *p = (LPNMLISTVIEW) lparam;
183     int sortby = 0;
184    
185 twoaday 220 switch (p->iSubItem) {
186 werner 36 case 0: sortby = KEY_SORT_USERID; break;
187     case 1: sortby = KEY_SORT_KEYID; break;
188     case 2: sortby = KEY_SORT_LEN; break;
189     case 4: sortby = KEY_SORT_VALIDITY; break;
190     default: sortby = KEY_SORT_USERID; break;
191     }
192 twoaday 236 if ((keys_sortby & ~KEYLIST_SORT_DESC) == sortby)
193     keys_sortby ^= KEYLIST_SORT_DESC;
194     else
195     keys_sortby = sortby;
196     keylist_sort (lv, keys_sortby);
197 werner 36 }
198     return TRUE;
199    
200     case WM_COMMAND:
201 twoaday 236 switch (LOWORD (wparam)) {
202 werner 36 case IDOK:
203     rset = keylist_get_recipients (lv, &force_trust, &n);
204     if (!n) {
205 twoaday 197 msg_box (dlg, _("You must select at least one key."),
206     _("Encryption"), MB_ERR);
207     safe_free (rset);
208 werner 36 return FALSE;
209     }
210     err = gpg_clip_encrypt (rset, force_trust, &ctx);
211     if (err) {
212     if (show_invalid_recipients (dlg, ctx))
213     msg_box (dlg, gpgme_strerror (err), _("Encryption"), MB_ERR);
214     }
215     else
216 twoaday 220 show_msg (dlg, 1500, _("GnuPG Status: Finished"));
217     safe_free (rset);
218     if (ctx)
219     gpgme_release (ctx);
220     if (!err)
221     EndDialog (dlg, TRUE);
222 werner 36 return TRUE;
223    
224     case IDCANCEL:
225 twoaday 220 EndDialog (dlg, FALSE);
226 werner 36 return FALSE;
227    
228     case IDC_ENCRYPT_FNDCMD:
229     n = GetDlgItemText (dlg, IDC_ENCRYPT_FIND, tmpbuf, DIM (tmpbuf)-1);
230     if (!n)
231     break;
232 twoaday 241 n = listview_find (lv, tmpbuf, 0);
233 twoaday 256 if (n != -1) {
234 werner 36 int oldpos = listview_get_curr_pos (lv);
235     listview_select_one (lv, n);
236     listview_scroll (lv, oldpos, n);
237     }
238     else
239 twoaday 256 log_box (_("Encryption"), MB_ERR,
240     _("No recipient found with '%s'"), tmpbuf);
241 werner 36 break;
242     }
243     break;
244     }
245    
246     return FALSE;
247     }
248    

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26