forked from pi1ot/webapplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
waCgi.cpp
392 lines (330 loc) · 10.4 KB
/
waCgi.cpp
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/// \file waCgi.cpp
/// Cgi,Cookie类实现文件
#include <cstdlib>
#include <climits>
#include <iostream>
#include <vector>
#include "waString.h"
#include "waEncode.h"
#include "waCgi.h"
using namespace std;
/// Web Application Library namaspace
namespace webapp {
////////////////////////////////////////////////////////////////////////////////
/// \ingroup waCgi
/// \fn void http_head()
/// 输出HTML Content-Type header,自动避免重复输出
void http_head() {
static bool WEBAPP_ALREADY_HTTPHEAD = false;
if ( !WEBAPP_ALREADY_HTTPHEAD ) {
cout << "Content-Type: text/html\n" << endl;
WEBAPP_ALREADY_HTTPHEAD = true;
}
}
/// \ingroup waCgi
/// \fn string get_env( const string &envname )
/// 取得环境变量
/// \param envname 环境变量名
/// \return 成功返回环境变量值,否则返回空字符串
string get_env( const string &envname ) {
const char *env = envname.c_str();
char *val = getenv( env );
if ( val != NULL )
return string( val );
else
return string( "" );
}
////////////////////////////////////////////////////////////////////////////
// CGI
/// 构造函数
/// 读取并分析CGI内容
/// \param formdata_maxsize 参数是"multipart/form-data"方式POST时的最大FORM上传数据大小,
/// 超过部分被截断不处理,单位为byte,默认为0即不限制数据大小
Cgi::Cgi( const long formdata_maxsize ) {
// get envionment variable REQUEST_METHOD
_method = get_env( "REQUEST_METHOD" );
_method.upper();
// set trunc flag
_trunc = false;
// method = GET
if ( _method == "GET" ) {
// read and parse QUERY_STRING
this->parse_urlencoded( get_env("QUERY_STRING") );
}
// method = POST
else if ( _method == "POST" ) {
// get envionment variable CONTENT_TYPE
string content_type = get_env( "CONTENT_TYPE" );
char c;
string buf;
if ( formdata_maxsize > 0 )
buf.reserve( formdata_maxsize );
else
buf.reserve( 256 );
if ( content_type.find("application/x-www-form-urlencoded") != content_type.npos ) {
// read stdin
int content_length = atoi( (get_env("CONTENT_LENGTH")).c_str() );
for ( int i=0; i<content_length; ++i ) {
cin >> c;
buf += c;
}
// parse stdin
this->parse_urlencoded( buf );
} else if ( content_type.find("multipart/form-data") != content_type.npos ) {
// read stdin
cin.unsetf( ios::skipws );
if ( formdata_maxsize > 0 ) {
// max size set
long size = 0;
while ( cin ) {
cin >> c;
buf += c;
++size;
if ( size > formdata_maxsize ) {
cin.ignore( LONG_MAX );
_trunc = true;
break;
}
}
} else {
// no size limit
while ( cin ) {
cin >> c;
buf += c;
}
}
// parse stdin
this->parse_multipart( content_type, buf );
}
}
}
/// 取得CGI参数
/// \param name CGI参数名,大小写敏感
/// \return 成功返回CGI参数值,否则返回空字符串,多个同名CGI参数值之间分隔符为半角空格' '
string Cgi::get_cgi( const string &name ) {
if ( name == "" )
return string( "" );
if ( _method=="GET" || _method=="POST" ) {
if ( _cgi.find(name) != _cgi.end() )
return _cgi[name];
else
return string( "" );
}
else if ( _method != "OPTIONS" && _method != "HEAD" && _method != "PUT" &&
_method != "DELETE" && _method != "TRACE" ) {
// 终端测试模式,用户输入 cgi 参数
string cgival;
cout << "Input value of CGI parameter \"" << name << "\", type _SPACE_ if no value: ";
cin >> cgival;
if ( cgival != "_SPACE_" )
return cgival;
else
return string( "" );
}
else
return string( "" );
}
/// 保存CGI参数
/// \param name CGI参数名,大小写敏感
/// \param value CGI参数值
void Cgi::add_cgi( const string &name, const string &value ) {
if ( _cgi[name] == "" )
_cgi[name] = value;
else
_cgi[name] += ( " " + value );
}
/// 分析urlencoded类型内容
/// \param buf 要分析的内容
void Cgi::parse_urlencoded( const string &buf ) {
/*****************************
name1=value1&name2=value2&...
*****************************/
String buffer = buf;
vector<String> pairslist = buffer.split( "&" );
for ( size_t i=0; i<pairslist.size(); ++i ) {
String name = pairslist[i].substr( 0, pairslist[i].find("=") );
String value = pairslist[i].substr( pairslist[i].find("=")+1 );
name.replace_all( "+", " " );
name = uri_decode( name );
value.replace_all( "+", " " );
value = uri_decode( value );
add_cgi( name, value );
}
}
/// 分析multipart类型内容,
/// HTML FORM 参数为 enctype=multipart/form-data
/// \param content_type Content-Type描述字符串
/// \param buf 要分析的内容
void Cgi::parse_multipart( const string &content_type, const string &buf ) {
/*******************************************************
设分隔符为{boundary},回车(0x0D)和换行符(0x0A)为<CR>
multipart/form-data, boundary={boundary}
1.文件型参数的multipart格式:
--{boundary}<CR>
Content-Disposition: form-data; name="参数名称"; filename="文件名称"<CR>
Content-Type: {Content-Type}<CR>
<CR>
文件内容
<CR>
--{boundary}<CR>
2.普通参数的multipart格式:
--{boundary}<CR>
Content-Disposition: form-data; name="参数名称"<CR>
<CR>
参数值
<CR>
--{boundary}<CR>
*******************************************************/
String buffer = buf;
size_t pos = 0;
const char cr[3] = "\x0D\x0A";
String boundary = "";
// get boundary
/*****************************************************
multipart/form-data, boundary={boundary}
*****************************************************/
if ( (pos=content_type.find("boundary=")) != content_type.npos )
boundary = ( "--" + content_type.substr(pos+9) ); // 9: strlen("boundary=")
else return; // format error
// split by boundary
vector<String> item = buffer.split( boundary );
for ( size_t i=0; i<item.size(); ++i ) {
if ( item[i].length() > 0 ) {
String itembuf = item[i];
size_t nextpos = 0;
String itemname;
String itemvalue;
// split tags
String crcr = cr; crcr += cr; // <CR><CR>
String qucr = "\""; qucr += cr; // "<CR>
String qucrcr = qucr + cr; // "<CR><CR>
if ( (pos=itembuf.find("; name=\"")) != itembuf.npos ) {
size_t filename_pos = 0;
if ( (filename_pos=itembuf.find("; filename=\"")) != itembuf.npos ) {
// 文件型参数
/******************************************************
Content-Disposition: form-data; name="参数名称"; filename="文件名称"<CR>
Content-Type: {Content-Type}<CR>
<CR>
文件内容
<CR>
******************************************************/
// 分析结果
/******************************************************
参数名称 = 文件内容
参数名称_name = 文件名称
参数名称_type = {Content-Type}
******************************************************/
String filename;
String filetype;
// 参数名称
if ( filename_pos > (pos+9) ) // 9: strlen("; name=\"\"")
itemname = itembuf.substr( pos+8, filename_pos-pos-9 ); // 9->8?
if ( itemname != "" ) {
// 参数名称_name = 文件名称
if ( (nextpos=itembuf.find(qucr,filename_pos)) != itembuf.npos
&& nextpos >= (filename_pos+12) ) { // 12: strlen("; filename=\"")
filename = itembuf.substr( filename_pos+12, nextpos-filename_pos-12 );
if ( filename != "" )
add_cgi( (itemname+"_name"), filename );
}
// 参数名称_type = {Content-Type}
if ( (pos=itembuf.find("Content-Type: ",filename_pos)) != itembuf.npos
&& (nextpos=itembuf.find(crcr,pos)) != itembuf.npos
&& nextpos >= (pos+14) ) { // 14: strlen("Content-Type: ")
filetype = itembuf.substr( pos+14, nextpos-pos-14 );
if ( filetype != "" )
add_cgi( (itemname+"_type"), filetype );
}
// 参数名称 = 文件内容
if ( (pos=nextpos+4) != itembuf.npos // 4: strlen("")
&& (nextpos=itembuf.rfind(cr)) != itembuf.npos
&& nextpos >= (pos+1) ) {
itemvalue = itembuf.substr( pos, nextpos-pos );
if ( itemvalue!= "" )
add_cgi( itemname, itemvalue );
}
}
} // 文件型参数
else {
// 普通参数
/******************************************************
Content-Disposition: form-data; name="参数名称"<CR>
<CR>
参数值
<CR>
******************************************************/
// 参数名称
if ( (nextpos=itembuf.find(qucr,pos)) != itembuf.npos )
itemname = itembuf.substr( pos+8, nextpos-pos-8 ); // 8: strlen("; name=\"")
// 参数名称 = 参数值
if ( itemname != ""
&& (pos=itembuf.find(qucrcr)) != itembuf.npos
&& (nextpos=itembuf.rfind(cr)) != itembuf.npos
&& nextpos >= (pos+6) ) { // 6: strlen("\"<CR>\n")
// 5: strlen("\"<CR>") 6: strlen("\"<CR>\n")
itemvalue = itembuf.substr( pos+5, nextpos-pos-5 );
if ( itemvalue != "" )
add_cgi( itemname, itemvalue );
}
}// 普通参数
}
} // one item
} // split by boundary
}
////////////////////////////////////////////////////////////////////////////
// Cookie
/// 构造函数
/// 读取并分析Cookie环境变量
Cookie::Cookie() {
this->parse_cookie( get_env("HTTP_COOKIE") );
}
/// 取得cookie内容
/// \param name cookie参数名,大小写敏感
/// \return 成功返回cookie参数值,否则返回空字符串
string Cookie::get_cookie( const string &name ) {
if ( name!="" && _cookies.find(name)!=_cookies.end() )
return _cookies[name];
else
return string( "" );
}
/// 设置cookie内容
/// 必须在输出content-type前调用
/// \param name cookie名字
/// \param value cookie值
/// \param expires cookie有效期,GMT格式日期字符串,默认为空
/// \param path cookie路径,默认为"/"
/// \param domain cookie域,默认为""
void Cookie::set_cookie( const string &name, const string &value,
const string &expires, const string &path, const string &domain ) const
{
// Set-Cookie: name=value; expires=expires; path=path; domain=domain;
string expires_setting;
if ( expires != "" )
expires_setting = "expires=" + expires + "; ";
else
expires_setting = "";
cout << "Set-Cookie: " + name + "=" + value + "; "
<< expires_setting
<< "path=" + path + "; "
<< "domain=" + domain + ";" << endl;
}
/// 分析cookie内容
/// \param buf 要分析的内容
void Cookie::parse_cookie( const string &buf ) {
/*****************************
name1=value1; name2=value2; ...
*****************************/
String buffer = buf;
vector<String> pairslist = buffer.split( "; " );
for ( size_t i=0; i<pairslist.size(); ++i ) {
String name = pairslist[i].substr( 0, pairslist[i].find("=") );
String value = pairslist[i].substr( pairslist[i].find("=")+1 );
name.replace_all( "+", " " );
name = uri_decode( name );
value.replace_all( "+", " " );
value = uri_decode( value );
_cookies[name] = value;
}
}
} // namespace