/usr/include/GNUstep/NGObjWeb/WORequest.h is in libsope-dev 2.2.17-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
Copyright (C) 2000-2005 SKYRIX Software AG
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.
*/
#ifndef __NGObjWeb_WORequest_H__
#define __NGObjWeb_WORequest_H__
#import <Foundation/NSString.h>
#include <NGObjWeb/WOMessage.h>
#include <NGObjWeb/NGObjWebDecls.h>
@class NSString, NSArray, NSData, NSDictionary, NSCalendarDate;
@class NGHashMap;
@class NGHttpRequest;
NGObjWeb_EXPORT NSString *WORequestValueData;
NGObjWeb_EXPORT NSString *WORequestValueInstance;
NGObjWeb_EXPORT NSString *WORequestValuePageName;
NGObjWeb_EXPORT NSString *WORequestValueContextID;
NGObjWeb_EXPORT NSString *WORequestValueSenderID;
NGObjWeb_EXPORT NSString *WORequestValueSessionID;
NGObjWeb_EXPORT NSString *WORequestValueFragmentID;
NGObjWeb_EXPORT NSString *WONoSelectionString;
@interface WORequest : WOMessage
{
@private
NGHttpRequest *request; // NGHttp Request
id formContent; // FORM data (message content or URL paras)
NSMutableArray *browserLanguages; // cached list of browser languages
@private
NSString *method;
NSString *_uri; // TBD: why is this underscored?
@protected
NSString *adaptorPrefix;
NSString *appName;
NSString *requestHandlerKey;
NSString *requestHandlerPath;
@protected
NSCalendarDate *startDate;
id startStatistics;
}
- (id)initWithMethod:(NSString *)_method
uri:(NSString *)_uri
httpVersion:(NSString *)_version
headers:(NSDictionary *)_headers
content:(NSData *)_body
userInfo:(NSDictionary *)_userInfo;
/* WO accessors */
- (BOOL)isFromClientComponent;
- (NSString *)applicationName;
- (NSString *)adaptorPrefix;
/* HTTP accessors */
- (NSString *)method;
- (NSString *)uri;
- (BOOL)isProxyRequest; /* check whether uri is a full URL */
/* forms */
- (NSStringEncoding)formValueEncoding;
- (void)setDefaultFormValueEncoding:(NSStringEncoding)_enc;
- (NSStringEncoding)defaultFormValueEncoding;
- (void)setFormValueEncodingDetectionEnabled:(BOOL)_flag;
- (BOOL)isFormValueEncodingDetectionEnabled;
- (NSArray *)formValueKeys;
- (NSString *)formValueForKey:(NSString *)_key;
- (NSArray *)formValuesForKey:(NSString *)_key;
- (NSDictionary *)formValues;
/* HTTP header */
- (NSArray *)browserLanguages; // new in WO4
/* request handler */
- (NSString *)requestHandlerKey; // new in WO4
- (NSString *)requestHandlerPath; // new in WO4
- (NSArray *)requestHandlerPathArray; // new in WO4
/* cookie support (new in WO4) */
- (NSArray *)cookieValuesForKey:(NSString *)_key;
- (NSString *)cookieValueForKey:(NSString *)_key;
- (NSDictionary *)cookieValues;
/* SOPE extensions */
- (NSString *)fragmentID;
- (BOOL)isFragmentIDInRequest;
@end
#if COMPILING_NGOBJWEB
@interface WORequest(PrivateMethods)
- (NGHttpRequest *)httpRequest;
/* accessors */
- (NGHashMap *)formParameters;
@end
#endif
@interface WORequest(DeprecatedMethodsInWO4)
- (NSString *)applicationHost; // use NSProcessInfo and/or NSTask
- (NSString *)sessionID; // [[context session] sessionID]
- (NSString *)senderID; // replaced by WOContext:-senderID
- (NSString *)contextID; // use WOContext:-contextID
@end
#endif /* __NGObjWeb_WORequest_H__ */
|