2017-03-12 13:34:56 -04:00
|
|
|
/*
|
2019-06-01 17:53:40 -04:00
|
|
|
* Copyright (C) 2019 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>
|
|
|
|
|
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
|
|
|
|
2019-06-01 17:53:40 -04:00
|
|
|
const QCommandLineOption Show::TotpOption = QCommandLineOption(QStringList() << "t"
|
|
|
|
<< "totp",
|
|
|
|
QObject::tr("Show the entry's current TOTP."));
|
|
|
|
|
2019-10-28 13:27:29 -04:00
|
|
|
const QCommandLineOption Show::ProtectedAttributesOption =
|
|
|
|
QCommandLineOption(QStringList() << "s"
|
|
|
|
<< "show-protected",
|
|
|
|
QObject::tr("Show the protected attributes in clear text."));
|
|
|
|
|
2019-06-01 17:53:40 -04:00
|
|
|
const QCommandLineOption Show::AttributesOption = QCommandLineOption(
|
|
|
|
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"));
|
|
|
|
|
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.");
|
2019-06-01 17:53:40 -04:00
|
|
|
options.append(Show::TotpOption);
|
|
|
|
options.append(Show::AttributesOption);
|
2019-10-28 13:27:29 -04:00
|
|
|
options.append(Show::ProtectedAttributesOption);
|
2019-06-01 17:53:40 -04:00
|
|
|
positionalArguments.append({QString("entry"), QObject::tr("Name of the entry to show."), QString("")});
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
|
|
|
|
2019-06-01 17:53:40 -04:00
|
|
|
int Show::executeWithDatabase(QSharedPointer<Database> database, QSharedPointer<QCommandLineParser> parser)
|
2017-07-17 15:16:53 -04:00
|
|
|
{
|
2019-01-16 12:32:06 -05:00
|
|
|
TextStream outputTextStream(Utils::STDOUT, QIODevice::WriteOnly);
|
|
|
|
TextStream errorTextStream(Utils::STDERR, QIODevice::WriteOnly);
|
2017-07-17 15:16:53 -04:00
|
|
|
|
2019-06-01 17:53:40 -04:00
|
|
|
const QStringList args = parser->positionalArguments();
|
|
|
|
const QString& entryPath = args.at(1);
|
|
|
|
bool showTotp = parser->isSet(Show::TotpOption);
|
2019-10-28 13:27:29 -04:00
|
|
|
bool showProtectedAttributes = parser->isSet(Show::ProtectedAttributesOption);
|
2019-06-01 17:53:40 -04:00
|
|
|
QStringList attributes = parser->values(Show::AttributesOption);
|
|
|
|
|
2018-10-30 08:42:35 -04:00
|
|
|
Entry* entry = database->rootGroup()->findEntryByPath(entryPath);
|
2017-05-19 14:04:11 -04:00
|
|
|
if (!entry) {
|
2019-01-16 12:32:06 -05:00
|
|
|
errorTextStream << 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()) {
|
2019-01-16 12:32:06 -05:00
|
|
|
errorTextStream << QObject::tr("Entry with path %1 has no TOTP set up.").arg(entryPath) << endl;
|
2018-11-09 21:58:42 -05:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
// If no attributes specified, output the default attribute set.
|
2020-01-23 20:54:36 -05:00
|
|
|
bool showDefaultAttributes = attributes.isEmpty() && !showTotp;
|
2018-11-09 21:58:42 -05:00
|
|
|
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;
|
2019-10-28 13:27:29 -04:00
|
|
|
for (const QString& attributeName : asConst(attributes)) {
|
|
|
|
if (!entry->attributes()->contains(attributeName)) {
|
2017-12-16 19:14:39 -05:00
|
|
|
sawUnknownAttribute = true;
|
2019-10-28 13:27:29 -04:00
|
|
|
errorTextStream << QObject::tr("ERROR: unknown attribute %1.").arg(attributeName) << endl;
|
2017-12-16 19:14:39 -05:00
|
|
|
continue;
|
|
|
|
}
|
2020-01-23 20:54:36 -05:00
|
|
|
if (showDefaultAttributes) {
|
2019-10-28 13:27:29 -04:00
|
|
|
outputTextStream << attributeName << ": ";
|
|
|
|
}
|
2020-01-23 20:54:36 -05:00
|
|
|
if (entry->attributes()->isProtected(attributeName) && showDefaultAttributes && !showProtectedAttributes) {
|
2019-10-28 13:27:29 -04:00
|
|
|
outputTextStream << "PROTECTED" << endl;
|
|
|
|
} else {
|
|
|
|
outputTextStream << entry->resolveMultiplePlaceholders(entry->attributes()->value(attributeName)) << endl;
|
2017-12-16 19:14:39 -05:00
|
|
|
}
|
|
|
|
}
|
2018-11-09 21:58:42 -05:00
|
|
|
|
|
|
|
if (showTotp) {
|
2019-01-16 12:32:06 -05:00
|
|
|
outputTextStream << entry->totp() << endl;
|
2018-11-09 21:58:42 -05:00
|
|
|
}
|
|
|
|
|
2017-12-16 19:14:39 -05:00
|
|
|
return sawUnknownAttribute ? EXIT_FAILURE : EXIT_SUCCESS;
|
2017-03-12 13:34:56 -04:00
|
|
|
}
|