1 |
// Smersh |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#include "Smersh.hpp" |
8 |
#include "Matcher.hpp" |
9 |
#include "Person.hpp" |
10 |
#include "Daemon.hpp" |
11 |
#include "Redirector.hpp" |
12 |
|
13 |
string program; |
14 |
bool debug(false); |
15 |
|
16 |
int main(int argc, char* argv[]) |
17 |
{ |
18 |
program = argv[0]; |
19 |
|
20 |
int port(8080); |
21 |
bool daemon(false), redirector(false); |
22 |
string redirect; |
23 |
|
24 |
for (int index(1); index < argc; ++index) |
25 |
{ |
26 |
string arg(argv[index]); |
27 |
Matcher matcher; |
28 |
|
29 |
if (arg == "-D") |
30 |
{ |
31 |
if (!debug) debug = true; |
32 |
} |
33 |
else if (arg == "-daemon") |
34 |
{ |
35 |
if (!daemon) daemon = true; |
36 |
} |
37 |
else if (arg == matcher("^-redirector=(.+)$")) |
38 |
{ |
39 |
if (!redirector) redirector = true; |
40 |
|
41 |
redirect = matcher[1]; |
42 |
} |
43 |
else if (arg == matcher("^-port=([0-9]+)$")) |
44 |
{ |
45 |
port = lexical_cast<int>(matcher[1]); |
46 |
} |
47 |
} |
48 |
|
49 |
if (daemon) |
50 |
{ |
51 |
Daemon daemon(port); |
52 |
} |
53 |
else if (redirector) |
54 |
{ |
55 |
Redirector redirector(port, redirect); |
56 |
} |
57 |
else |
58 |
{ |
59 |
Smersh smersh; |
60 |
} |
61 |
|
62 |
return 0; |
63 |
} |
64 |
|
65 |
Smersh::Smersh(istream& sin, ostream& sout) |
66 |
{ |
67 |
parse(sin); |
68 |
smersh(sout); |
69 |
} |
70 |
|
71 |
void Smersh::parse(istream& sin) |
72 |
{ |
73 |
string query(sgetenv("QUERY_STRING")); |
74 |
|
75 |
if (sgetenv("REQUEST_METHOD") == "POST") getline(sin, query); |
76 |
if (query == "") return; |
77 |
|
78 |
istringstream input(query); |
79 |
|
80 |
do |
81 |
{ |
82 |
string name, value; |
83 |
|
84 |
getline(input, name, '='); |
85 |
getline(input, value, '&'); |
86 |
|
87 |
cgi.insert(pair<string, string>(name, value)); |
88 |
} |
89 |
while (input.good()); |
90 |
} |
91 |
|
92 |
void Smersh::smersh(ostream& sout) |
93 |
{ |
94 |
sout << "Content-Type: text/html\n\n"; |
95 |
|
96 |
vector<Person> people(1); |
97 |
|
98 |
for (multimap<string, string>::iterator itor(cgi.lower_bound("sn")); itor |
99 |
!= cgi.upper_bound("sn"); ++itor) |
100 |
{ |
101 |
string sn(itor->second); |
102 |
|
103 |
for (string::size_type index(0); index < sn.length(); ++index) |
104 |
{ |
105 |
if (sn[index] == '%' && index + 2 < sn.length()) |
106 |
{ |
107 |
istringstream code(sn.substr(index + 1, 2)); |
108 |
unsigned short character; |
109 |
|
110 |
code.setf(ios_base::hex, ios_base::basefield); |
111 |
|
112 |
code >> character; |
113 |
|
114 |
sn.replace(index, 3, 1, character); |
115 |
} |
116 |
|
117 |
while (!isalnum(sn[index]) && index < sn.length()) |
118 |
{ |
119 |
sn.erase(index, 1); |
120 |
} |
121 |
} |
122 |
|
123 |
Person person(sn); |
124 |
|
125 |
people.push_back(person); |
126 |
|
127 |
if (person.isMultiple()) |
128 |
{ |
129 |
people.insert(people.end(), person.beginMultiple(), |
130 |
person.endMultiple()); |
131 |
person.clearMultiple(); |
132 |
} |
133 |
} |
134 |
|
135 |
if (people.size() > 1) |
136 |
{ |
137 |
people.erase(people.begin()); |
138 |
|
139 |
sort(people.begin(), people.end()); |
140 |
|
141 |
people.erase(unique(people.begin(), people.end()), people.end()); |
142 |
} |
143 |
|
144 |
sout << "<html><head><title>Hello, " << flush; |
145 |
|
146 |
output(sout, people); |
147 |
|
148 |
sout << "!</title></head><body><p style=\"font-variant: small-caps\"><stro" |
149 |
<< "ng><font face=\"Comic Sans MS\" size=\"4\">Hello, " << flush; |
150 |
|
151 |
output(sout, people); |
152 |
|
153 |
sout << "!</font></strong></p></body></html>\n"; |
154 |
} |
155 |
|
156 |
void Smersh::output(ostream& sout, const vector<Person>& people) |
157 |
{ |
158 |
for (vector<Person>::const_iterator person(people.begin()); person != |
159 |
people.end(); ++person) |
160 |
{ |
161 |
sout << *person; |
162 |
|
163 |
if (person + 2 == people.end()) |
164 |
{ |
165 |
sout << (people.size() > 2 ? "," : "") << " and/or "; |
166 |
} |
167 |
else if (person + 1 != people.end()) |
168 |
{ |
169 |
sout << ", "; |
170 |
} |
171 |
|
172 |
sout << flush; |
173 |
} |
174 |
} |