/* * 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 . */ #include #include #include "Show.h" #include #include #include #include #include "core/Database.h" #include "core/Entry.h" #include "core/Group.h" Show::Show() { this->name = QString("show"); this->description = QObject::tr("Show an entry's information."); } Show::~Show() { } int Show::execute(int argc, char** argv) { QStringList arguments; // Skipping the first argument (keepassxc). for (int i = 1; i < argc; ++i) { arguments << QString(argv[i]); } QCoreApplication app(argc, argv); QTextStream out(stdout); QCommandLineParser parser; parser.setApplicationDescription(this->description); parser.addPositionalArgument("database", QObject::tr("Path of the database.")); parser.addPositionalArgument("entry", QObject::tr("Name of the entry to show.")); parser.process(arguments); const QStringList args = parser.positionalArguments(); if (args.size() != 2) { out << parser.helpText().replace("keepassxc-cli", "keepassxc-cli show"); return EXIT_FAILURE; } Database* db = Database::unlockFromStdin(args.at(0)); if (db == nullptr) { return EXIT_FAILURE; } return this->showEntry(db, args.at(1)); } int Show::showEntry(Database* database, QString entryPath) { QTextStream inputTextStream(stdin, QIODevice::ReadOnly); QTextStream outputTextStream(stdout, QIODevice::WriteOnly); Entry* entry = database->rootGroup()->findEntry(entryPath); if (!entry) { qCritical("Could not find entry with path %s.", qPrintable(entryPath)); return EXIT_FAILURE; } outputTextStream << " title: " << entry->title() << endl; outputTextStream << "username: " << entry->username() << endl; outputTextStream << "password: " << entry->password() << endl; outputTextStream << " URL: " << entry->url() << endl; outputTextStream << " Notes: " << entry->notes() << endl; return EXIT_SUCCESS; }