mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
24 lines
734 B
C++
24 lines
734 B
C++
#include "HandlerFactory.h"
|
|
|
|
#include <Poco/Net/HTTPServerRequest.h>
|
|
#include <Server/HTTP/HTMLForm.h>
|
|
#include "Handlers.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
std::unique_ptr<HTTPRequestHandler> LibraryBridgeHandlerFactory::createRequestHandler(const HTTPServerRequest & request)
|
|
{
|
|
Poco::URI uri{request.getURI()};
|
|
LOG_DEBUG(log, "Request URI: {}", uri.toString());
|
|
|
|
if (request.getMethod() == Poco::Net::HTTPRequest::HTTP_GET)
|
|
return std::make_unique<LibraryExistsHandler>(keep_alive_timeout, getContext());
|
|
|
|
if (request.getMethod() == Poco::Net::HTTPRequest::HTTP_POST)
|
|
return std::make_unique<LibraryRequestHandler>(keep_alive_timeout, getContext());
|
|
|
|
return nullptr;
|
|
}
|
|
}
|