瀏覽代碼

Importing gpg full public keys from the control panel

Bob Mottram 7 年之前
父節點
當前提交
7f8609a3aa
共有 1 個文件被更改,包括 19 次插入8 次删除
  1. 19
    8
      src/freedombone-controlpanel-user

+ 19
- 8
src/freedombone-controlpanel-user 查看文件

439
     trap "rm -f $data" 0 1 2 5 15
439
     trap "rm -f $data" 0 1 2 5 15
440
     dialog --title $"Add someone's PGP/GPG key" \
440
     dialog --title $"Add someone's PGP/GPG key" \
441
            --backtitle $"Freedombone User Control Panel" \
441
            --backtitle $"Freedombone User Control Panel" \
442
-           --inputbox $"Enter their email address or Key ID below" 8 60 2>$data
442
+           --inputbox $"Enter their email address, Key ID or full key below" 8 60 2>$data
443
     sel=$?
443
     sel=$?
444
     case $sel in
444
     case $sel in
445
         0)
445
         0)
448
 
448
 
449
                 address_is_valid=
449
                 address_is_valid=
450
 
450
 
451
-                if [[ $ADD_EMAIL_ADDRESS == *"@"* && $ADD_EMAIL_ADDRESS == *"."* ]]; then
451
+                if [[ "$ADD_EMAIL_ADDRESS" == *"@"* && "$ADD_EMAIL_ADDRESS" == *"."* ]]; then
452
+                    address_is_valid=1
453
+                fi
454
+                if [[ "$ADD_EMAIL_ADDRESS" == "0x"* ]]; then
455
+                    address_is_valid=1
456
+                fi
457
+                publicstr=$"BEGIN PGP PUBLIC KEY BLOCK"
458
+                if [[ "$ADD_EMAIL_ADDRESS" == *"$publicstr"* ]]; then
452
                     address_is_valid=1
459
                     address_is_valid=1
453
-                else
454
-                    if [[ $ADD_EMAIL_ADDRESS == "0x"* ]]; then
455
-                        address_is_valid=1
456
-                    fi
457
                 fi
460
                 fi
458
 
461
 
462
+
459
                 if [ $address_is_valid ]; then
463
                 if [ $address_is_valid ]; then
460
                     clear
464
                     clear
461
-                    gpg --search-keys "$ADD_EMAIL_ADDRESS"
462
-                    gpg_set_trust "$ADD_EMAIL_ADDRESS"
465
+                    if [[ "$ADD_EMAIL_ADDRESS" == *"$publicstr"* ]]; then
466
+                        echo "$ADD_EMAIL_ADDRESS" | gpg --import
467
+                        dialog --title $"Add someone's PGP/GPG key" \
468
+                               --backtitle $"Freedombone User Control Panel" \
469
+                               --msgbox $"GPG public key was imported" 6 50
470
+                    else
471
+                        gpg --search-keys "$ADD_EMAIL_ADDRESS"
472
+                        gpg_set_trust "$ADD_EMAIL_ADDRESS"
473
+                    fi
463
                 else
474
                 else
464
                     dialog --title $"Unrecognised email address" \
475
                     dialog --title $"Unrecognised email address" \
465
                            --backtitle $"Freedombone User Control Panel" \
476
                            --backtitle $"Freedombone User Control Panel" \