2017-02-13 22:29:20 -05:00
|
|
|
/*
|
2017-06-09 17:40:36 -04: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"
|
|
|
|
|
2017-06-18 14:43:02 -04:00
|
|
|
#include <QApplication>
|
2017-02-13 22:29:20 -05:00
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
#include "core/Database.h"
|
|
|
|
#include "core/Entry.h"
|
|
|
|
#include "core/Group.h"
|
2017-07-17 15:16:53 -04:00
|
|
|
#include "gui/UnlockDatabaseDialog.h"
|
|
|
|
|
|
|
|
List::List()
|
|
|
|
{
|
|
|
|
this->name = QString("ls");
|
|
|
|
this->description = QObject::tr("List database entries.");
|
|
|
|
}
|
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
|
|
|
|
2017-05-19 14:04:11 -04:00
|
|
|
int List::execute(int argc, char** argv)
|
2017-02-13 22:29:20 -05:00
|
|
|
{
|
2017-06-18 14:43:02 -04:00
|
|
|
QStringList arguments;
|
2017-07-17 15:16:53 -04:00
|
|
|
// Skipping the first argument (keepassxc).
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
2017-06-18 14:43:02 -04:00
|
|
|
arguments << QString(argv[i]);
|
|
|
|
}
|
2017-07-17 15:16:53 -04:00
|
|
|
|
2017-02-16 14:26:51 -05:00
|
|
|
QTextStream out(stdout);
|
2017-02-13 22:29:20 -05:00
|
|
|
|
|
|
|
QCommandLineParser parser;
|
2017-07-17 15:16:53 -04:00
|
|
|
parser.setApplicationDescription(this->description);
|
|
|
|
parser.addPositionalArgument("database", QObject::tr("Path of the database."));
|
|
|
|
parser.addPositionalArgument(
|
|
|
|
"group", QObject::tr("Path of the group to list. Default is /"), QString("[group]"));
|
|
|
|
QCommandLineOption guiPrompt(QStringList() << "g"
|
|
|
|
<< "gui-prompt",
|
|
|
|
QObject::tr("Use a GUI prompt unlocking the database."));
|
2017-06-18 14:43:02 -04:00
|
|
|
parser.addOption(guiPrompt);
|
|
|
|
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-06-18 14:43:02 -04:00
|
|
|
QCoreApplication app(argc, argv);
|
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
|
|
|
}
|
|
|
|
|
2017-06-18 14:43:02 -04:00
|
|
|
Database* db = nullptr;
|
|
|
|
if (parser.isSet("gui-prompt")) {
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
db = UnlockDatabaseDialog::openDatabasePrompt(args.at(0));
|
|
|
|
} else {
|
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
db = Database::unlockFromStdin(args.at(0));
|
|
|
|
}
|
2017-02-13 22:29:20 -05:00
|
|
|
|
2017-03-12 13:57:44 -04:00
|
|
|
if (db == nullptr) {
|
2017-02-13 22:29:20 -05:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-06-21 17:34:49 -04:00
|
|
|
if (args.size() == 2) {
|
2017-07-17 15:16:53 -04:00
|
|
|
return this->listGroup(db, args.at(1));
|
|
|
|
}
|
|
|
|
return this->listGroup(db);
|
|
|
|
}
|
|
|
|
|
|
|
|
int List::listGroup(Database* database, QString groupPath)
|
|
|
|
{
|
|
|
|
QTextStream outputTextStream(stdout, QIODevice::WriteOnly);
|
|
|
|
if (groupPath.isEmpty()) {
|
|
|
|
outputTextStream << database->rootGroup()->print();
|
|
|
|
outputTextStream.flush();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
Group* group = database->rootGroup()->findGroupByPath(groupPath);
|
|
|
|
if (group == nullptr) {
|
|
|
|
qCritical("Cannot find group %s.", qPrintable(groupPath));
|
|
|
|
return EXIT_FAILURE;
|
2017-06-21 17:34:49 -04:00
|
|
|
}
|
|
|
|
|
2017-07-17 15:16:53 -04:00
|
|
|
outputTextStream << group->print();
|
|
|
|
outputTextStream.flush();
|
2017-02-13 22:29:20 -05:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|