aboutsummaryrefslogtreecommitdiff
path: root/src/test/httpsrv/httpconnectionmonitor.cpp
blob: 4eb68177cbf0f6809c735b930cb8cde1f02617f9 (plain)
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
#include "httpconnectionmonitor.h"
#include "http.h"
#include <sys/stat.h>

HttpConnectionMonitor::HttpConnectionMonitor()
{
}

HttpConnectionMonitor::~HttpConnectionMonitor()
{
}

bool HttpConnectionMonitor::onNewConnection( Connection *pCon )
{
	Http hp( pCon );

	pCon->readInput( 60, 0 );
	printf("#######################\n%s\n#######################\n", pCon->getInput() );

	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->writeOutput();
	
	if( pCon->hasInput() )
	{
		std::string s( pCon->getInput(), pCon->getInputAmnt() );
		
		printf("Reamining data\n==============\n%s\n==============\n",
			s.c_str() );
	}

	pCon->disconnect();

	return true;
}

bool HttpConnectionMonitor::onClosedConnection( Connection *pCon )
{
	return true;
}