/* * This file was part of Clementine. * Copyright 2012, 2014, John Maguire * Copyright 2014, Krzysztof Sobiecki * Copyright 2018-2021, Jonas Kvinge * * Strawberry 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 3 of the License, or * (at your option) any later version. * * Strawberry 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 Strawberry. If not, see . * */ #ifndef LOCALREDIRECTSERVER_H #define LOCALREDIRECTSERVER_H #include #include #include #include #include #include #include class QAbstractSocket; class LocalRedirectServer : public QTcpServer { Q_OBJECT public: explicit LocalRedirectServer(QObject *parent = nullptr); ~LocalRedirectServer() override; void set_port(const int port) { port_ = port; } bool Listen(); const QUrl &url() const { return url_; } const QUrl &request_url() const { return request_url_; } const QString &error() const { return error_; } signals: void Finished(); public slots: void NewConnection(); void incomingConnection(qintptr socket_descriptor) override; void Encrypted(); void Connected(); void Disconnected(); void ReadyRead(); private: void WriteTemplate() const; QUrl ParseUrlFromRequest(const QByteArray &request) const; private: int port_; QUrl url_; QUrl request_url_; QAbstractSocket *socket_; QByteArray buffer_; QString error_; }; #endif // LOCALREDIRECTSERVER_H