Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BrowserEntryConfig.cpp « browser « src - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36d0c733975e1858475a279de4bacdc666e3f5db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
*  Copyright (C) 2013 Francois Ferrand
*  Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
*
*  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 3 of the License, or
*  (at your option) any later version.
*
*  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 "BrowserEntryConfig.h"
#include <QtCore>
#include "core/Entry.h"
#include "core/EntryAttributes.h"

static const char KEEPASSBROWSER_NAME[] = "KeePassXC-Browser Settings";


BrowserEntryConfig::BrowserEntryConfig(QObject* parent) :
    QObject(parent)
{
}

QStringList BrowserEntryConfig::allowedHosts() const
{
    return m_allowedHosts.toList();
}

void BrowserEntryConfig::setAllowedHosts(const QStringList& allowedHosts)
{
    m_allowedHosts = allowedHosts.toSet();
}

QStringList BrowserEntryConfig::deniedHosts() const
{
    return m_deniedHosts.toList();
}

void BrowserEntryConfig::setDeniedHosts(const QStringList& deniedHosts)
{
    m_deniedHosts = deniedHosts.toSet();
}

bool BrowserEntryConfig::isAllowed(const QString& host) const
{
    return m_allowedHosts.contains(host);
}

void BrowserEntryConfig::allow(const QString& host)
{
    m_allowedHosts.insert(host);
    m_deniedHosts.remove(host);
}

bool BrowserEntryConfig::isDenied(const QString& host) const
{
    return m_deniedHosts.contains(host);
}

void BrowserEntryConfig::deny(const QString& host)
{
    m_deniedHosts.insert(host);
    m_allowedHosts.remove(host);
}

QString BrowserEntryConfig::realm() const
{
    return m_realm;
}

void BrowserEntryConfig::setRealm(const QString& realm)
{
    m_realm = realm;
}

bool BrowserEntryConfig::load(const Entry* entry)
{
    QString s = entry->attributes()->value(KEEPASSBROWSER_NAME);
    if (s.isEmpty()) {
        return false;
    }

    QJsonDocument doc = QJsonDocument::fromJson(s.toUtf8());
    if (doc.isNull()) {
        return false;
    }

    QVariantMap map = doc.object().toVariantMap();
    for (QVariantMap::const_iterator iter = map.cbegin(); iter != map.cend(); ++iter) {
        setProperty(iter.key().toLatin1(), iter.value());
    }
    return true;
}

void BrowserEntryConfig::save(Entry* entry)
{
    QVariantMap v = qo2qv(this);
    QJsonObject o = QJsonObject::fromVariantMap(v);
    QByteArray json = QJsonDocument(o).toJson(QJsonDocument::Compact);
    entry->attributes()->set(KEEPASSBROWSER_NAME, json);
}