2013-12-10 13:03:22 +00:00
|
|
|
#ifndef HTTP_SERVER_H__
|
|
|
|
#define HTTP_SERVER_H__
|
|
|
|
|
2016-04-27 00:00:00 +00:00
|
|
|
namespace i2p {
|
|
|
|
namespace http {
|
2016-04-27 00:00:00 +00:00
|
|
|
extern const char *itoopieFavicon;
|
2014-09-16 14:28:45 +00:00
|
|
|
const size_t HTTP_CONNECTION_BUFFER_SIZE = 8192;
|
2016-04-27 00:00:00 +00:00
|
|
|
|
2015-04-04 19:44:29 +00:00
|
|
|
class HTTPConnection: public std::enable_shared_from_this<HTTPConnection>
|
2013-12-10 13:03:22 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-04-27 00:00:00 +00:00
|
|
|
HTTPConnection (std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
2015-04-04 19:44:29 +00:00
|
|
|
void Receive ();
|
|
|
|
|
2013-12-10 13:03:22 +00:00
|
|
|
private:
|
|
|
|
|
2014-07-16 16:41:40 +00:00
|
|
|
void HandleReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2016-04-27 00:00:00 +00:00
|
|
|
void Terminate (const boost::system::error_code& ecode);
|
2016-04-27 00:00:00 +00:00
|
|
|
|
2016-04-27 00:00:00 +00:00
|
|
|
void RunRequest ();
|
2016-04-27 00:00:00 +00:00
|
|
|
bool CheckAuth (const HTTPReq & req);
|
2016-04-27 00:00:00 +00:00
|
|
|
void HandleRequest (const HTTPReq & req);
|
|
|
|
void HandlePage (const HTTPReq & req, HTTPRes & res, std::stringstream& data);
|
|
|
|
void HandleCommand (const HTTPReq & req, HTTPRes & res, std::stringstream& data);
|
|
|
|
void SendReply (HTTPRes & res, std::string & content);
|
2016-04-27 00:00:00 +00:00
|
|
|
|
2016-04-27 00:00:00 +00:00
|
|
|
private:
|
2014-07-16 16:41:40 +00:00
|
|
|
|
2015-11-22 22:01:37 +00:00
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> m_Socket;
|
2014-10-21 18:28:56 +00:00
|
|
|
boost::asio::deadline_timer m_Timer;
|
2016-04-27 00:00:00 +00:00
|
|
|
char m_Buffer[HTTP_CONNECTION_BUFFER_SIZE + 1];
|
2014-09-16 00:32:01 +00:00
|
|
|
size_t m_BufferLen;
|
2016-04-27 00:00:00 +00:00
|
|
|
bool needAuth;
|
|
|
|
std::string user;
|
|
|
|
std::string pass;
|
2014-07-16 16:41:40 +00:00
|
|
|
};
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
class HTTPServer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-11-30 14:44:32 +00:00
|
|
|
HTTPServer (const std::string& address, int port);
|
2016-04-27 00:00:00 +00:00
|
|
|
~HTTPServer ();
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-07-16 16:41:40 +00:00
|
|
|
void Run ();
|
2013-12-10 13:03:22 +00:00
|
|
|
void Accept ();
|
2015-11-22 22:01:37 +00:00
|
|
|
void HandleAccept(const boost::system::error_code& ecode,
|
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> newSocket);
|
2016-04-27 00:00:00 +00:00
|
|
|
void CreateConnection(std::shared_ptr<boost::asio::ip::tcp::socket> newSocket);
|
2014-08-04 20:30:37 +00:00
|
|
|
|
2013-12-10 13:03:22 +00:00
|
|
|
private:
|
|
|
|
|
2015-11-22 22:01:37 +00:00
|
|
|
std::unique_ptr<std::thread> m_Thread;
|
2013-12-10 13:03:22 +00:00
|
|
|
boost::asio::io_service m_Service;
|
|
|
|
boost::asio::io_service::work m_Work;
|
|
|
|
boost::asio::ip::tcp::acceptor m_Acceptor;
|
2014-07-16 16:41:40 +00:00
|
|
|
};
|
2016-04-27 00:00:00 +00:00
|
|
|
} // http
|
|
|
|
} // i2p
|
2013-12-10 13:03:22 +00:00
|
|
|
|
2016-04-27 00:00:00 +00:00
|
|
|
#endif /* HTTP_SERVER_H__ */
|