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
|
/* vi: set sw=4 ts=4:
*
* Copyright (C) 2014 Christian Hohnstaedt.
*
* All rights reserved.
*/
#include "lib/func.h"
#include "lib/base.h"
#include "lib/Passwd.h"
#include "lib/exception.h"
#include "XcaWarningCore.h"
#include "PwDialogCore.h"
#include <QLabel>
#include <QMessageBox>
PwDialogUI_i *PwDialogCore::pwdialog;
Passwd PwDialogCore::cmdline_passwd;
enum open_result PwDialogCore::execute(pass_info *p, Passwd *passwd,
bool write, bool abort)
{
if (!cmdline_passwd.isEmpty()) {
*passwd = cmdline_passwd;
cmdline_passwd.cleanse();
return pw_ok;
}
if (pwdialog)
return pwdialog->execute(p, passwd, write, abort);
#if !defined(Q_OS_WIN32)
console_write(stdout, QString(COL_CYAN "%1\n" COL_LRED "%2:" COL_RESET)
.arg(p->getDescription())
.arg(QObject::tr("Password")).toUtf8());
*passwd = readPass();
return pw_ok;
#else
throw pw_exit;
#endif
}
int PwDialogCore::pwCallback(char *buf, int size, int rwflag, void *userdata)
{
Passwd passwd;
enum open_result result;
pass_info *p = static_cast<pass_info *>(userdata);
result = execute(p, &passwd, rwflag, false);
size = MIN(size, passwd.size());
memcpy(buf, passwd.constData(), size);
p->setResult(result);
return result == pw_ok ? size : 0;
}
void PwDialogCore::setGui(PwDialogUI_i *p)
{
delete pwdialog;
pwdialog = p;
}
|