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/>.
|
|
|
|
*/
|
|
|
|
|
2018-09-29 13:00:47 -04:00
|
|
|
#include "Show.h"
|
|
|
|
|
2017-03-12 13:34:56 -04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
|
2018-11-28 11:24:12 -05:00
|
|
|
#include "Utils.h"
|
2018-10-28 14:55:00 -04:00
|
|
|
#include "cli/TextStream.h"
|
2017-03-12 13:34:56 -04:00
|
|
|
#include "core/Database.h"
|
|
|
|
#include "core/Entry.h"
|
2018-09-29 13:00:47 -04:00
|
|
|
#include "core/Global.h"
|
2018-11-28 11:24:12 -05:00
|
|
|
#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
|
|
|
{
|
2018-10-28 14:55:00 -04:00
|
|
|
TextStream out(Utils::STDOUT);
|
2017-03-12 13:34:56 -04:00
|
|
|
|
|
|
|
QCommandLineParser parser;
|
2018-09-29 13:00:47 -04:00
|
|
|
parser.setApplicationDescription(description);
|
2017-07-17 15:16:53 -04:00
|
|
|
parser.addPositionalArgument("database", QObject::tr("Path of the database."));
|
2018-11-28 11:24:12 -05:00
|
|
|
parser.addOption(Command::QuietOption);
|
2018-11-28 16:15:15 -05:00
|
|
|
parser.addOption(Command::KeyFileOption);
|
2018-10-31 23:27:38 -04:00
|
|
|
QCommandLineOption totp(QStringList() << "t"
|
|
|
|
<< "totp",
|
2018-11-09 21:58:42 -05:00
|
|
|
QObject::tr("Show the entry's current TOTP."));
|
|
|
|
parser.addOption(totp);
|
2018-03-31 16:01:30 -04:00
|
|
|
QCommandLineOption attributes(
|
2018-10-31 23:27:38 -04:00
|
|
|
QStringList() << "a"
|
|
|
|
<< "attributes",
|
2018-03-31 16:01:30 -04:00
|
|
|
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"));
|
2017-12-16 19:14:39 -05:00
|
|
|
parser.addOption(attributes);
|
2017-07-17 15:16:53 -04:00
|
|
|
parser.addPositionalArgument("entry", QObject::tr("Name of the entry to show."));
|
2018-09-29 13:00:47 -04:00
|
|
|
parser.addHelpOption();
|
2017-07-17 15:16:53 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-12-11 10:49:51 -05:00
|
|
|
auto db = Utils::unlockDatabase(args.at(0),
|
|
|
|
parser.value(Command::KeyFileOption),
|
|
|
|
parser.isSet(Command::QuietOption) ? Utils::DEVNULL : Utils::STDOUT,
|
|
|
|
Utils::STDERR);
|
2018-09-29 13:00:47 -04:00
|
|
|
if (!db) {
|
2017-03-12 13:34:56 -04:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2018-11-09 21:58:42 -05:00
|
|
|
return showEntry(db.data(), parser.values(attributes), parser.isSet(totp), args.at(1));
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
|
|
|
|
2018-11-09 21:58:42 -05:00
|
|
|
int Show::showEntry(Database* database, QStringList attributes, bool showTotp, const QString& entryPath)
|
2017-07-17 15:16:53 -04:00
|
|
|
{
|
2018-10-28 14:55:00 -04:00
|
|
|
TextStream in(Utils::STDIN, QIODevice::ReadOnly);
|
|
|
|
TextStream out(Utils::STDOUT, QIODevice::WriteOnly);
|
|
|
|
TextStream err(Utils::STDERR, QIODevice::WriteOnly);
|
2017-07-17 15:16:53 -04:00
|
|
|
|
2018-10-30 08:42:35 -04:00
|
|
|
Entry* entry = database->rootGroup()->findEntryByPath(entryPath);
|
2017-05-19 14:04:11 -04:00
|
|
|
if (!entry) {
|
2018-09-29 13:00:47 -04:00
|
|
|
err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl;
|
2017-03-12 13:37:20 -04:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2018-11-09 21:58:42 -05:00
|
|
|
if (showTotp && !entry->hasTotp()) {
|
|
|
|
err << QObject::tr("Entry with path %1 has no TOTP set up.").arg(entryPath) << endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
// If no attributes specified, output the default attribute set.
|
2018-11-09 21:58:42 -05:00
|
|
|
bool showAttributeNames = attributes.isEmpty() && !showTotp;
|
|
|
|
if (attributes.isEmpty() && !showTotp) {
|
2017-12-16 19:14:39 -05:00
|
|
|
attributes = EntryAttributes::DefaultAttributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over the attributes and output them line-by-line.
|
|
|
|
bool sawUnknownAttribute = false;
|
2018-09-29 13:00:47 -04:00
|
|
|
for (const QString& attribute : asConst(attributes)) {
|
2017-12-16 19:14:39 -05:00
|
|
|
if (!entry->attributes()->contains(attribute)) {
|
|
|
|
sawUnknownAttribute = true;
|
2018-09-29 13:00:47 -04:00
|
|
|
err << QObject::tr("ERROR: unknown attribute %1.").arg(attribute) << endl;
|
2017-12-16 19:14:39 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (showAttributeNames) {
|
2018-09-29 13:00:47 -04:00
|
|
|
out << attribute << ": ";
|
2017-12-16 19:14:39 -05:00
|
|
|
}
|
2018-09-29 13:00:47 -04:00
|
|
|
out << entry->resolveMultiplePlaceholders(entry->attributes()->value(attribute)) << endl;
|
2017-12-16 19:14:39 -05:00
|
|
|
}
|
2018-11-09 21:58:42 -05:00
|
|
|
|
|
|
|
if (showTotp) {
|
|
|
|
if (showAttributeNames) {
|
|
|
|
out << "TOTP: ";
|
|
|
|
}
|
|
|
|
out << entry->totp() << endl;
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
return sawUnknownAttribute ? EXIT_FAILURE : EXIT_SUCCESS;
|
2017-03-12 13:34:56 -04:00
|
|
|
}
|