2017-02-13 22:29:20 -05:00
|
|
|
/*
|
2017-06-09 23:40:36 +02:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2017-02-13 22:29:20 -05: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 "List.h"
|
2018-09-29 19:00:47 +02:00
|
|
|
#include "cli/Utils.h"
|
2017-02-13 22:29:20 -05:00
|
|
|
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
|
2018-10-28 19:55:00 +01:00
|
|
|
#include "cli/TextStream.h"
|
2017-02-13 22:29:20 -05:00
|
|
|
#include "core/Database.h"
|
|
|
|
#include "core/Entry.h"
|
|
|
|
#include "core/Group.h"
|
2017-07-17 15:16:53 -04:00
|
|
|
|
|
|
|
List::List()
|
|
|
|
{
|
2018-02-06 01:17:36 +01:00
|
|
|
name = QString("ls");
|
|
|
|
description = QObject::tr("List database entries.");
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
2017-02-13 22:29:20 -05:00
|
|
|
|
2017-07-17 15:16:53 -04:00
|
|
|
List::~List()
|
|
|
|
{
|
|
|
|
}
|
2017-02-13 22:29:20 -05:00
|
|
|
|
2018-02-06 01:17:36 +01:00
|
|
|
int List::execute(const QStringList& arguments)
|
2017-02-13 22:29:20 -05:00
|
|
|
{
|
2018-10-28 19:55:00 +01:00
|
|
|
TextStream out(Utils::STDOUT);
|
2017-02-13 22:29:20 -05:00
|
|
|
|
|
|
|
QCommandLineParser parser;
|
2018-09-29 19:00:47 +02:00
|
|
|
parser.setApplicationDescription(description);
|
2017-07-17 15:16:53 -04:00
|
|
|
parser.addPositionalArgument("database", QObject::tr("Path of the database."));
|
2018-09-29 19:00:47 +02:00
|
|
|
parser.addPositionalArgument("group", QObject::tr("Path of the group to list. Default is /"), "[group]");
|
|
|
|
QCommandLineOption keyFile(QStringList() << "k" << "key-file",
|
2017-07-25 13:41:52 -04:00
|
|
|
QObject::tr("Key file of the database."),
|
|
|
|
QObject::tr("path"));
|
|
|
|
parser.addOption(keyFile);
|
2018-09-29 19:00:47 +02:00
|
|
|
QCommandLineOption recursiveOption(QStringList() << "R" << "recursive",
|
2018-10-03 19:18:34 +02:00
|
|
|
QObject::tr("Recursive mode, list elements recursively"));
|
|
|
|
parser.addOption(recursiveOption);
|
2018-09-29 19:00:47 +02:00
|
|
|
parser.addHelpOption();
|
2017-06-18 14:43:02 -04:00
|
|
|
parser.process(arguments);
|
2017-02-13 22:29:20 -05:00
|
|
|
|
|
|
|
const QStringList args = parser.positionalArguments();
|
2017-06-21 17:34:49 -04:00
|
|
|
if (args.size() != 1 && args.size() != 2) {
|
2017-07-17 15:16:53 -04:00
|
|
|
out << parser.helpText().replace("keepassxc-cli", "keepassxc-cli ls");
|
|
|
|
return EXIT_FAILURE;
|
2017-02-13 22:29:20 -05:00
|
|
|
}
|
|
|
|
|
2018-10-03 19:18:34 +02:00
|
|
|
bool recursive = parser.isSet(recursiveOption);
|
|
|
|
|
2018-09-29 19:00:47 +02:00
|
|
|
QScopedPointer<Database> db(Database::unlockFromStdin(args.at(0), parser.value(keyFile), Utils::STDOUT, Utils::STDERR));
|
|
|
|
if (!db) {
|
2017-02-13 22:29:20 -05:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-06-21 17:34:49 -04:00
|
|
|
if (args.size() == 2) {
|
2018-09-29 19:00:47 +02:00
|
|
|
return listGroup(db.data(), recursive, args.at(1));
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
2018-09-29 19:00:47 +02:00
|
|
|
return listGroup(db.data(), recursive);
|
2017-07-17 15:16:53 -04:00
|
|
|
}
|
|
|
|
|
2018-09-29 19:00:47 +02:00
|
|
|
int List::listGroup(Database* database, bool recursive, const QString& groupPath)
|
2017-07-17 15:16:53 -04:00
|
|
|
{
|
2018-10-28 19:55:00 +01:00
|
|
|
TextStream out(Utils::STDOUT, QIODevice::WriteOnly);
|
|
|
|
TextStream err(Utils::STDERR, QIODevice::WriteOnly);
|
2018-09-29 19:00:47 +02:00
|
|
|
|
2017-07-17 15:16:53 -04:00
|
|
|
if (groupPath.isEmpty()) {
|
2018-09-29 19:00:47 +02:00
|
|
|
out << database->rootGroup()->print(recursive) << flush;
|
2017-07-17 15:16:53 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
Group* group = database->rootGroup()->findGroupByPath(groupPath);
|
2018-09-29 19:00:47 +02:00
|
|
|
if (!group) {
|
|
|
|
err << QObject::tr("Cannot find group %1.").arg(groupPath) << endl;
|
2017-07-17 15:16:53 -04:00
|
|
|
return EXIT_FAILURE;
|
2017-06-21 17:34:49 -04:00
|
|
|
}
|
|
|
|
|
2018-09-29 19:00:47 +02:00
|
|
|
out << group->print(recursive) << flush;
|
2017-02-13 22:29:20 -05:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|