1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#include "httpconnectionmonitor.h"
#include "http.h"
#include "exceptions.h"
#include <sys/stat.h>
HttpConnectionMonitor::HttpConnectionMonitor()
{
}
HttpConnectionMonitor::~HttpConnectionMonitor()
{
}
bool HttpConnectionMonitor::onNewConnection( Connection *pCon, int nPort )
{
printf("Got connection on port %d\n", nPort );
try
{
pCon->readInput( 60, 0 );
printf("#######################\n%s\n#######################\n", pCon->getInput() );
Http hp( pCon );
while( hp.parseRequest() == false );
printf("Done parsing.\n\n");
if( hp.getRequestType() == Http::reqGet )
{
printf("\"\"\"%s\"\"\"\n", hp.getRequestURI() );
if( !strcmp( hp.getRequestURI(), "/" ) )
{
std::string content("<html><head><title>Server Test</test></head><body>This is a test of a new system where all the pages will be more or less dynamic...<br>If you want to try to login, you can do that here:<br><form method=\"post\" action=\"showvars\" enctype=\"multipart/form-data\">Name: <input type=\"text\" name=\"name\"><br>Password: <input type=\"password\" name=\"pass\"><br><input type=\"submit\" name=\"action\" value=\"login\"></form></body></html>");
hp.buildResponse();
hp.setResponseContent(
"text/html",
content.c_str(),
content.size()
);
hp.sendResponse();
}
else
{
std::string content("<html><head><title>URL Not Found</test></head><body>There is no content mapped to the URL you requested. Please try another one.</body></html>");
hp.buildResponse( 404, "File not found.");
hp.setResponseContent(
"text/html",
content.c_str(),
content.size()
);
hp.sendResponse();
}
}
else
{
printf("Non get: %s\n", hp.getRequestTypeStr() );
pCon->appendOutput("HTTP/1.1 100 Continue\r\n\r\n");
}
pCon->writeOutput();
//for( int j = 0; j < 50; j++ )
{
pCon->readInput( 1, 0 );
//printf("Size so far: %d\n", pCon->getInputAmnt() );
}
if( pCon->hasInput() )
{
std::string s( pCon->getInput(), pCon->getInputAmnt() );
pCon->printInputDebug();
//printf("Reamining data\n==============\n%s\n==============\n",
// s.c_str() );
}
pCon->disconnect();
}
catch( ConnectionException &e )
{
printf("Connection: %s\n", e.what() );
}
return true;
}
bool HttpConnectionMonitor::onClosedConnection( Connection *pCon )
{
return true;
}
|