// // FormServer.cpp // // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #include "Poco/Net/HTTPServer.h" #include "Poco/Net/HTTPRequestHandler.h" #include "Poco/Net/HTTPRequestHandlerFactory.h" #include "Poco/Net/HTTPServerRequest.h" #include "Poco/Net/HTTPServerResponse.h" #include "Poco/Net/HTMLForm.h" #include "Poco/Net/PartHandler.h" #include "Poco/CountingStream.h" #include "Poco/NullStream.h" #include "Poco/StreamCopier.h" #include "Poco/ClassLibrary.h" using Poco::Net::HTTPRequestHandler; using Poco::Net::HTTPRequestHandlerFactory; using Poco::Net::HTTPServerRequest; using Poco::Net::HTTPServerResponse; using Poco::Net::MessageHeader; using Poco::Net::HTMLForm; using Poco::Net::NameValueCollection; using Poco::CountingInputStream; using Poco::NullOutputStream; using Poco::StreamCopier; class MyPartHandler: public Poco::Net::PartHandler { public: MyPartHandler(): _length(0) { } void handlePart(const MessageHeader& header, std::istream& stream) { _type = header.get("Content-Type", "(unspecified)"); if (header.has("Content-Disposition")) { std::string disp; NameValueCollection params; MessageHeader::splitParameters(header["Content-Disposition"], disp, params); _name = params.get("name", "(unnamed)"); _fileName = params.get("filename", "(unnamed)"); } CountingInputStream istr(stream); NullOutputStream ostr; StreamCopier::copyStream(istr, ostr); _length = istr.chars(); } int length() const { return _length; } const std::string& name() const { return _name; } const std::string& fileName() const { return _fileName; } const std::string& contentType() const { return _type; } private: int _length; std::string _type; std::string _name; std::string _fileName; }; class FormRequestHandler: public HTTPRequestHandler /// Return a HTML document with the current date and time. { public: FormRequestHandler() { } void handleRequest(HTTPServerRequest& request, HTTPServerResponse& response) { MyPartHandler partHandler; HTMLForm form(request, request.stream(), partHandler); response.setChunkedTransferEncoding(true); response.setContentType("text/html"); std::ostream& ostr = response.send(); ostr << "\n" "\n" "POCO Form Server Sample\n" "\n" "\n" "

POCO Form Server Sample

\n" "

GET Form

\n" "
\n" "\n" "\n" "
\n" "

POST Form

\n" "
\n" "\n" "\n" "
\n" "

File Upload

\n" "
\n" " \n" "\n" "
\n"; ostr << "

Request

\n"; ostr << "Method: " << request.getMethod() << "
\n"; ostr << "URI: " << request.getURI() << "
\n"; NameValueCollection::ConstIterator it = request.begin(); NameValueCollection::ConstIterator end = request.end(); for (; it != end; ++it) { ostr << it->first << ": " << it->second << "
\n"; } ostr << "

"; if (!form.empty()) { ostr << "

Form

\n"; it = form.begin(); end = form.end(); for (; it != end; ++it) { ostr << it->first << ": " << it->second << "
\n"; } ostr << "

"; } if (!partHandler.name().empty()) { ostr << "

Upload

\n"; ostr << "Name: " << partHandler.name() << "
\n"; ostr << "File Name: " << partHandler.fileName() << "
\n"; ostr << "Type: " << partHandler.contentType() << "
\n"; ostr << "Size: " << partHandler.length() << "
\n"; ostr << "

"; } ostr << "\n"; } }; class FormRequestHandlerFactory: public HTTPRequestHandlerFactory { public: FormRequestHandlerFactory() { } HTTPRequestHandler* createRequestHandler(const HTTPServerRequest& request) { return new FormRequestHandler; } }; POCO_BEGIN_MANIFEST(HTTPRequestHandlerFactory) POCO_EXPORT_CLASS(FormRequestHandlerFactory) POCO_END_MANIFEST