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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEEPASSX_DATABASE_H
|
|
|
|
#define KEEPASSX_DATABASE_H
|
|
|
|
|
2011-07-08 07:57:02 -04:00
|
|
|
#include <QtCore/QDateTime>
|
2010-08-07 09:10:44 -04:00
|
|
|
#include <QtCore/QHash>
|
|
|
|
|
2011-07-08 07:57:02 -04:00
|
|
|
#include "core/Uuid.h"
|
2011-06-29 10:39:39 -04:00
|
|
|
#include "keys/CompositeKey.h"
|
|
|
|
|
2011-07-08 07:57:02 -04:00
|
|
|
class Entry;
|
|
|
|
class Group;
|
2010-08-07 09:10:44 -04:00
|
|
|
class Metadata;
|
|
|
|
|
2010-08-25 07:52:59 -04:00
|
|
|
struct DeletedObject
|
|
|
|
{
|
|
|
|
Uuid uuid;
|
|
|
|
QDateTime deletionTime;
|
|
|
|
};
|
|
|
|
|
2012-04-21 12:39:09 -04:00
|
|
|
Q_DECLARE_TYPEINFO(DeletedObject, Q_MOVABLE_TYPE);
|
|
|
|
|
2010-08-12 15:38:59 -04:00
|
|
|
class Database : public QObject
|
2010-08-07 09:10:44 -04:00
|
|
|
{
|
2010-08-12 15:38:59 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
public:
|
2010-09-25 06:41:00 -04:00
|
|
|
enum CompressionAlgorithm
|
|
|
|
{
|
|
|
|
CompressionNone = 0,
|
|
|
|
CompressionGZip = 1
|
|
|
|
};
|
|
|
|
static const quint32 CompressionAlgorithmMax = CompressionGZip;
|
|
|
|
|
2010-08-13 12:08:06 -04:00
|
|
|
Database();
|
2010-08-07 09:10:44 -04:00
|
|
|
Group* rootGroup();
|
2010-08-15 09:03:47 -04:00
|
|
|
const Group* rootGroup() const;
|
2011-07-08 07:57:02 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets group as the root group and takes ownership of it.
|
2011-07-09 15:54:01 -04:00
|
|
|
* Warning: Be careful when calling this method as it doesn't
|
|
|
|
* emit any notifications so e.g. models aren't updated.
|
|
|
|
* The caller is responsible for cleaning up the pervious
|
|
|
|
root group.
|
2011-07-08 07:57:02 -04:00
|
|
|
*/
|
2010-08-12 15:38:59 -04:00
|
|
|
void setRootGroup(Group* group);
|
2011-07-08 07:57:02 -04:00
|
|
|
|
2010-08-12 15:38:59 -04:00
|
|
|
Metadata* metadata();
|
2010-09-19 15:22:24 -04:00
|
|
|
const Metadata* metadata() const;
|
2010-08-12 15:38:59 -04:00
|
|
|
Entry* resolveEntry(const Uuid& uuid);
|
|
|
|
Group* resolveGroup(const Uuid& uuid);
|
2010-08-25 07:52:59 -04:00
|
|
|
QList<DeletedObject> deletedObjects();
|
|
|
|
void addDeletedObject(const DeletedObject& delObj);
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2010-09-25 06:41:00 -04:00
|
|
|
Uuid cipher() const;
|
|
|
|
Database::CompressionAlgorithm compressionAlgo() const;
|
|
|
|
QByteArray transformSeed() const;
|
|
|
|
quint64 transformRounds() const;
|
|
|
|
QByteArray transformedMasterKey() const;
|
|
|
|
|
|
|
|
void setCipher(const Uuid& cipher);
|
|
|
|
void setCompressionAlgo(Database::CompressionAlgorithm algo);
|
|
|
|
void setTransformRounds(quint64 rounds);
|
2012-04-11 09:57:11 -04:00
|
|
|
void setKey(const CompositeKey& key, const QByteArray& transformSeed, bool updateChangedTime = true);
|
2011-07-08 07:57:02 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the database key and generates a random transform seed.
|
|
|
|
*/
|
2011-06-29 10:39:39 -04:00
|
|
|
void setKey(const CompositeKey& key);
|
2012-04-19 10:20:20 -04:00
|
|
|
void updateKey(quint64 rounds);
|
2012-04-16 15:03:35 -04:00
|
|
|
bool hasKey();
|
2012-04-18 15:59:00 -04:00
|
|
|
void recycleEntry(Entry* entry);
|
2012-04-21 13:06:28 -04:00
|
|
|
void recycleGroup(Group* group);
|
2010-09-25 06:41:00 -04:00
|
|
|
|
2010-08-15 09:03:47 -04:00
|
|
|
Q_SIGNALS:
|
2010-08-23 15:30:20 -04:00
|
|
|
void groupDataChanged(Group* group);
|
|
|
|
void groupAboutToAdd(Group* group, int index);
|
2010-08-18 04:27:40 -04:00
|
|
|
void groupAdded();
|
2010-08-23 15:30:20 -04:00
|
|
|
void groupAboutToRemove(Group* group);
|
2010-08-18 04:27:40 -04:00
|
|
|
void groupRemoved();
|
2012-04-11 07:52:12 -04:00
|
|
|
void modified();
|
2010-08-15 09:03:47 -04:00
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
private:
|
2010-08-12 15:38:59 -04:00
|
|
|
Entry* recFindEntry(const Uuid& uuid, Group* group);
|
|
|
|
Group* recFindGroup(const Uuid& uuid, Group* group);
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2012-04-21 13:06:28 -04:00
|
|
|
void createRecycleBin();
|
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
Metadata* m_metadata;
|
|
|
|
Group* m_rootGroup;
|
2010-08-25 07:52:59 -04:00
|
|
|
QList<DeletedObject> m_deletedObjects;
|
2010-09-25 06:41:00 -04:00
|
|
|
|
|
|
|
Uuid m_cipher;
|
|
|
|
CompressionAlgorithm m_compressionAlgo;
|
|
|
|
QByteArray m_transformSeed;
|
|
|
|
quint64 m_transformRounds;
|
|
|
|
QByteArray m_transformedMasterKey;
|
2012-04-16 15:03:35 -04:00
|
|
|
|
2012-04-19 10:20:20 -04:00
|
|
|
CompositeKey m_key;
|
|
|
|
|
2012-04-16 15:03:35 -04:00
|
|
|
bool m_hasKey;
|
2010-08-07 09:10:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_DATABASE_H
|