blob: 7447a6f45a5336631afac250874a2213d663ba17 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
* Copyright (C) 2007-2011 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "bu/fastcgi.h"
#include <unistd.h>
class Cgi : public Bu::FastCgi
{
public:
Cgi() :
Bu::FastCgi::FastCgi()
{
}
Cgi( int iPort ) :
Bu::FastCgi::FastCgi( iPort )
{
}
virtual ~Cgi()
{
}
virtual int onRequest( const StrHash &hParams,
const Bu::String &sStdIn, Bu::Stream &sStdOut,
Bu::Stream &/*sStdErr*/ )
{
Bu::String sOut("Content-Type: text/html\r\n\r\n");
sOut += "<html><body><h1>Environment:</h1><ul>";
for( StrHash::const_iterator i = hParams.begin(); i; i++ )
{
sOut += "<li>" + i.getKey() + " = " +
i.getValue() + "</li>";
}
sOut += "</ul>";
char buf[2048];
sOut += "<h1>Cwd:</h1><ul><li>";
sOut += getcwd( buf, 2048 );
sOut += "</li></ul>";
sOut += "<h1>Stdin:</h1>";
sOut += Bu::String("%1 bytes<pre>").arg( sStdIn.getSize() );
Bu::String sL, sR;
for( Bu::String::const_iterator i = sStdIn.begin();
i; i++ )
{
sL += Bu::String("%1").arg(
(unsigned int)((unsigned char)*i), Bu::Fmt::hex().width(2).fill('0') );
if( *i < 27 )
sR += ". ";
else
sR += Bu::String("&#%1; ").arg(
(unsigned int)((unsigned char)*i) );
if( sL.getSize()/3 == 8 )
{
sOut += sL + " | " + sR + "\n";
sL = sR = "";
}
}
if( sL != "" )
{
while( sL.getSize()/3 < 8 )
sL += " ";
sOut += sL + " | " + sR + "\n";
}
sOut += "</pre><hr/><pre>";
sOut += sStdIn;
sOut += "</pre>";
sOut += "<form method=\"post\" enctype=\"multipart/form-data\"><textarea name=\"bob\"></textarea><br /><input type=\"file\" name=\"somefile\" /><br /><input type=\"submit\" name=\"yeah\" value=\"try it\" /></form>";
sOut += "</body></html>";
sStdOut.write( sOut );
return 0;
}
};
int main()
{
Cgi c( 8789 );
c.run();
return 0;
}
|