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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
|
/*
Copyright (C) 2000-2007 SKYRIX Software AG
Copyright (C) 2007 Helge Hess
This file is part of SOPE.
SOPE is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with SOPE; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#include <NGObjWeb/WORequest.h>
#include <NGObjWeb/WOSession.h>
#include <NGObjWeb/WOContext.h>
#include <NGObjWeb/WOApplication.h>
#include <NGObjWeb/WOSession.h>
#include <NGObjWeb/WOCookie.h>
#include <NGHttp/NGHttp.h>
#include "NGHttp+WO.h"
#include <NGExtensions/NSString+Ext.h>
#include <time.h>
#include "common.h"
#if APPLE_FOUNDATION_LIBRARY || NeXT_Foundation_LIBRARY
@interface NSObject(Miss)
- (id)notImplemented:(SEL)cmd;
@end
#endif
NGObjWeb_DECLARE NSString *WORequestValueData = @"wodata";
NGObjWeb_DECLARE NSString *WORequestValueInstance = @"woinst";
NGObjWeb_DECLARE NSString *WORequestValuePageName = @"wopage";
NGObjWeb_DECLARE NSString *WORequestValueContextID = @"_c";
NGObjWeb_DECLARE NSString *WORequestValueSenderID = @"_i";
NGObjWeb_DECLARE NSString *WORequestValueSessionID = @"wosid";
NGObjWeb_DECLARE NSString *WORequestValueFragmentID = @"wofid";
NGObjWeb_DECLARE NSString *WONoSelectionString = @"WONoSelectionString";
@interface WOCoreApplication(Resources)
+ (NSString *)findNGObjWebResource:(NSString *)_name ofType:(NSString *)_ext;
@end
@implementation WORequest
static BOOL debugOn = NO;
+ (void)initialize {
static BOOL isInitialized = NO;
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
NSDictionary *langMap;
NSString *apath;
if (isInitialized) return;
isInitialized = YES;
debugOn = [WOApplication isDebuggingEnabled];
/* apply defaults on some globals ... */
apath = [ud stringForKey:@"WORequestValueSessionID"];
if ([apath isNotEmpty])
WORequestValueSessionID = [apath copy];
apath = [ud stringForKey:@"WORequestValueInstance"];
if ([apath isNotEmpty])
WORequestValueInstance = [apath copy];
apath = [ud stringForKey:@"WONoSelectionString"];
if ([apath isNotEmpty])
WONoSelectionString = [apath copy];
/* load language mappings */
apath = [WOApplication findNGObjWebResource:@"Languages" ofType:@"plist"];
if (apath == nil) {
[self errorWithFormat:@"cannot find Languages.plist resource "
@"of NGObjWeb library !"];
langMap = nil;
}
else
langMap = [NSDictionary dictionaryWithContentsOfFile:apath];
if (langMap != nil) {
NSDictionary *defs;
defs = [NSDictionary dictionaryWithObject:langMap
forKey:@"WOBrowserLanguageMappings"];
[ud registerDefaults:defs];
}
else
[self warnWithFormat:
@"did not register browser language mappings: %@", apath];
}
/* sanitize input to avoid XSS injection (see https://sogo.nu/bugs/view.php?id=3670) */
- (NSString *) _sanitize: (NSString *) s
{
unsigned int i_len, o_len, i;
char *start;
const char *i_buf;
char c, *o_buf;
i_buf = [s cStringUsingEncoding: NSASCIIStringEncoding];
i_len = [s length];
start = o_buf = calloc(i_len * 3, sizeof(char));
i = o_len = 0;
while (i < i_len)
{
c = *i_buf;
switch (c)
{
case '\'':
*o_buf = '%'; o_buf++;
*o_buf = '2'; o_buf++;
*o_buf = '7'; o_buf++;
break;
case '(':
*o_buf = '%'; o_buf++;
*o_buf = '2'; o_buf++;
*o_buf = '8'; o_buf++;
break;
case ')':
*o_buf = '%'; o_buf++;
*o_buf = '2'; o_buf++;
*o_buf = '9'; o_buf++;
break;
default:
*o_buf = c; o_buf++;
break;
}
i_buf++;
i++;
}
return [[NSString alloc] initWithCStringNoCopy:start length:(o_buf - start) freeWhenDone:YES];
}
/* parse URI */
- (void)_parseURI {
unsigned uriLen;
char *uriBuf;
char *uri;
NSString *serverUrl;
// TBD: do not use cString ...
uriLen = [self->_uri cStringLength];
uriBuf = uri = malloc(uriLen + 4 /* some extra safety ;-) */);
[self->_uri getCString:uriBuf]; uriBuf[uriLen] = '\0';
/* determine adaptor prefix */
if ((serverUrl = [self headerForKey:@"x-webobjects-adaptor-prefix"]) != nil)
self->adaptorPrefix = [serverUrl copyWithZone:NULL];
if (self->adaptorPrefix == nil)
self->adaptorPrefix = @"";
/* new parse */
if (uri != NULL) {
const char *start = NULL;
/* skip adaptor prefix */
if (self->adaptorPrefix)
uri += [self->adaptorPrefix cStringLength];
if (*uri == '\0') goto done;
/* parse application name */
uri++; // skip '/'
start = uri;
while ((*uri != '\0') && (*uri != '/') && (*uri != '.') && (*uri != '?'))
uri++;
if (*uri == '\0') {
self->appName =
[[NSString alloc] initWithCString:start length:(uri - start)];
goto done;
}
else if (*uri == '?') {
self->appName =
[[NSString alloc] initWithCString:start length:(uri - start)];
goto done;
}
else if (*uri == '.') {
self->appName =
[[NSString alloc] initWithCString:start length:(uri - start)];
// skip appname trailer (eg .woa)
while ((*uri != '\0') && (*uri != '/'))
uri++;
if (*uri == '\0') goto done;
uri++; // skip '/'
}
else if (*uri == '/') {
self->appName =
[[NSString alloc] initWithCString:start length:(uri - start)];
uri++; // skip '/'
}
else
goto done; // invalid state !
if (*uri == '\0') goto done;
/* parse request handler key */
start = uri;
while ((*uri != '\0') && (*uri != '/') && (*uri != '?'))
uri++;
self->requestHandlerKey =
[[NSString alloc] initWithCString:start length:(uri - start)];
if (*uri == '\0') goto done;
if(*uri == '/'){
uri++; // skip '/'
/* parse request handler path */
start = uri;
while (*uri != '\0' && (*uri != '?'))
uri++;
self->requestHandlerPath =
[[NSString alloc] initWithCString:start length:(uri - start)];
}
/* parsing done (found '\0') */
done:
; // required for MacOSX-S
if (uriBuf != NULL) free(uriBuf);
}
}
- (id)initWithMethod:(NSString *)_method
uri:(NSString *)__uri
httpVersion:(NSString *)_version
headers:(NSDictionary *)_headers
content:(NSData *)_body
userInfo:(NSDictionary *)_userInfo
{
if ((self = [super init]) != nil) {
self->_uri = [self _sanitize: __uri];
self->method = [_method copy];
[self _parseURI];
/* WOMessage */
[self setHTTPVersion:_version];
[self setContent:_body];
[self setUserInfo:_userInfo];
[self setHeaders:_headers];
}
return self;
}
- (void)dealloc {
[self->browserLanguages release];
[self->startDate release];
[self->startStatistics release];
[self->method release];
[self->_uri release];
[self->adaptorPrefix release];
[self->requestHandlerKey release];
[self->requestHandlerPath release];
[self->appName release];
[self->formContent release];
[self->request release];
[super dealloc];
}
/* privates */
- (void)_setHttpRequest:(NGHttpRequest *)_request {
ASSIGN(self->request, _request);
}
- (NGHttpRequest *)httpRequest {
if (self->request == nil) {
/* construct request 'on-demand' */
self->request =
[[NSClassFromString(@"NGHttpRequest") alloc] initWithWORequest:self];
}
return self->request;
}
/* request handler */
- (void)setRequestHandlerKey:(NSString *)_key {
ASSIGNCOPY(self->requestHandlerKey, _key);
}
- (NSString *)requestHandlerKey { // new in WO4
if ([self isProxyRequest])
return @"proxy";
return self->requestHandlerKey;
}
- (void)setRequestHandlerPath:(NSString *)_path {
ASSIGNCOPY(self->requestHandlerPath, _path);
}
- (NSString *)requestHandlerPath { // new in WO4
return self->requestHandlerPath;
}
- (NSArray *)requestHandlerPathArray { // new in WO4
NSMutableArray *array = nil;
unsigned clen;
char *cstrBuf;
register char *cstr;
clen = [self->requestHandlerPath cStringLength];
if (clen == 0)
return nil;
cstrBuf = cstr = malloc(clen + 1);
[self->requestHandlerPath getCString:cstrBuf]; cstrBuf[clen] = '\0';
do {
NSString *component = nil;
register char *tmp = cstr;
while ((*tmp != '\0') && (*tmp != '?') && (*tmp != '/'))
tmp++;
component = ((tmp - cstr) == 0)
? (id)@""
: [[NSString alloc] initWithCString:cstr length:(tmp - cstr)];
if (component) {
if (array == nil) array = [NSMutableArray arrayWithCapacity:64];
[array addObject:component];
[component release]; component = nil;
}
cstr = tmp;
if (*cstr == '/') cstr++; // skip '/'
}
while ((*cstr != '\0') && (*cstr != '?'));
free(cstrBuf);
return [[array copy] autorelease];
}
/* WO methods */
- (BOOL)isFromClientComponent {
return NO;
}
- (NSString *)sessionID { // deprecated in WO4
return [self cookieValueForKey:self->appName];
}
- (NSString *)senderID { // deprecated in WO4
IS_DEPRECATED;
return [[[WOApplication application] context] senderID];
}
- (NSString *)contextID {
return [[[WOApplication application] context] contextID];
//return self->contextID;
}
- (NSString *)applicationName {
return self->appName;
}
- (NSString *)applicationHost {
return [[NSHost currentHost] name];
}
- (NSString *)adaptorPrefix {
return self->adaptorPrefix;
}
- (NSString *)method {
return self->method;
}
- (void)_hackSetURI:(NSString *)_vuri {
/* be careful, used by the WebDAV dispatcher for ZideLook range queries */
ASSIGNCOPY(self->_uri, _vuri);
}
- (NSString *)uri {
return self->_uri;
}
- (BOOL)isProxyRequest {
return [[self uri] isAbsoluteURL];
}
- (void)setStartDate:(NSCalendarDate *)_startDate {
ASSIGNCOPY(self->startDate, _startDate);
}
- (NSCalendarDate *)startDate {
return self->startDate;
}
- (id)startStatistics {
return self->startStatistics;
}
/* forms */
- (NSStringEncoding)formValueEncoding {
return NSUTF8StringEncoding;
}
- (void)setDefaultFormValueEncoding:(NSStringEncoding)_enc {
if (_enc != NSUTF8StringEncoding || _enc != NSASCIIStringEncoding)
[self notImplemented:_cmd];
}
- (NSStringEncoding)defaultFormValueEncoding {
return NSUTF8StringEncoding;
}
- (void)setFormValueEncodingDetectionEnabled:(BOOL)_flag {
if (_flag) [self notImplemented:_cmd];
}
- (BOOL)isFormValueEncodingDetectionEnabled {
return NO;
}
- (void)_parseQueryParameters:(NSString *)_s intoMap:(NGMutableHashMap *)_map {
NSEnumerator *e;
NSString *part;
e = [[_s componentsSeparatedByString:@"&"] objectEnumerator];
while ((part = [e nextObject])) {
NSRange r;
NSString *key, *value;
r = [part rangeOfString:@"="];
if (r.length == 0) {
/* missing value of query parameter */
key = [part stringByUnescapingURL];
value = @"1";
}
else {
key = [[part substringToIndex:r.location] stringByUnescapingURL];
value = [[part substringFromIndex:(r.location + r.length)]
stringByUnescapingURL];
}
[self->formContent addObject:value forKey:key];
}
}
- (NGHashMap *)_getFormParameters {
if (self->formContent != nil)
return self->formContent;
if (self->request != nil) {
self->formContent = [[self->request formParameters] retain];
return self->formContent;
}
{
/*
TODO: add parsing of form values
contained in URL:
a/blah?name=login&pwd=j
contained in body:
Content-Type: application/x-www-form-urlencoded
browserconfig=%7BisJavaScriptEnabled%3DYES%3B%7D&login=r&button=login
*/
NSRange r;
NSString *query;
NSString *ctype;
BOOL isMultiPartContent = NO, isFormContent = NO;
r = [self->_uri rangeOfString:@"?"];
query = (r.length > 0)
? [self->_uri substringFromIndex:(r.location + r.length)]
: (NSString *)nil;
if ((ctype = [self headerForKey:@"content-type"]) != nil) {
isFormContent = [ctype hasPrefix:@"application/x-www-form-urlencoded"];
if (!isFormContent)
isMultiPartContent = [ctype hasPrefix:@"multipart/form-data"];
}
if (query != nil || isFormContent || isMultiPartContent) {
NSAutoreleasePool *pool;
pool = [[NSAutoreleasePool alloc] init];
self->formContent = [[NGMutableHashMap alloc] init];
/* parse query string */
if (query)
[self _parseQueryParameters:query intoMap:self->formContent];
/* parse content (if form content) */
if (isFormContent) {
[self _parseQueryParameters:[self contentAsString]
intoMap:self->formContent];
}
else if (isMultiPartContent) {
[self errorWithFormat:@"missing NGHttpRequest, cannot parse multipart"];
}
[pool release];
}
else
self->formContent = [[NGHashMap alloc] init];
}
return self->formContent;
}
- (NSArray *)formValueKeys {
id paras = [self _getFormParameters];
if ([paras respondsToSelector:@selector(allKeys)])
return [paras allKeys];
return nil;
}
- (NSString *)formValueForKey:(NSString *)_key {
NSString *value;
id paras;
value = nil;
paras = [self _getFormParameters];
if ([paras respondsToSelector:@selector(objectForKey:)])
value = [(NSDictionary *)paras objectForKey:_key];
return value;
}
- (NSArray *)formValuesForKey:(NSString *)_key {
id paras = [self _getFormParameters];
return [paras respondsToSelector:@selector(objectsForKey:)]
? [paras objectsForKey:_key]
: (NSArray *)nil;
}
- (NSDictionary *)formValues {
id paras;
if ((paras = [self _getFormParameters]) == nil)
return nil;
/* check class, could change with different HTTP adaptor */
if ([paras isKindOfClass:[NSData class]])
{
//I don't know how it can still be NSdata here...
if(paras && [paras length] == 0)
return nil;
NSError* error;
paras = [NSJSONSerialization JSONObjectWithData:paras
options:NSJSONReadingAllowFragments
error:&error];
if(error)
{
[self errorWithFormat:@"(%s): don't know how to deal with data form object: %@", __PRETTY_FUNCTION__, error];
return nil;
}
return paras;
}
if ([paras isKindOfClass:[NGHashMap class]])
return [paras asDictionaryWithArraysForValues];
if ([paras isKindOfClass:[NSDictionary class]])
return paras;
[self errorWithFormat:@"(%s): don't know how to deal with form object: %@",
__PRETTY_FUNCTION__, paras];
return nil;
}
// ******************** Headers ******************
- (NSString *)languageForBrowserLanguageCode:(NSString *)_e {
static NSDictionary *langMap = nil;
NSString *le, *lang;
if (_e == nil) return nil;
if (langMap == nil) {
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
langMap = [[ud dictionaryForKey:@"WOBrowserLanguageMappings"] copy];
if (langMap == nil) {
[self warnWithFormat:@"did not find browser language mappings!"];
}
}
le = [_e lowercaseString];
lang = [langMap objectForKey:le];
if (lang == nil && [le length] > 2) {
/* process constructs like 'de-ch' */
if ([le characterAtIndex:2] == '-') {
NSString *ek;
ek = [le substringToIndex:2];
lang = [langMap objectForKey:ek];
}
else {
/* check if the code is actually the language (ex: Danish) */
NSArray *codes;
codes = [langMap allKeysForObject: _e];
if ([codes count])
lang = _e;
}
}
if (lang == nil && ![_e isEqualToString:@"*"]) {
[self debugWithFormat:@"did not find '%@' in map: %@",
_e, [[langMap allKeys] componentsJoinedByString:@", "]];
}
return lang;
}
- (NSString *)_languageFromUserAgent {
/*
user-agent sometimes stores the browser-language,
eg: Opera/5.0 (Linux 2.2.18 i686; U) [en]
*/
NSString *ua;
NSRange rng;
NSString *tmp;
if ((ua = [self headerForKey:@"user-agent"]) == nil)
return nil;
rng = [ua rangeOfString:@"["];
if (rng.length == 0)
return nil;
tmp = [ua substringFromIndex:(rng.location + rng.length)];
rng = [tmp rangeOfString:@"]"];
if (rng.length > 0)
tmp = [tmp substringToIndex:rng.location];
return [self languageForBrowserLanguageCode:tmp];
}
- (NSArray *)browserLanguages { /* new in WO4 */
static NSArray *defLangs = nil;
NSString *hheader;
NSEnumerator *e;
NSString *language;
NSString *tmp;
if (!browserLanguages)
{
browserLanguages = [NSMutableArray new];
e = [[self headersForKey:@"accept-language"] objectEnumerator];
while ((hheader = [e nextObject]) != nil) {
NSEnumerator *le;
le = [[hheader componentsSeparatedByString:@","] objectEnumerator];
while ((language = [le nextObject]) != nil) {
NSString *tmp;
NSRange r;
/* split off the quality (eg 'en;0.96') */
r = [language rangeOfString:@";"];
if (r.length > 0)
language = [language substringToIndex:r.location];
language = [language stringByTrimmingSpaces];
if ([language length] == 0)
continue;
/* check in map */
if ((tmp = [self languageForBrowserLanguageCode:language]))
language = tmp;
if ([browserLanguages containsObject:language])
continue;
[browserLanguages addObject:language];
}
}
if ((tmp = [self _languageFromUserAgent]))
[browserLanguages addObject:tmp];
if (defLangs == nil) {
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
defLangs = [[ud arrayForKey:@"WODefaultLanguages"] copy];
}
[browserLanguages addObjectsFromArray:defLangs];
}
//[self debugWithFormat:@"languages: %@", languages];
return browserLanguages;
}
/* cookies */
- (NSArray *)cookieValuesForKey:(NSString *)_key {
NSEnumerator *ecookies;
NSMutableArray *values;
WOCookie *cookie;
values = [NSMutableArray arrayWithCapacity:8];
ecookies = [[self cookies] objectEnumerator];
while ((cookie = [ecookies nextObject])) {
if ([_key isEqualToString:[cookie name]])
[values addObject:[cookie value]];
}
return values;
}
- (NSString *)cookieValueForKey:(NSString *)_key {
NSEnumerator *ecookies;
WOCookie *cookie;
ecookies = [[self cookies] objectEnumerator];
while ((cookie = [ecookies nextObject])) {
if ([_key isEqualToString:[cookie name]])
return [cookie value];
}
return nil;
}
- (NSDictionary *)cookieValues {
NSEnumerator *ecookies;
NSMutableDictionary *values;
WOCookie *cookie;
values = [NSMutableDictionary dictionaryWithCapacity:8];
ecookies = [[self cookies] objectEnumerator];
while ((cookie = [ecookies nextObject])) {
NSString *name;
NSMutableArray *vArray;
name = [cookie name];
vArray = [values objectForKey:name];
if (vArray == nil) {
vArray = [[NSMutableArray alloc] initWithCapacity:8];
[values setObject:vArray forKey:name];
[vArray release];
}
[vArray addObject:[cookie value]];
}
return values;
}
/* SOPE extensions */
- (NSString *)fragmentID {
NSString *v;
v = [self formValueForKey:WORequestValueFragmentID];
if (v == nil) return nil;
v = [v stringByTrimmingWhiteSpaces];
return [v isNotEmpty] ? v : (NSString *)nil;
}
- (BOOL)isFragmentIDInRequest {
return [self fragmentID] != nil ? YES : NO;
}
/* logging */
- (BOOL)isDebuggingEnabled {
return debugOn;
}
- (NSString *)loggingPrefix {
return [NSString stringWithFormat:@"|Rq:%@ 0x%p|",
[self method], self];
}
/* description */
- (NSString *)description {
NSMutableString *str;
str = [NSMutableString stringWithCapacity:256];
[str appendFormat:@"<%@[0x%p]:", NSStringFromClass([self class]), self];
[str appendFormat:@" method=%@", [self method]];
[str appendFormat:@" uri=%@", [self uri]];
[str appendFormat:@" app=%@", self->appName];
[str appendFormat:@" rqKey=%@", [self requestHandlerKey]];
[str appendFormat:@" rqPath=%@", [self requestHandlerPath]];
[str appendString:@">"];
return str;
}
@end /* WORequest */
|