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

Diff of /trunk/Src/wptClipSignEncDlg.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2 by twoaday, Mon Jan 31 11:02:21 2005 UTC revision 176 by twoaday, Mon Feb 13 09:38:03 2006 UTC
# Line 1  Line 1 
1  /* wptSignEncDlg.cpp - Sign & encrypt dialog  /* wptSignEncDlg.cpp - Sign & encrypt dialog
2   *      Copyright (C) 2000-2004 Timo Schulz   *      Copyright (C) 2000-2005 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
6   * WinPT is free software; you can redistribute it and/or modify   * 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   * 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   * the Free Software Foundation; either version 2 of the License, or
9   * (at your option) any later version.   * (at your option) any later version.
10   *   *
11   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU General Public License for more details.   * GNU General Public License for more details.
15   *   *
16   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
17   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
18   * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA   * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19   */   */
20    #ifdef HAVE_CONFIG_H
21  #include <windows.h>  #include <config.h>
22  #include <commctrl.h>  #endif
23    
24  #include "../resource.h"  #include <windows.h>
25  #include "wptErrors.h"  #include <commctrl.h>
26  #include "wptAgent.h"  
27  #include "wptGPG.h"  #include "resource.h"
28  #include "wptCommonCtl.h"  #include "wptErrors.h"
29  #include "wptKeylist.h"  #include "wptAgent.h"
30  #include "wptTypes.h"  #include "wptCrypto.h"
31  #include "wptNLS.h"  #include "wptGPG.h"
32  #include "wptContext.h" /* for passphrase_s */  #include "wptCommonCtl.h"
33  #include "wptDlgs.h"  #include "wptKeylist.h"
34  #include "wptW32API.h"  #include "wptTypes.h"
35  #include "wptKeylist.h"  #include "wptNLS.h"
36  #include "wptVersion.h"  #include "wptContext.h" /* for passphrase_s */
37  #include "wptGPG.h"  #include "wptDlgs.h"
38  #include "wptRegistry.h"  #include "wptW32API.h"
39  #include "wptUTF8.h"  #include "wptKeylist.h"
40    #include "wptVersion.h"
41    #include "wptGPG.h"
42  BOOL CALLBACK  #include "wptRegistry.h"
43  clip_signenc_dlg_proc( HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam )  #include "wptUTF8.h"
44  {  
45      static listview_ctrl_t lv = NULL;  
46      static keylist_t list = NULL;  /* Encrypt the clipboard data with the recipients from @rset and
47      static int enable = 0;     additionally sign the data before @signer as the keyID.
48      gpgme_ctx_t ctx;     Return value: 0 on success. */
49      gpgme_keycache_t kc;  gpgme_error_t
50      gpgme_recipients_t rset;  gpg_clip_sign_encrypt (gpgme_ctx_t ctx, const char *signer,
51      gpgme_error_t err;                         gpgme_key_t *rset, int opts)
52      passphrase_cb_s pwd;  {
53      char * signer = NULL;      gpgme_error_t err;
54      int force_trust = 0, opt = 0;      gpgme_data_t plain = NULL;
55      int kmode = reg_prefs.keylist_mode? KEYLIST_ENCRYPT_MIN : KEYLIST_ENCRYPT;      gpgme_data_t ciph = NULL;
56            gpgme_key_t key = NULL;
57      switch( msg ) {  
58      case WM_INITDIALOG:      if (!signer)
59  #ifndef LANG_DE          return gpg_error (GPG_ERR_INV_ARG);
60          SetWindowText( dlg, _("Sign & Encrypt") );      if (get_pubkey (signer, &key))
61  #endif          return gpg_error (GPG_ERR_NO_PUBKEY);
62          kc = keycache_get_ctx( KEYCACHE_PUB );  
63          if( !kc )      gpgme_set_armor (ctx, 1);
64              BUG( NULL );      gpgme_set_textmode (ctx, 1);
65          lv = keylist_load( GetDlgItem( dlg, IDC_SIGNENC_KEYLIST ),      
66                             kc, NULL, kmode, GPGME_ATTR_USERID );      err = gpg_data_new_from_clipboard (&plain, 0);
67          seclist_init( dlg, IDC_SIGNENC_SECLIST, KEYLIST_FLAG_SHORT, &list );      if (err)
68          center_window( dlg );          goto leave;  
69          set_active_window( dlg );      err = gpgme_data_new (&ciph);
70          EnableWindow( GetDlgItem( dlg, IDC_SIGNENC_SECLIST ), FALSE );      if (err)
71          SetDlgItemText (dlg, IDC_SIGNENC_SELKEY, _("Select key for signing"));          goto leave;
72          SetDlgItemText (dlg, IDC_SIGNENC_SECLISTINF, _("Signing key:"));      err = gpgme_signers_add (ctx, key);
73          SetForegroundWindow( dlg );      if (err)
74          return TRUE;          goto leave;
75            
76      case WM_DESTROY:      err = gpgme_op_encrypt_sign (ctx, rset,
77          seclist_destroy( &list );                                   opts? GPGME_ENCRYPT_ALWAYS_TRUST : (gpgme_encrypt_flags_t)0,
78          reset_active_window( );                                   plain, ciph);
79          if( lv ) {      if (err)
80              keylist_delete( lv );          goto leave;
81              lv = NULL;  
82          }      gpg_data_release_and_set_clipboard (ciph, 1);
83          memset( pwd.pwd, 0, sizeof pwd.pwd );      ciph = NULL;
84          return FALSE;  
85            leave:
86      case WM_NOTIFY:      if (plain)
87          NMHDR * notify;          gpgme_data_release (plain);
88          notify = (NMHDR *)lparam;      if (ciph)
89          if( notify && notify->code == NM_DBLCLK          gpgme_data_release (ciph);
90              && notify->idFrom == IDC_SIGNENC_KEYLIST )      return err;
91              PostMessage( dlg, WM_COMMAND, MAKEWPARAM(IDOK, 0), NULL );  }
92          return TRUE;  
93            
94      case WM_SYSCOMMAND:  /* Dialog procedure for clipboard sign + encrypt. */
95          if( LOWORD (wparam) == SC_CLOSE )  BOOL CALLBACK
96              EndDialog( dlg, TRUE );  clip_signenc_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
97          return FALSE;  {
98                static listview_ctrl_t lv = NULL;
99      case WM_COMMAND:      static keylist_t list = NULL;
100          /* fixme: the enable seems to have a sync problem */      gpg_keycache_t kc;
101          if( HIWORD( wparam ) == BN_CLICKED      gpgme_key_t *rset;
102              && LOWORD( wparam ) == IDC_SIGNENC_SELKEY ) {      gpgme_error_t err;
103              enable ^= 1;      gpgme_ctx_t ctx;
104              EnableWindow( GetDlgItem( dlg, IDC_SIGNENC_SECLIST ), enable? TRUE : FALSE );      passphrase_cb_s pwd;
105          }      char *signer = NULL;
106          switch( LOWORD( wparam ) ) {      int force_trust = 0;
107          case IDOK:      int n;
108              rset = keylist_get_recipients( lv, &force_trust, NULL );      
109              if( !gpgme_recipients_count( rset ) ) {      switch( msg ) {
110                  msg_box( dlg, _("You must select at least one key."), _("Sign & Encrypt"), MB_ERR );      case WM_INITDIALOG:
111                  gpgme_recipients_release( rset );          SetWindowText (dlg, _("Sign & Encrypt"));
112                  return FALSE;          SetDlgItemText (dlg, IDCANCEL, _("&Cancel"));
113              }          kc = keycache_get_ctx (KEYCACHE_PUB);
114              if( IsDlgButtonChecked( dlg, IDC_SIGNENC_SELKEY ) ) {          if (!kc)
115                  gpgme_key_t key;              BUG (NULL);
116                  const char * s;          lv = keylist_load (GetDlgItem (dlg, IDC_SIGNENC_KEYLIST),
117                               kc, NULL, KEYLIST_ENCRYPT_MIN, KEY_SORT_USERID);
118                  if( seclist_select_key( dlg, IDC_SIGNENC_SECLIST, &key ) ) {          seclist_init (dlg, IDC_SIGNENC_SECLIST, KEYLIST_FLAG_SHORT, &list);
119                      msg_box( dlg, _("No key was selected."), _("Signing"), MB_ERR );          center_window (dlg, NULL);
120                      return FALSE;          EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), FALSE);
121                  }          SetDlgItemText (dlg, IDC_SIGNENC_SELKEY, _("Select key for signing"));
122                  s = gpgme_key_get_string_attr( key, GPGME_ATTR_KEYID, NULL, 0 );          SetDlgItemText (dlg, IDC_SIGNENC_SECLISTINF, _("Signing key:"));
123                  if( s )          SetForegroundWindow (dlg);
124                      signer = m_strdup( s+8 );          return TRUE;
125              }          
126              else {      case WM_DESTROY:
127                  signer = get_gnupg_default_key( );          seclist_destroy (&list);
128                  if( !signer ) {          if (lv) {
129                      msg_box( dlg, _("Could not get default key."), _("Signing"), MB_ERR );              keylist_delete (lv);
130                      return FALSE;              lv = NULL;
131                  }          }
132              }          return FALSE;
133              memset( &pwd, 0, sizeof pwd );          
134              err = gpgme_new( &ctx );      case WM_NOTIFY:
135              if( err )          NMHDR * notify;
136                  BUG( dlg );          notify = (NMHDR *)lparam;
137              gpgme_enable_logging( ctx );          if (notify && notify->code == NM_DBLCLK
138              set_gpg_passphrase_cb( ctx, &pwd, GPG_CMD_SIGN, dlg, _("Sign & Encrypt") );              && notify->idFrom == IDC_SIGNENC_KEYLIST)
139              if( force_trust )              PostMessage (dlg, WM_COMMAND, MAKEWPARAM (IDOK, 0), 0);
140                  opt |= GPGME_CTRL_FORCETRUST;          return TRUE;
141              err = gpgme_op_clip_sign_encrypt( ctx, rset, signer, opt );          
142              memset( pwd.pwd, 0, sizeof pwd.pwd );      case WM_SYSCOMMAND:
143              gpgme_recipients_release( rset );          if (LOWORD (wparam) == SC_CLOSE)
144              free_if_alloc( signer );              EndDialog (dlg, TRUE);
145              if( err == GPGME_Bad_Passphrase )              return FALSE;
146                  agent_del_cache( pwd.keyid );          
147              if( err ) {      case WM_COMMAND:
148                  gpgme_show_error( dlg, err, ctx, _("Sign & Encrypt"), MB_ERR );          if (HIWORD (wparam) == BN_CLICKED
149                  gpgme_release( ctx );              && LOWORD (wparam) == IDC_SIGNENC_SELKEY) {
150                  return FALSE;              int enable = IsDlgButtonChecked (dlg, IDC_SIGNENC_SELKEY);
151              }              EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), enable? TRUE : FALSE);
152              gpgme_release( ctx );          }
153              show_msg( dlg, 1500, _("GnuPG Status: Finished") );          switch (LOWORD (wparam)) {
154              EndDialog( dlg, TRUE );          case IDOK:
155              return TRUE;              rset = keylist_get_recipients (lv, &force_trust, &n);
156                            if (!n) {
157          case IDCANCEL:                  msg_box (dlg, _("You must select at least one key."),
158              EndDialog( dlg, FALSE );                           _("Sign & Encrypt"), MB_ERR);
159              return FALSE;                  return FALSE;
160          }              }
161          break;              if( IsDlgButtonChecked( dlg, IDC_SIGNENC_SELKEY ) ) {
162      }                  gpgme_key_t key;
163                        const char * s;
164      return FALSE;  
165  } /* clip_signenc_dlg_proc */                  if( seclist_select_key( dlg, IDC_SIGNENC_SECLIST, &key ) ) {
166                        msg_box (dlg, _("No key was selected."), _("Signing"), MB_ERR);
167                        return FALSE;
168                    }
169                    s = key->subkeys->keyid;
170                    if (s)
171                        signer = m_strdup(s+8);
172                }
173                else {
174                    signer = get_gnupg_default_key ();
175                    if (!signer) {
176                        msg_box (dlg, _("Could not get default key."), _("Signing"), MB_ERR);
177                        return FALSE;
178                    }
179                }
180    
181                err = gpgme_new (&ctx);
182                if (err)
183                    BUG (NULL);
184    
185                set_gpg_passphrase_cb (&pwd, ctx, GPG_CMD_SIGN, dlg, _("Sign & Encrypt"));
186                err = gpg_clip_sign_encrypt (ctx, signer, rset, force_trust);
187                release_gpg_passphrase_cb (&pwd);
188                free (rset);
189                free_if_alloc (signer);
190                gpgme_release (ctx);
191                if (gpgme_err_code (err) ==  GPG_ERR_BAD_PASSPHRASE)
192                    agent_del_cache (pwd.keyid);
193                if (err) {
194                    msg_box (dlg, gpgme_strerror (err), _("Sign & Encrypt"), MB_ERR );
195                    return FALSE;
196                }
197                show_msg (dlg, 1500, _("GnuPG Status: Finished"));
198                EndDialog (dlg, TRUE);
199                return TRUE;
200                
201            case IDCANCEL:
202                EndDialog( dlg, FALSE );
203                return FALSE;
204            }
205            break;
206        }
207        
208        return FALSE;
209    }

Legend:
Removed from v.2  
changed lines
  Added in v.176

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26