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
|
/**
* @file
* Smime functions
*
* @authors
* Copyright (C) 2022-2023 Richard Russon <rich@flatcap.org>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page smime_functions Smime functions
*
* Smime functions
*/
#include "config.h"
#include <stdio.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "smime_functions.h"
#include "menu/lib.h"
#include "question/lib.h"
#include "mutt_logging.h"
#include "smime.h"
/**
* op_exit - Exit this menu - Implements ::smime_function_t - @ingroup smime_function_api
*/
static int op_exit(struct SmimeData *sd, int op)
{
sd->done = true;
return FR_SUCCESS;
}
/**
* op_generic_select_entry - Select the current entry - Implements ::smime_function_t - @ingroup smime_function_api
*/
static int op_generic_select_entry(struct SmimeData *sd, int op)
{
const int index = menu_get_index(sd->menu);
struct SmimeKey **pkey = ARRAY_GET(sd->ska, index);
if (!pkey)
return FR_NO_ACTION;
if ((*pkey)->trust != 't')
{
const char *s = "";
switch ((*pkey)->trust)
{
case 'e':
case 'i':
case 'r':
s = _("ID is expired/disabled/revoked. Do you really want to use the key?");
break;
case 'u':
s = _("ID has undefined validity. Do you really want to use the key?");
break;
case 'v':
s = _("ID is not trusted. Do you really want to use the key?");
break;
}
char buf[1024] = { 0 };
snprintf(buf, sizeof(buf), "%s", s);
if (query_yesorno(buf, MUTT_NO) != MUTT_YES)
{
mutt_clear_error();
return FR_NO_ACTION;
}
}
sd->key = *pkey;
sd->done = true;
return FR_SUCCESS;
}
// -----------------------------------------------------------------------------
/**
* SmimeFunctions - All the NeoMutt functions that the Smime supports
*/
static const struct SmimeFunction SmimeFunctions[] = {
// clang-format off
{ OP_EXIT, op_exit },
{ OP_GENERIC_SELECT_ENTRY, op_generic_select_entry },
{ 0, NULL },
// clang-format on
};
/**
* smime_function_dispatcher - Perform a Smime function - Implements ::function_dispatcher_t - @ingroup dispatcher_api
*/
int smime_function_dispatcher(struct MuttWindow *win, int op)
{
// The Dispatcher may be called on any Window in the Dialog
struct MuttWindow *dlg = dialog_find(win);
if (!dlg || !dlg->wdata)
return FR_ERROR;
struct Menu *menu = dlg->wdata;
struct SmimeData *sd = menu->mdata;
int rc = FR_UNKNOWN;
for (size_t i = 0; SmimeFunctions[i].op != OP_NULL; i++)
{
const struct SmimeFunction *fn = &SmimeFunctions[i];
if (fn->op == op)
{
rc = fn->function(sd, op);
break;
}
}
if (rc == FR_UNKNOWN) // Not our function
return rc;
const char *result = dispatcher_get_retval_name(rc);
mutt_debug(LL_DEBUG1, "Handled %s (%d) -> %s\n", opcodes_get_name(op), op, NONULL(result));
return rc;
}
|