2017-03-12 13:34:56 -04:00
|
|
|
/*
|
2017-06-09 17:40:36 -04:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2017-03-12 13:34:56 -04:00
|
|
|
*
|
|
|
|
* 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 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "Show.h"
|
|
|
|
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
#include "core/Database.h"
|
|
|
|
#include "core/Entry.h"
|
|
|
|
#include "core/Group.h"
|
2017-07-17 15:16:53 -04:00
|
|
|
|
|
|
|
Show::Show()
|
|
|
|
{
|
2018-02-05 19:17:36 -05:00
|
|
|
name = QString("show");
|
|
|
|
description = QObject::tr("Show an entry's information.");
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Show::~Show()
|
|
|
|
{
|
|
|
|
}
|
2017-03-12 13:34:56 -04:00
|
|
|
|
2018-02-05 19:17:36 -05:00
|
|
|
int Show::execute(const QStringList& arguments)
|
2017-03-12 13:34:56 -04:00
|
|
|
{
|
|
|
|
QTextStream out(stdout);
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
2017-07-17 15:16:53 -04:00
|
|
|
parser.setApplicationDescription(this->description);
|
|
|
|
parser.addPositionalArgument("database", QObject::tr("Path of the database."));
|
2017-07-25 13:41:52 -04:00
|
|
|
QCommandLineOption keyFile(QStringList() << "k"
|
|
|
|
<< "key-file",
|
|
|
|
QObject::tr("Key file of the database."),
|
|
|
|
QObject::tr("path"));
|
|
|
|
parser.addOption(keyFile);
|
2017-12-16 19:14:39 -05:00
|
|
|
QCommandLineOption attributes(QStringList() << "a"
|
|
|
|
<< "attributes",
|
|
|
|
QObject::tr("Names of the attributes to show. "
|
|
|
|
"This option can be specified more than once, with each attribute shown one-per-line in the given order. "
|
|
|
|
"If no attributes are specified, a summary of the default attributes is given."),
|
|
|
|
QObject::tr("attribute"));
|
|
|
|
parser.addOption(attributes);
|
2017-07-17 15:16:53 -04:00
|
|
|
parser.addPositionalArgument("entry", QObject::tr("Name of the entry to show."));
|
|
|
|
parser.process(arguments);
|
2017-03-12 13:34:56 -04:00
|
|
|
|
|
|
|
const QStringList args = parser.positionalArguments();
|
|
|
|
if (args.size() != 2) {
|
2017-07-17 15:16:53 -04:00
|
|
|
out << parser.helpText().replace("keepassxc-cli", "keepassxc-cli show");
|
|
|
|
return EXIT_FAILURE;
|
2017-03-12 13:34:56 -04:00
|
|
|
}
|
|
|
|
|
2017-07-25 13:41:52 -04:00
|
|
|
Database* db = Database::unlockFromStdin(args.at(0), parser.value(keyFile));
|
2017-03-12 13:47:05 -04:00
|
|
|
if (db == nullptr) {
|
2017-03-12 13:34:56 -04:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
return this->showEntry(db, parser.values(attributes), args.at(1));
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
int Show::showEntry(Database* database, QStringList attributes, QString entryPath)
|
2017-07-17 15:16:53 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
QTextStream inputTextStream(stdin, QIODevice::ReadOnly);
|
|
|
|
QTextStream outputTextStream(stdout, QIODevice::WriteOnly);
|
|
|
|
|
|
|
|
Entry* entry = database->rootGroup()->findEntry(entryPath);
|
2017-05-19 14:04:11 -04:00
|
|
|
if (!entry) {
|
2017-07-17 15:16:53 -04:00
|
|
|
qCritical("Could not find entry with path %s.", qPrintable(entryPath));
|
2017-03-12 13:37:20 -04:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
// If no attributes specified, output the default attribute set.
|
|
|
|
bool showAttributeNames = attributes.isEmpty();
|
|
|
|
if (attributes.isEmpty()) {
|
|
|
|
attributes = EntryAttributes::DefaultAttributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over the attributes and output them line-by-line.
|
|
|
|
bool sawUnknownAttribute = false;
|
|
|
|
for (QString attribute : attributes) {
|
|
|
|
if (!entry->attributes()->contains(attribute)) {
|
|
|
|
sawUnknownAttribute = true;
|
|
|
|
qCritical("ERROR: unknown attribute '%s'.", qPrintable(attribute));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (showAttributeNames) {
|
|
|
|
outputTextStream << attribute << ": ";
|
|
|
|
}
|
2017-12-17 10:44:12 -05:00
|
|
|
outputTextStream << entry->resolveMultiplePlaceholders(entry->attributes()->value(attribute)) << endl;
|
2017-12-16 19:14:39 -05:00
|
|
|
}
|
|
|
|
return sawUnknownAttribute ? EXIT_FAILURE : EXIT_SUCCESS;
|
2017-03-12 13:34:56 -04:00
|
|
|
}
|