2017-02-13 22:29:20 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 KeePassXC Team
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
#include "core/Database.h"
|
|
|
|
#include "core/Entry.h"
|
|
|
|
#include "core/Group.h"
|
|
|
|
#include "keys/CompositeKey.h"
|
|
|
|
|
|
|
|
void printGroup(Group* group, QString baseName, int depth) {
|
|
|
|
|
|
|
|
QTextStream out(stdout);
|
|
|
|
|
|
|
|
QString groupName = baseName + group->name() + "/";
|
|
|
|
QString indentation = QString(" ").repeated(depth);
|
|
|
|
|
2017-03-12 14:24:22 -04:00
|
|
|
out << indentation << groupName << " " << group->uuid().toHex() << "\n";
|
2017-02-13 22:29:20 -05:00
|
|
|
out.flush();
|
|
|
|
|
|
|
|
if (group->entries().isEmpty() && group->children().isEmpty()) {
|
|
|
|
out << indentation << " [empty]\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Entry* entry : group->entries()) {
|
|
|
|
out << indentation << " " << entry->title() << " " << entry->uuid().toHex() << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Group* innerGroup : group->children()) {
|
|
|
|
printGroup(innerGroup, groupName, depth + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int List::execute(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QCoreApplication app(argc, argv);
|
2017-02-16 14:26:51 -05:00
|
|
|
QTextStream out(stdout);
|
2017-02-13 22:29:20 -05:00
|
|
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.setApplicationDescription(QCoreApplication::translate("main",
|
2017-02-15 21:05:40 -05:00
|
|
|
"List database entries."));
|
2017-03-12 13:34:56 -04:00
|
|
|
parser.addPositionalArgument("database", QCoreApplication::translate("main", "Path of the database."));
|
2017-02-13 22:29:20 -05:00
|
|
|
parser.process(app);
|
|
|
|
|
|
|
|
const QStringList args = parser.positionalArguments();
|
|
|
|
if (args.size() != 1) {
|
|
|
|
parser.showHelp();
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-02-16 14:26:51 -05:00
|
|
|
out << "Insert the database password\n> ";
|
|
|
|
out.flush();
|
|
|
|
|
2017-02-13 22:29:20 -05:00
|
|
|
static QTextStream inputTextStream(stdin, QIODevice::ReadOnly);
|
|
|
|
QString line = inputTextStream.readLine();
|
|
|
|
CompositeKey key = CompositeKey::readFromLine(line);
|
|
|
|
|
2017-03-12 13:57:44 -04:00
|
|
|
Database* db = Database::openDatabaseFile(args.at(0), key);
|
|
|
|
if (db == nullptr) {
|
2017-02-13 22:29:20 -05:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
printGroup(db->rootGroup(), QString(""), 0);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|