keepassxc

Форк
0
/
Search.cpp 
51 строка · 1.6 Кб
1
/*
2
 *  Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "Search.h"
19

20
#include <QCommandLineParser>
21

22
#include "Utils.h"
23
#include "core/EntrySearcher.h"
24
#include "core/Group.h"
25

26
Search::Search()
27
{
28
    name = QString("search");
29
    description = QObject::tr("Find entries quickly.");
30
    positionalArguments.append({QString("term"), QObject::tr("Search term."), QString("")});
31
}
32

33
int Search::executeWithDatabase(QSharedPointer<Database> database, QSharedPointer<QCommandLineParser> parser)
34
{
35
    auto& out = Utils::STDOUT;
36
    auto& err = Utils::STDERR;
37

38
    const QStringList args = parser->positionalArguments();
39

40
    EntrySearcher searcher;
41
    auto results = searcher.search(args.at(1), database->rootGroup(), true);
42
    if (results.isEmpty()) {
43
        err << "No results for that search term." << endl;
44
        return EXIT_FAILURE;
45
    }
46

47
    for (const Entry* result : asConst(results)) {
48
        out << result->path().prepend('/') << endl;
49
    }
50
    return EXIT_SUCCESS;
51
}
52

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.