mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Support KeyPassHttp protocol.
Allows using passIfox (firefox) and Chromeipass (chrome).
This commit is contained in:
parent
20f3f23576
commit
ea992bc3e6
57 changed files with 17687 additions and 6 deletions
91
src/http/Server.h
Normal file
91
src/http/Server.h
Normal file
|
@ -0,0 +1,91 @@
|
|||
/**
|
||||
***************************************************************************
|
||||
* @file Server.h
|
||||
*
|
||||
* @brief
|
||||
*
|
||||
* Copyright (C) 2013
|
||||
*
|
||||
* @author Francois Ferrand
|
||||
* @date 4/2013
|
||||
***************************************************************************
|
||||
*/
|
||||
|
||||
#ifndef SERVER_H
|
||||
#define SERVER_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QList>
|
||||
|
||||
class QHttpServer;
|
||||
class QHttpRequest;
|
||||
class QHttpResponse;
|
||||
|
||||
namespace KeepassHttpProtocol {
|
||||
|
||||
class Request;
|
||||
class Response;
|
||||
class Entry;
|
||||
|
||||
class RequestHandler: public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RequestHandler(QHttpRequest *request, QHttpResponse *response);
|
||||
~RequestHandler();
|
||||
|
||||
private Q_SLOTS:
|
||||
void onEnd();
|
||||
|
||||
Q_SIGNALS:
|
||||
void requestComplete(QHttpRequest *request, QHttpResponse *response);
|
||||
|
||||
private:
|
||||
QHttpRequest * m_request;
|
||||
QHttpResponse *m_response;
|
||||
};
|
||||
|
||||
class Server : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit Server(QObject *parent = 0);
|
||||
|
||||
//TODO: use QByteArray?
|
||||
virtual bool isDatabaseOpened() const = 0;
|
||||
virtual bool openDatabase() = 0;
|
||||
virtual QString getDatabaseRootUuid() = 0;
|
||||
virtual QString getDatabaseRecycleBinUuid() = 0;
|
||||
virtual QString getKey(const QString &id) = 0;
|
||||
virtual QString storeKey(const QString &key) = 0;
|
||||
virtual QList<Entry> findMatchingEntries(const QString &id, const QString &url, const QString & submitUrl, const QString & realm) = 0;
|
||||
virtual int countMatchingEntries(const QString &id, const QString &url, const QString & submitUrl, const QString & realm) = 0;
|
||||
virtual QList<Entry> searchAllEntries(const QString &id) = 0;
|
||||
virtual void addEntry(const QString &id, const QString &login, const QString &password, const QString &url, const QString &submitUrl, const QString &realm) = 0;
|
||||
virtual void updateEntry(const QString &id, const QString &uuid, const QString &login, const QString &password, const QString &url) = 0;
|
||||
virtual QString generatePassword() = 0;
|
||||
|
||||
public Q_SLOTS:
|
||||
void start();
|
||||
void stop();
|
||||
|
||||
private Q_SLOTS:
|
||||
void handleRequest(QHttpRequest * request, QHttpResponse* response);
|
||||
void handleRequestComplete(QHttpRequest * request, QHttpResponse* response);
|
||||
|
||||
private:
|
||||
void testAssociate(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
void associate(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
void getLogins(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
void getLoginsCount(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
void getAllLogins(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
void setLogin(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
void generatePassword(const KeepassHttpProtocol::Request &r, KeepassHttpProtocol::Response *protocolResp);
|
||||
|
||||
QHttpServer * const m_httpServer;
|
||||
bool m_started;
|
||||
};
|
||||
|
||||
} /*namespace KeepassHttpProtocol*/
|
||||
|
||||
#endif // SERVER_H
|
Loading…
Add table
Add a link
Reference in a new issue