/* * Copyright (C) 2013 Francois Ferrand * Copyright (C) 2017 KeePassXC Team * * 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 . */ #ifndef SERVER_H #define SERVER_H #include #include namespace qhttp { namespace server { class QHttpServer; class QHttpRequest; class QHttpResponse; } } namespace KeepassHttpProtocol { using namespace qhttp::server; class Request; class Response; class Entry; class Server : public QObject { Q_OBJECT public: explicit Server(QObject *parent = 0); 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 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 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 slots: void start(); void stop(); private slots: void onNewRequest(QHttpRequest* request, QHttpResponse* response); void handleRequest(const QByteArray& data, 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); bool m_started; QHttpServer* m_server; }; } /*namespace KeepassHttpProtocol*/ #endif // SERVER_H