2011-10-27 19:17:43 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2011 Frank Osterfeld <frank.osterfeld@gmail.com> *
|
|
|
|
* *
|
|
|
|
* 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. For licensing and distribution *
|
|
|
|
* details, check the accompanying file 'COPYING'. *
|
|
|
|
*****************************************************************************/
|
2011-10-27 16:15:46 +00:00
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
#include "keychain.h"
|
|
|
|
#include <iostream>
|
|
|
|
|
2011-10-27 19:17:54 +00:00
|
|
|
using namespace QKeychain;
|
2011-10-27 16:15:46 +00:00
|
|
|
|
2011-10-28 07:28:57 +00:00
|
|
|
static int printUsage() {
|
2011-10-27 16:15:46 +00:00
|
|
|
std::cerr << "testclient store <account> <password>" << std::endl;
|
|
|
|
std::cerr << "testclient restore <account>" << std::endl;
|
|
|
|
std::cerr << "testclient delete <account>" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char** argv ) {
|
|
|
|
QCoreApplication app( argc, argv );
|
|
|
|
const QStringList args = app.arguments();
|
|
|
|
if ( args.count() < 2 )
|
|
|
|
return printUsage();
|
|
|
|
|
|
|
|
QStringList::ConstIterator it = args.constBegin();
|
|
|
|
++it;
|
|
|
|
|
|
|
|
if ( *it == QLatin1String("store") ) {
|
|
|
|
if ( ++it == args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
const QString acc = *it;
|
|
|
|
if ( ++it == args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
const QString pass = *it;
|
|
|
|
if ( ++it != args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
Keychain k( QLatin1String("qtkeychain-testclient") );
|
2011-10-28 07:32:08 +00:00
|
|
|
k.writePassword( acc, pass );
|
2011-10-27 16:15:46 +00:00
|
|
|
if ( k.error() ) {
|
|
|
|
std::cerr << "Storing password failed: " << qPrintable(k.errorString()) << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::cout << "Password stored successfully" << std::endl;
|
|
|
|
} else if ( *it == QLatin1String("restore") ) {
|
|
|
|
if ( ++it == args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
const QString acc = *it;
|
|
|
|
if ( ++it != args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
Keychain k( QLatin1String("qtkeychain-testclient") );
|
|
|
|
const QString pw = k.readPassword( acc );
|
|
|
|
if ( k.error() ) {
|
|
|
|
std::cerr << "Restoring password failed: " << qPrintable(k.errorString()) << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::cout << qPrintable(pw) << std::endl;
|
|
|
|
} else if ( *it == QLatin1String("delete") ) {
|
|
|
|
if ( ++it == args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
const QString acc = *it;
|
|
|
|
if ( ++it != args.constEnd() )
|
|
|
|
return printUsage();
|
|
|
|
Keychain k( QLatin1String("qtkeychain-testclient") );
|
2011-10-27 19:36:51 +00:00
|
|
|
k.deleteEntry( acc );
|
2011-10-27 16:15:46 +00:00
|
|
|
if ( k.error() ) {
|
|
|
|
std::cerr << "Deleting password failed: " << qPrintable(k.errorString()) << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::cout << "Password deleted successfully" << std::endl;
|
|
|
|
} else {
|
|
|
|
return printUsage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|