keepassxc/src/format/KeePass2XmlReader.cpp

808 lines
22 KiB
C++
Raw Normal View History

2010-08-07 09:10:44 -04:00
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
*
* 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 "KeePass2XmlReader.h"
2010-08-07 09:10:44 -04:00
#include <QtCore/QFile>
#include "core/Database.h"
2010-09-22 18:21:36 -04:00
#include "core/DatabaseIcons.h"
#include "core/Metadata.h"
#include "format/KeePass2RandomStream.h"
KeePass2XmlReader::KeePass2XmlReader()
: m_randomStream(0)
, m_db(0)
, m_meta(0)
2010-08-07 09:10:44 -04:00
{
}
void KeePass2XmlReader::readDatabase(QIODevice* device, Database* db, KeePass2RandomStream* randomStream)
2010-08-07 09:10:44 -04:00
{
m_xml.setDevice(device);
m_db = db;
m_meta = m_db->metadata();
m_randomStream = randomStream;
2010-08-07 09:10:44 -04:00
m_tmpParent = new Group();
2010-08-13 12:08:06 -04:00
m_tmpParent->setParent(m_db);
2010-08-07 09:10:44 -04:00
if (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "KeePassFile") {
parseKeePassFile();
}
}
2010-08-13 12:08:06 -04:00
if (!m_xml.error() && !m_tmpParent->children().isEmpty()) {
raiseError();
}
2010-08-13 12:08:06 -04:00
delete m_tmpParent;
}
2010-08-13 12:08:06 -04:00
Database* KeePass2XmlReader::readDatabase(QIODevice* device)
{
Database* db = new Database();
readDatabase(device, db);
return db;
}
Database* KeePass2XmlReader::readDatabase(const QString& filename)
{
QFile file(filename);
file.open(QIODevice::ReadOnly);
return readDatabase(&file);
}
bool KeePass2XmlReader::error()
{
return m_xml.hasError();
2010-08-07 09:10:44 -04:00
}
QString KeePass2XmlReader::errorString()
2010-08-13 12:08:06 -04:00
{
return QString("%1\nLine %2, column %3")
.arg(m_xml.errorString())
.arg(m_xml.lineNumber())
.arg(m_xml.columnNumber());
}
void KeePass2XmlReader::parseKeePassFile()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "KeePassFile");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Meta") {
parseMeta();
}
else if (m_xml.name() == "Root") {
parseRoot();
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseMeta()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Meta");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Generator") {
m_meta->setGenerator(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DatabaseName") {
m_meta->setName(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DatabaseNameChanged") {
m_meta->setNameChanged(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DatabaseDescription") {
m_meta->setDescription(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DatabaseDescriptionChanged") {
m_meta->setDescriptionChanged(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DefaultUserName") {
m_meta->setDefaultUserName(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DefaultUserNameChanged") {
m_meta->setDefaultUserNameChanged(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "MaintenanceHistoryDays") {
m_meta->setMaintenanceHistoryDays(readNumber());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "MasterKeyChanged") {
m_meta->setMasterKeyChanged(readDateTime());
}
else if (m_xml.name() == "MasterKeyChangeRec") {
m_meta->setMasterKeyChangeRec(readNumber());
}
else if (m_xml.name() == "MasterKeyChangeForce") {
m_meta->setMasterKeyChangeForce(readNumber());
}
2010-08-07 09:10:44 -04:00
else if (m_xml.name() == "MemoryProtection") {
parseMemoryProtection();
}
else if (m_xml.name() == "CustomIcons") {
parseCustomIcons();
}
else if (m_xml.name() == "RecycleBinEnabled") {
m_meta->setRecycleBinEnabled(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "RecycleBinUUID") {
2010-08-13 12:08:06 -04:00
m_meta->setRecycleBin(getGroup(readUuid()));
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "RecycleBinChanged") {
m_meta->setRecycleBinChanged(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "EntryTemplatesGroup") {
2010-08-13 12:08:06 -04:00
m_meta->setEntryTemplatesGroup(getGroup(readUuid()));
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "EntryTemplatesGroupChanged") {
m_meta->setEntryTemplatesGroupChanged(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "LastSelectedGroup") {
2010-08-13 12:08:06 -04:00
m_meta->setLastSelectedGroup(getGroup(readUuid()));
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "LastTopVisibleGroup") {
2010-08-13 12:08:06 -04:00
m_meta->setLastTopVisibleGroup(getGroup(readUuid()));
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "CustomData") {
parseCustomData();
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseMemoryProtection()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "MemoryProtection");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "ProtectTitle") {
m_meta->setProtectTitle(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "ProtectUserName") {
m_meta->setProtectUsername(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "ProtectPassword") {
m_meta->setProtectPassword(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "ProtectURL") {
m_meta->setProtectUrl(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "ProtectNotes") {
m_meta->setProtectNotes(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "AutoEnableVisualHiding") {
m_meta->setAutoEnableVisualHiding(readBool());
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseCustomIcons()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "CustomIcons");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Icon") {
parseIcon();
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseIcon()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Icon");
Uuid uuid;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "UUID") {
uuid = readUuid();
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Data") {
2010-09-19 15:22:24 -04:00
QPixmap pixmap;
pixmap.loadFromData(readBinary());
m_meta->addCustomIcon(uuid, QIcon(pixmap));
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseCustomData()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "CustomData");
2010-08-13 12:08:06 -04:00
while (!m_xml.error() && m_xml.readNextStartElement()) {
if (m_xml.name() == "Item") {
parseCustomDataItem();
}
else {
skipCurrentElement();
}
}
}
void KeePass2XmlReader::parseCustomDataItem()
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Item");
QString key;
while (!m_xml.error() && m_xml.readNextStartElement()) {
if (m_xml.name() == "Key") {
key = readString();
}
else if (m_xml.name() == "Value") {
m_meta->addCustomField(key, readString());
}
else {
skipCurrentElement();
}
2010-08-13 12:08:06 -04:00
}
2010-08-07 09:10:44 -04:00
}
void KeePass2XmlReader::parseRoot()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Root");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Group") {
Group* rootGroup = parseGroup();
2010-08-12 15:43:57 -04:00
if (rootGroup) {
rootGroup->setParent(m_db);
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DeletedObjects") {
parseDeletedObjects();
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
Group* KeePass2XmlReader::parseGroup()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Group");
Group* group = 0;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "UUID") {
Uuid uuid = readUuid();
if (uuid.isNull()) {
raiseError();
}
else {
2010-08-13 12:08:06 -04:00
group = getGroup(uuid);
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Name") {
group->setName(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Notes") {
group->setNotes(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "IconID") {
int iconId = readNumber();
2010-08-14 06:24:35 -04:00
if (iconId < 0) {
raiseError();
}
else {
2010-09-22 18:21:36 -04:00
if (iconId >= DatabaseIcons::iconCount()) {
qWarning("KeePass2XmlReader::parseGroup: icon id \"%d\" not supported", iconId);
}
group->setIcon(iconId);
2010-08-14 06:24:35 -04:00
}
}
else if (m_xml.name() == "CustomIconUUID") {
Uuid uuid = readUuid();
if (!uuid.isNull()) {
group->setIcon(uuid);
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Times") {
group->setTimeInfo(parseTimes());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "IsExpanded") {
group->setExpanded(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DefaultAutoTypeSequence") {
group->setDefaultAutoTypeSequence(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "EnableAutoType") {
QString str = readString();
if (str.compare("null", Qt::CaseInsensitive) == 0) {
group->setAutoTypeEnabled(-1);
}
else if (str.compare("true", Qt::CaseInsensitive) == 0) {
group->setAutoTypeEnabled(1);
}
else if (str.compare("false", Qt::CaseInsensitive) == 0) {
group->setAutoTypeEnabled(0);
}
else {
raiseError();
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "EnableSearching") {
QString str = readString();
if (str.compare("null", Qt::CaseInsensitive) == 0) {
group->setSearchingEnabled(-1);
}
else if (str.compare("true", Qt::CaseInsensitive) == 0) {
group->setSearchingEnabled(1);
}
else if (str.compare("false", Qt::CaseInsensitive) == 0) {
group->setSearchingEnabled(0);
}
else {
raiseError();
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "LastTopVisibleEntry") {
2010-08-13 12:08:06 -04:00
group->setLastTopVisibleEntry(getEntry(readUuid()));
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Group") {
Group* newGroup = parseGroup();
if (newGroup) {
newGroup->setParent(group);
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Entry") {
Entry* newEntry = parseEntry(false);
if (newEntry) {
newEntry->setGroup(group);
}
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
return group;
2010-08-07 09:10:44 -04:00
}
void KeePass2XmlReader::parseDeletedObjects()
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "DeletedObjects");
while (!m_xml.error() && m_xml.readNextStartElement()) {
if (m_xml.name() == "DeletedObject") {
parseDeletedObject();
}
else {
skipCurrentElement();
}
}
}
void KeePass2XmlReader::parseDeletedObject()
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "DeletedObject");
DeletedObject delObj;
while (!m_xml.error() && m_xml.readNextStartElement()) {
if (m_xml.name() == "UUID") {
Uuid uuid = readUuid();
if (uuid.isNull()) {
raiseError();
}
else {
delObj.uuid = uuid;
}
}
else if (m_xml.name() == "DeletionTime") {
delObj.deletionTime = readDateTime();
}
else {
skipCurrentElement();
}
}
m_db->addDeletedObject(delObj);
}
Entry* KeePass2XmlReader::parseEntry(bool history)
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Entry");
Entry* entry = 0;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "UUID") {
Uuid uuid = readUuid();
if (uuid.isNull()) {
raiseError();
}
else {
if (history) {
entry = new Entry();
entry->setUuid(uuid);
}
else {
entry = getEntry(uuid);
}
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "IconID") {
int iconId = readNumber();
2010-08-14 06:24:35 -04:00
if (iconId < 0) {
raiseError();
}
else {
entry->setIcon(iconId);
2010-08-14 06:24:35 -04:00
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "CustomIconUUID") {
Uuid uuid = readUuid();
2010-09-19 15:22:24 -04:00
if (!uuid.isNull()) {
entry->setIcon(uuid);
2010-09-19 15:22:24 -04:00
}
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "ForegroundColor") {
entry->setForegroundColor(readColor());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "BackgroundColor") {
entry->setBackgroundColor(readColor());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "OverrideURL") {
entry->setOverrideUrl(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Tags") {
entry->setTags(readString());
}
2010-08-07 09:10:44 -04:00
else if (m_xml.name() == "Times") {
entry->setTimeInfo(parseTimes());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "String") {
parseEntryString(entry);
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Binary") {
parseEntryBinary(entry);
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "AutoType") {
parseAutoType(entry);
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "History") {
if (history) {
raiseError();
}
else {
parseEntryHistory(entry);
}
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
2010-08-13 12:08:06 -04:00
return entry;
2010-08-07 09:10:44 -04:00
}
void KeePass2XmlReader::parseEntryString(Entry *entry)
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "String");
QString key;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Key") {
key = readString();
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Value") {
QXmlStreamAttributes attr = m_xml.attributes();
QString value = readString();
bool isProtected = attr.hasAttribute("Protected") && (attr.value("Protected") == "True");
if (isProtected && !value.isEmpty()) {
if (m_randomStream) {
value = m_randomStream->process(QByteArray::fromBase64(value.toAscii()));
}
else {
raiseError();
}
}
entry->addAttribute(key, value, isProtected);
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseEntryBinary(Entry *entry)
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Binary");
QString key;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Key") {
key = readString();
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Value") {
QByteArray value = readBinary();
QXmlStreamAttributes attr = m_xml.attributes();
bool isProtected = attr.hasAttribute("Protected") && (attr.value("Protected") == "True");
if (isProtected && !value.isEmpty()) {
m_randomStream->processInPlace(value);
}
entry->addAttachment(key, value, isProtected);
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseAutoType(Entry* entry)
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "AutoType");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Enabled") {
entry->setAutoTypeEnabled(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "DataTransferObfuscation") {
entry->setAutoTypeObfuscation(readNumber());
}
else if (m_xml.name() == "DefaultSequence") {
entry->setDefaultAutoTypeSequence(readString());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Association") {
parseAutoTypeAssoc(entry);
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseAutoTypeAssoc(Entry *entry)
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Association");
AutoTypeAssociation assoc;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Window") {
assoc.window = readString();
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "KeystrokeSequence") {
assoc.sequence = readString();
entry->addAutoTypeAssociation(assoc);
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
void KeePass2XmlReader::parseEntryHistory(Entry* entry)
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "History");
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "Entry") {
Entry* historyItem = parseEntry(true);
entry->addHistoryItem(historyItem);
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
}
TimeInfo KeePass2XmlReader::parseTimes()
2010-08-07 09:10:44 -04:00
{
Q_ASSERT(m_xml.isStartElement() && m_xml.name() == "Times");
TimeInfo timeInfo;
while (!m_xml.error() && m_xml.readNextStartElement()) {
2010-08-07 09:10:44 -04:00
if (m_xml.name() == "LastModificationTime") {
timeInfo.setLastModificationTime(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "CreationTime") {
timeInfo.setCreationTime(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "LastAccessTime") {
timeInfo.setLastAccessTime(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "ExpiryTime") {
timeInfo.setExpiryTime(readDateTime());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "Expires") {
timeInfo.setExpires(readBool());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "UsageCount") {
timeInfo.setUsageCount(readNumber());
2010-08-07 09:10:44 -04:00
}
else if (m_xml.name() == "LocationChanged") {
timeInfo.setLocationChanged(readDateTime());
2010-08-07 09:10:44 -04:00
}
else {
2010-08-13 12:08:06 -04:00
skipCurrentElement();
2010-08-07 09:10:44 -04:00
}
}
return timeInfo;
2010-08-07 09:10:44 -04:00
}
QString KeePass2XmlReader::readString()
2010-08-07 09:10:44 -04:00
{
return m_xml.readElementText();
}
bool KeePass2XmlReader::readBool()
2010-08-07 09:10:44 -04:00
{
QString str = readString();
if (str.compare("True", Qt::CaseInsensitive) == 0) {
2010-08-07 09:10:44 -04:00
return true;
}
else if (str.compare("False", Qt::CaseInsensitive) == 0) {
2010-08-07 09:10:44 -04:00
return false;
}
else {
raiseError();
2010-08-13 12:08:06 -04:00
return false;
2010-08-07 09:10:44 -04:00
}
}
QDateTime KeePass2XmlReader::readDateTime()
2010-08-07 09:10:44 -04:00
{
QString str = readString();
QDateTime dt = QDateTime::fromString(str, Qt::ISODate);
if (!dt.isValid()) {
raiseError();
2010-08-07 09:10:44 -04:00
}
return dt;
}
QColor KeePass2XmlReader::readColor()
2010-08-07 09:10:44 -04:00
{
QString colorStr = readString();
2010-08-13 12:08:06 -04:00
if (colorStr.isEmpty()) {
return QColor();
}
if (colorStr.length() != 7 || colorStr[0] != '#') {
raiseError();
return QColor();
}
QColor color;
for (int i=0; i<= 2; i++) {
QString rgbPartStr = colorStr.mid(1 + 2*i, 2);
bool ok;
2010-08-13 12:08:06 -04:00
int rgbPart = rgbPartStr.toInt(&ok, 16);
if (!ok || rgbPart > 255) {
raiseError();
return QColor();
}
if (i == 0) {
color.setRed(rgbPart);
}
else if (i == 1) {
color.setGreen(rgbPart);
}
else {
color.setBlue(rgbPart);
}
}
return color;
}
int KeePass2XmlReader::readNumber()
{
bool ok;
int result = readString().toInt(&ok);
if (!ok) {
raiseError();
}
return result;
2010-08-07 09:10:44 -04:00
}
Uuid KeePass2XmlReader::readUuid()
2010-08-07 09:10:44 -04:00
{
QByteArray uuidBin = readBinary();
2010-09-05 05:46:36 -04:00
if (uuidBin.length() != Uuid::LENGTH) {
raiseError();
return Uuid();
}
else {
2010-08-13 12:08:06 -04:00
return Uuid(uuidBin);
}
2010-08-07 09:10:44 -04:00
}
QByteArray KeePass2XmlReader::readBinary()
2010-08-07 09:10:44 -04:00
{
return QByteArray::fromBase64(readString().toAscii());
}
Group* KeePass2XmlReader::getGroup(const Uuid& uuid)
{
2010-08-13 12:08:06 -04:00
if (uuid.isNull()) {
return 0;
}
Q_FOREACH (Group* group, m_groups) {
if (group->uuid() == uuid) {
return group;
}
}
Group* group = new Group();
group->setUuid(uuid);
group->setParent(m_tmpParent);
m_groups << group;
return group;
}
Entry* KeePass2XmlReader::getEntry(const Uuid& uuid)
{
2010-08-13 12:08:06 -04:00
if (uuid.isNull()) {
return 0;
}
Q_FOREACH (Entry* entry, m_entries) {
if (entry->uuid() == uuid) {
return entry;
}
}
Entry* entry = new Entry();
entry->setUuid(uuid);
entry->setGroup(m_tmpParent);
m_entries << entry;
return entry;
}
void KeePass2XmlReader::raiseError()
{
m_xml.raiseError(tr("Invalid database file"));
2010-08-07 09:10:44 -04:00
}
2010-08-13 12:08:06 -04:00
void KeePass2XmlReader::skipCurrentElement()
2010-08-13 12:08:06 -04:00
{
2010-09-22 18:21:36 -04:00
qWarning("KeePass2XmlReader::skipCurrentElement: skip element \"%s\"", qPrintable(m_xml.name().toString()));
2010-08-13 12:08:06 -04:00
m_xml.skipCurrentElement();
}