2013-04-11 17:19:00 -04:00
|
|
|
/**
|
|
|
|
***************************************************************************
|
|
|
|
* @file EntryConfig.cpp
|
|
|
|
*
|
|
|
|
* @brief
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013
|
|
|
|
*
|
|
|
|
* @author Francois Ferrand
|
|
|
|
* @date 4/2013
|
|
|
|
***************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "EntryConfig.h"
|
2016-02-28 10:52:02 -05:00
|
|
|
#include <QtCore>
|
2013-04-11 17:19:00 -04:00
|
|
|
#include "core/Entry.h"
|
|
|
|
#include "core/EntryAttributes.h"
|
2016-02-28 10:52:02 -05:00
|
|
|
#include "http/Protocol.h"
|
2013-04-11 17:19:00 -04:00
|
|
|
|
|
|
|
static const char KEEPASSHTTP_NAME[] = "KeePassHttp Settings"; //TODO: duplicated string (also in Service.cpp)
|
|
|
|
|
|
|
|
EntryConfig::EntryConfig(QObject *parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList EntryConfig::allowedHosts() const
|
|
|
|
{
|
|
|
|
return m_allowedHosts.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryConfig::setAllowedHosts(const QStringList &allowedHosts)
|
|
|
|
{
|
|
|
|
m_allowedHosts = allowedHosts.toSet();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList EntryConfig::deniedHosts() const
|
|
|
|
{
|
|
|
|
return m_deniedHosts.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryConfig::setDeniedHosts(const QStringList &deniedHosts)
|
|
|
|
{
|
|
|
|
m_deniedHosts = deniedHosts.toSet();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EntryConfig::isAllowed(const QString &host)
|
|
|
|
{
|
|
|
|
return m_allowedHosts.contains(host);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryConfig::allow(const QString &host)
|
|
|
|
{
|
|
|
|
m_allowedHosts.insert(host);
|
|
|
|
m_deniedHosts.remove(host);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EntryConfig::isDenied(const QString &host)
|
|
|
|
{
|
|
|
|
return m_deniedHosts.contains(host);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryConfig::deny(const QString &host)
|
|
|
|
{
|
|
|
|
m_deniedHosts.insert(host);
|
|
|
|
m_allowedHosts.remove(host);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString EntryConfig::realm() const
|
|
|
|
{
|
|
|
|
return m_realm;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryConfig::setRealm(const QString &realm)
|
|
|
|
{
|
|
|
|
m_realm = realm;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EntryConfig::load(const Entry *entry)
|
|
|
|
{
|
|
|
|
QString s = entry->attributes()->value(KEEPASSHTTP_NAME);
|
|
|
|
if (s.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
2016-02-28 10:52:02 -05:00
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(s.toUtf8());
|
|
|
|
if (doc.isNull())
|
2013-04-11 17:19:00 -04:00
|
|
|
return false;
|
|
|
|
|
2016-02-28 10:52:02 -05:00
|
|
|
QVariantMap map = doc.object().toVariantMap();
|
|
|
|
for(QVariantMap::iterator iter = map.begin(); iter != map.end(); ++iter) {
|
|
|
|
setProperty(iter.key().toLatin1(), iter.value());
|
|
|
|
}
|
2013-04-11 17:19:00 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryConfig::save(Entry *entry)
|
|
|
|
{
|
2016-02-28 10:52:02 -05:00
|
|
|
QVariantMap v = qobject2qvariant(this);
|
|
|
|
QJsonObject o = QJsonObject::fromVariantMap(v);
|
|
|
|
QByteArray json = QJsonDocument(o).toJson(QJsonDocument::Compact);
|
2013-04-11 17:19:00 -04:00
|
|
|
entry->attributes()->set(KEEPASSHTTP_NAME, json);
|
|
|
|
}
|