/usr/include/sipxtapi/net/HttpMessage.h is in libsipxtapi-dev 3.3.0~test17-1.
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 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 | //
// Copyright (C) 2007-2008 SIPez LLC All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2004-2008 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
// Author: Dan Petrie (dpetrie AT SIPez DOT com)
#ifndef _HttpMessage_h_
#define _HttpMessage_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include <os/OsDefs.h>
#include <net/HttpBody.h>
#include <net/NameValuePair.h>
#include <os/OsSocket.h>
#include <os/OsTimeLog.h>
#include <os/OsMsgQ.h>
#include <os/OsAtomics.h>
#include <utl/UtlDList.h>
// DEFINES
#define HTTP_NAME_VALUE_DELIMITER ':'
#define HEADER_LINE_PART_DELIMITER ' '
#define END_OF_LINE_DELIMITOR "\r\n"
#define PASSWORD_SECRET "xpressa"
#define HTTP_DEFAULT_SOCKET_BUFFER_SIZE 10240
#define HTTP_LONG_INT_CHARS 20
#define HTTP_PROTOCOL_VERSION "HTTP/1.0"
#define HTTP_PROTOCOL_VERSION_1_1 "HTTP/1.1"
// HTTP Methods
#define HTTP_GET_METHOD "GET"
#define HTTP_PUT_METHOD "PUT"
#define HTTP_POST_METHOD "POST"
// Response codes and text
#define HTTP_OK_CODE 200
#define HTTP_OK_TEXT "OK"
#define HTTP_MOVED_PERMANENTLY_CODE 301
#define HTTP_MOVED_PERMANENTLY_TEXT "Moved Permanently"
#define HTTP_MOVED_TEMPORARILY_CODE 302
#define HTTP_MOVED_TEMPORARILY_TEXT "Moved Temporatily"
#define HTTP_UNAUTHORIZED_CODE 401
#define HTTP_UNAUTHORIZED_TEXT "Unauthorized"
#define HTTP_FORBIDDEN_CODE 403
#define HTTP_FORBIDDEN_TEXT "Forbidden"
#define HTTP_FILE_NOT_FOUND_CODE 404
#define HTTP_FILE_NOT_FOUND_TEXT "File Not Found"
#define HTTP_PROXY_UNAUTHORIZED_CODE 407
#define HTTP_PROXY_UNAUTHORIZED_TEXT "Proxy Authentication Required"
#define HTTP_UNSUPPORTED_METHOD_CODE 501
#define HTTP_UNSUPPORTED_METHOD_TEXT "Not Implemented"
#define HTTP_OUT_OF_RESOURCES_CODE 503
#define HTTP_OUT_OF_RESOURCES_TEXT "Out of Resources"
// Field names
#define HTTP_ACCEPT_LANGUAGE_FIELD "ACCEPT-LANGUAGE"
#define HTTP_ACCEPT_ENCODING_FIELD "ACCEPT-ENCODING"
#define HTTP_AUTHORIZATION_FIELD "AUTHORIZATION"
#define HTTP_DATE_FIELD "DATE"
#define HTTP_CONTENT_DISPOSITION_FIELD "CONTENT-DISPOSITION"
#define HTTP_CONTENT_TRANSFER_ENCODING_FIELD "CONTENT-TRANSFER-ENCODING"
#define HTTP_CONTENT_LENGTH_FIELD "CONTENT-LENGTH"
#define HTTP_CONTENT_TYPE_FIELD "CONTENT-TYPE"
#define HTTP_CONTENT_ID_FIELD "CONTENT-ID"
#define HTTP_LOCATION_FIELD "LOCATION"
#define HTTP_PROXY_AUTHENTICATE_FIELD "PROXY-AUTHENTICATE"
#define HTTP_PROXY_AUTHORIZATION_FIELD "PROXY-AUTHORIZATION"
#define HTTP_REFRESH_FIELD "REFRESH"
#define HTTP_USER_AGENT_FIELD "USER-AGENT"
#define HTTP_WWW_AUTHENTICATE_FIELD "WWW-AUTHENTICATE"
#define HTTP_HOST_FIELD "HOST"
#define HTTP_ACCEPT_FIELD "ACCEPT"
#define HTTP_CONNECTION_FIELD "CONNECTION"
// Authentication Constants
// these are by specification case-independant tokens,
// but we always send the case as used in the examples in
// the spec (rfc2617)
#define HTTP_BASIC_AUTHENTICATION "Basic"
#define HTTP_DIGEST_AUTHENTICATION "Digest"
#define HTTP_AUTHENTICATION_ALGORITHM_TOKEN "algorithm"
# define HTTP_MD5_ALGORITHM "MD5"
# define HTTP_MD5_SESSION_ALGORITHM "MD5-sess"
#define HTTP_AUTHENTICATION_CNONCE_TOKEN "cnonce"
#define HTTP_AUTHENTICATION_DOMAIN_TOKEN "domain"
#define HTTP_AUTHENTICATION_REALM_TOKEN "realm"
#define HTTP_AUTHENTICATION_NONCE_TOKEN "nonce"
#define HTTP_AUTHENTICATION_NONCE_COUNT_TOKEN "nc"
#define HTTP_AUTHENTICATION_OPAQUE_TOKEN "opaque"
#define HTTP_AUTHENTICATION_QOP_TOKEN "qop"
# define HTTP_QOP_AUTH "auth"
# define HTTP_QOP_AUTH_INTEGRITY "auth-int"
#define HTTP_AUTHENTICATION_USERNAME_TOKEN "username"
#define HTTP_AUTHENTICATION_URI_TOKEN "uri"
#define HTTP_AUTHENTICATION_RESPONSE_TOKEN "response"
// HTTP_CONTENT_TRANSFER_ENCODING types
#define HTTP_CONTENT_TRANSFER_ENCODING_BINARY "binary"
#define HTTP_CONTENT_TRANSFER_ENCODING_BASE64 "base64"
// Content-Type field parameters
#define HTTP_CONTENT_TYPE_PARAM_ACCESS_TYPE "access-type"
#define HTTP_CONTENT_TYPE_PARAM_EXPIRATION "expiration"
#define HTTP_CONTENT_TYPE_PARAM_HASH "hash"
#define HTTP_CONTENT_TYPE_PARAM_SIZE "size"
#define HTTP_CONTENT_TYPE_PARAM_URL "url"
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
const int HttpMessageRetries = 2;
// STRUCTS
// FORWARD DECLARATIONS
class UtlString;
class Url;
class HttpMessage;
class OsConnectionSocket;
class UtlHashMap;
// TYPEDEFS
//! Callback method used as part of HttpMessage::get.
//! If the callback method returns FALSE, then the retrieve is aborted.
typedef UtlBoolean (*GetDataCallbackProc)(char* pData,
int iLength,
void* pOptionalData,
HttpMessage* pMsg);
//! HTTP message container
/*! This class is the container with methods for manipulation of a generic
* HTTP message. The message is composed of three parts:
* -# The first header line
* -# header fields and values (RFC 822 style)
* -# the optional body (HttpBody)
* \par
* The first header line is composed of three white space delimited
* parts. The meaning of these parts depends upon whether the
* the message is a request or a response. Aside from the first
* header line, the syntactic and symantic differences are very
* message specific so a design decision was made to \a not use
* different subclasses for requests and responses. This also
* avoids the multiple inheritance complexity that occurs if you
* create subclasses for requests, responses and other message
* types like SipMessage which also have requests and responses.
* \par
* The first header line parts can be accessed as follows:
* - Requests:
* -# the request method is retreived via getRequestMethod()
* -# the request URI is retreive via getRequestUri()
* -# the request protocol is retrieved via getRequestProtocol()
* - Responses:
* -# the response protocol is retrieved via getResponseProtocol()
* -# the response code is retrieved via getResponseStatusCode()
* -# the response status string is retrieved via getResponseStatusText()
* \par
* There are generic getters and setters for the header fields and values
* However the design philosophy has been to create specialized get and
* set methods for fields that require any special handling or parsing
* (i.e. things that are more than opaque tokens or strings). The generic
* accessor methods are:
* - getters:
* - getHeaderValue()
* - setters:
* - setHeaderValue()
* - addHeaderField()
* - insertHeaderField()
* \par
* The final part of the HttpMessage is the body. The body is
* optional and may not be present. The accessors for the body
* (single or multipart) is getBody() and setBody()
*/
class HttpMessage
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
enum HttpEndpointEnum
{
SERVER = 0,
PROXY
};
/* ============================ CREATORS ================================== */
//! Construct from a string
HttpMessage(const char* messageBytes = NULL,
int byteCount = -1);
//! Construct from reading from the given socket
HttpMessage(OsSocket* inSocket,
int bufferSize = HTTP_DEFAULT_SOCKET_BUFFER_SIZE);
//!Copy constructor
HttpMessage(const HttpMessage& rHttpMessage);
//! Assignment operator
HttpMessage& operator=(const HttpMessage& rhs);
//! Destructor
virtual
~HttpMessage();
/* ============================ MANIPULATORS ============================== */
//! Do an HTTP GET on the given URL
/*! \param httpUrl - the url to get from the HTTP server. The URL
* may contain a password & user id.
* \param maxWaitMillSeconds - the maximum time to wait for the response
* \param bPersistent - use persistent connections if true
*/
int get(Url& httpUrl,
int maxWaitMilliSeconds,
bool bPersistent=true);
//! Do an HTTP GET on the given URL
/*! \param httpUrl - the url to get from the HTTP server. The URL may contain a password & user id. Note the only thing that may be required of the URL is the host and port as well as the user ID and password if there is a authentication challenge.
* \param request - the complete HTTP request that will be sent to the HTTP server including the body.
* \param maxWaitMillSeconds - the maximum time to wait for the response
* \param bPersistent - use persistent connections if true
*/
int get(Url& httpUrl,
HttpMessage& request,
int maxWaitMilliSeconds,
bool bPersistent=false);
//!Perform an HTTP GET on the specified URL and pass data to the
//! specified callbackProc.
/*!
* \note If you specify a socket pointer, YOU ARE RESPONSIBLE for
* closing and deleting the socket!
*
* \param httpUrl - The url to get from the HTTP server. The URL may
* contain a password & user id.
* \param maxWaitMillSeconds - The maximum time to wait for the response.
* \param callbackProc - Callback routine that will be invoked with the
* body data.
* \param optionalData - Optional data passed to callbackProc
* \param socket - Socket used to fetch data. This is set before any
* data is pumped, however, if you specify this socket, it is
* the caller's responsibility to delete the OsSocket.
*/
OsStatus get(Url& httpUrl,
int maxWaitMilliSeconds,
GetDataCallbackProc callbackProc,
void* optionalData = NULL,
OsConnectionSocket** socket = NULL) ;
//! Read HTTP message from socket.
/*! Convenience function to read from a socket
* \param inSocket - socket from which to read data
* \param bufferSize - this is the size of the chunks of data to
* be read off the socket. (It is not the total size of the
* message to be read.)
* \param externalBuffer - a UtlString into which the HTTP message
* will be accumulated and via which it will be returned to the
* caller. If this is NULL, the message is not returned.
* If externalBuffer contains a string, it is taken as the
* initial part of the HTTP message, to be followed by data read
* from inSocket.
* \param maxContentLength - this is the maximum message size that
* will be read. If the message content-length is larger, the
* socket is closed and the buffer is cleared. (This is to protect
* against abusive senders.)
* \return the number of bytes in the message that was read,
* or 0 to indicate an error. If it is less than
* externalBuffer.length(), the remaining bytes are the start of
* another message.
*/
int read(OsSocket* inSocket,
int bufferSize = HTTP_DEFAULT_SOCKET_BUFFER_SIZE,
UtlString* externalBuffer = NULL,
int maxContentLength = 6000000);
//! Will read bytes off the socket until the header of the message is
//! believed received.
int readHeader(OsSocket* inSocket, UtlString& buffer);
//! Read the body of the specified data and deliever via the
//! callback proc.
int readBody(OsSocket* inSocket, int length, GetDataCallbackProc callbackProc, void* optionalData);
//! Write message to socket
/*! Convenience function to write to a socket
* \return TRUE if the message was written successfully
*/
UtlBoolean write(OsSocket* outSocket) const;
//! Converts the given token to initial cap capitialization
//! in the style used in RFC 822 header names
static void cannonizeToken(UtlString& token);
//! URL unescape the text to human readable form.
static void unescape(UtlString& escapedText);
//! Selectively URL escape the text if they are contained in
//! tobeEscapedChars.
static void escapeChars(UtlString& unEscapedText, UtlString& tobeEscapedChars);
//! URL sscape the text.
static void escape(UtlString& unEscapedText);
//! Selectively URL escape the text if the char is tobeEscapedChar.
static void escapeOneChar(UtlString& unEscapedText, char tobeEscapedChar);
/*! @name Construction helper methods
* These methods are mostly for internal use as utilities
* to the constructor methods
*/
//@{
//! Parse the first line of the request or response
int parseFirstLine(const char* messageBytes, int byteCount);
//! Parse the message from a byte buffer
/*! This method reads the top header line, header feilds and
* the message body if they are present from the buffer assuming
* HTTP stream format.
*/
void parseMessage(const char* messageBytes, int byteCount);
//! Parses the bytes into a single or multipart body.
void parseBody(const char* messageBodyBytes, int byteCount);
//! returns: the number of bytes parsed
static int parseHeaders(const char* headerBytes,
int messageLength,
UtlDList& headerNameValues);
//! returns: the number of bytes in the message buffer which constitue the message header
/*! The end of the headers is determined by the first blank line
*/
static int findHeaderEnd(const char* messageBytes, int messageLength);
//@}
/* ============================ ACCESSORS ================================= */
static OsAtomicInt smHttpMessageCount;
static int getHttpMessageCount();
const char* getFirstHeaderLine() const;
//! Set the header line
/*! \param newHeaderLine - gets copied
*/
void setFirstHeaderLine(const char* newHeaderLine);
void setFirstHeaderLine(const char* subfields0,
const char* subfield1,
const char* subfield2);
//! Get part of header line
/*! \param partIndex - index into space delimited first header line
* \param part
*/
void getFirstHeaderLinePart(int partIndex,
UtlString* part,
char separator = HEADER_LINE_PART_DELIMITER) const;
//! @name Transport state accessors
/*! \note: these are mostly only useful inside servers
* that keep message state.
* Used for transport reliablity to tack when this message was
* sent so that it may be resent or timed-out.
*/
//@{
void setTransportTime(long timeStamp);
void touchTransportTime();
long getTransportTime() const;
//! Used for transport to track reliably the last duration
//! waited before resending
void setResendDuration(int resendMSec);
int getResendDuration() const;
// Used by transport to track reliably the number of times the
// message was sent (and resent).
int getTimesSent() const;
void incrementTimesSent();
void setTimesSent(int times = 0);
// Used by the tranport to track reliably which protocol the
// message was sent over
void setSendProtocol(OsSocket::IpProtocolSocketType protocol = OsSocket::TCP);
OsSocket::IpProtocolSocketType getSendProtocol() const;
void setFirstSent();
void setSendAddress(const char* address, int port);
void getSendAddress(UtlString* address, int* port) const;
// Resets the tranport state stuff
void resetTransport();
//@}
//! @name Request callback methods
/*! These methods are used to setup callback functions and data
* which gets triggered when a response comes back
*/
//@{
//! Gets the queue on which responses from the same transaction
//! are deposited
OsMsgQ* getResponseListenerQueue() const;
//! Sets the queue on which responses from the same transaction
//! are deposited
void setResponseListenerQueue(OsMsgQ* requestListenerQueue);
//! Gets the data item to pass to the request listener
void* getResponseListenerData() const;
//! Sets the data item to pass to the request listener
void setResponseListenerData(void* requestListenerData);
//@}
//! @name Generic header accessors
/*! \note many specific header type accessors exist to parse
* headers which have syntax that is not a simple token or string
*/
//@{
//! Find the number of occurrences of header fields with the given name.
int getCountHeaderFields(const char* name = NULL) const;
//! Get the value of the header field
//! (i.e. second header line).
/*! \param index - index into the header fields or if name is not null
* the index into the set of header fields having the given name
* \param name - string containing the name of the header field
* \return read only string if a header field exist <br>
* null if no header field is found
*/
const char* getHeaderValue(int index, const char* name = NULL) const;
//! Sets the value of an existing header field
/*! If the given name does not exist it creates a new one
* \param name - header field name
* \param newValue - the value which gets set for the field
* \param index - the index into the number of fields with the
* given name
* \note value is copied
*/
void setHeaderValue(const char* name, const char* newValue, int index = 0);
//! Adds a new header line
/*! \param name - header field name
* \param value - the value which gets set for the field
* \note name and value are copied
*/
void addHeaderField(const char* name, const char* value);
//! Inserts a new header line, shifting existing headers at and
//! after the secified location down by one
/*! \param name - header field name
* \param value - the value which gets set for the field
* \param index - the location to insert in the list (first by default)
* \note name and value are copied
*/
void insertHeaderField(const char* name,
const char* value,
int index = 0);
UtlBoolean removeHeader(const char* name, int index);
//! Remove a header field and value
/*! \param name - optional header field name NULL if indexing directly
* \param index - header number or index into headers having the given
* name if provided
*/
//@}
//! @name Specialized header field accessors
//@{
void setContentType(const char* contentTypeString,
const char* accessType = NULL,
const char* expirationDate = NULL,
const char* url = NULL,
int size = -1,
const char* hash = NULL);
UtlBoolean getContentType(UtlString* contentType, UtlHashMap* parameters = NULL) const;
void setContentLength(int contentLength);
int getContentLength() const;
void setUserAgentField(const char* userAgentFieldValue);
void getUserAgentField(UtlString* userAgentFieldValue) const;
void setRefresh(int seconds, const char* refreshUrl = NULL);
UtlBoolean getDateField(long* epochDate) const;
//! Sets the date field to the current time
void setDateField();
void setAcceptLanguageField(const char* acceptLanaguageFieldValue);
void getAcceptLanguageField(UtlString* acceptLanaguageFieldValue) const;
UtlBoolean getAcceptField(UtlString& acceptValue) const;
void setLocationField(const char* locationField);
//@}
//! @name Message body accessors
//@{
//! Get the body section of the message
const HttpBody* getBody() const;
/**
* Attach the body section of the message. The body is NOT copied
* this message instance destructor will call delete on body
* pointer
*/
void setBody(HttpBody* newBody);
//@}
//! Get the bytes for the compete message
/*! Suitable for streaming or sending over a socket
* \param bytes - gets allocated and must be freed
* \param length - the length of bytes
*/
void getBytes(UtlString* bytes, int* length) const;
//! @name Authentication access methods
//@{
UtlBoolean getAuthenticationScheme(UtlString* scheme,
int authorizationEntity) const;
UtlBoolean getAuthenticationData(UtlString* scheme,
UtlString* realm,
UtlString* nonce,
UtlString* opaque,
UtlString* algorithm, // MD5 or MD5-sess
UtlString* qop, // may be multiple values
int authorizationEntity) const;
void setAuthenticationData(const char* scheme, const char* realm,
const char* nonce, const char* opaque,
const char* domain = NULL,
enum HttpEndpointEnum authEntity = SERVER);
void addAuthenticationField(const char* authenticationField,
enum HttpEndpointEnum authType);
UtlBoolean getAuthenticationField(int index,
enum HttpEndpointEnum authEntity,
const char* authenticationField) const;
void addAuthenticationField(const char * AuthorizeField,
const char * AuthorizeValue,
UtlBoolean otherAuthentications = TRUE);
// Authorization methods
static void buildBasicAuthorizationCookie(const char* user,
const char* password,
UtlString* cookie);
virtual void setRequestUnauthorized(const HttpMessage* request,
const char* authenticationScheme,
const char* authenticationRealm,
const char* authenticationNonce = NULL,
const char* authenticationOpaque = NULL,
const char* authenticationDomain = NULL);
UtlBoolean getAuthorizationUser(UtlString* userId) const;
UtlBoolean getAuthorizationScheme(UtlString* scheme) const;
UtlBoolean getAuthorizationField(UtlString* authenticationField,
int authorizationEntity) const;
void setBasicAuthorization(const char* user, const char* password,
int authorizationEntity);
UtlBoolean getBasicAuthorizationData(UtlString* encodedCookie) const;
UtlBoolean getBasicAuthorizationData(UtlString* userId,
UtlString* password) const;
UtlBoolean verifyBasicAuthorization(const char* user,
const char* password) const;
// Digest Authorization
void setDigestAuthorizationData(const char* user,
const char* realm,
const char* nonce,
const char* uri,
const char* response,
const char* algorithm,
const char* cnonce,
const char* opaque,
const char* qop,
int nonceCount,
int authorizationEntity);
UtlBoolean getDigestAuthorizationData(UtlString* user,
UtlString* realm = NULL,
UtlString* nonce = NULL,
UtlString* opaque = NULL,
UtlString* response = NULL,
UtlString* uri = NULL,
int authorizationEntity = HttpMessage::PROXY ,
int index = 0) const;
static void buildMd5UserPasswordDigest(const char* user,
const char* realm,
const char* password,
UtlString& userPasswordDigest);
static void buildMd5Digest(const char* userPasswordDigest,
const char* algorithm,
const char* nonce,
const char* cnonce,
int nonceCount,
const char* qop,
const char* method,
const char* uri,
const char* bodyDigest,
UtlString* responseToken);
UtlBoolean verifyMd5Authorization(const char* userId,
const char* password,
const char* nonce,
const char* realm,
const char* thisMessageMethod = NULL,
const char* thisMessageUri = NULL,
enum HttpEndpointEnum authEntity = SERVER) const;
UtlBoolean verifyMd5Authorization(const char* userPasswordDigest,
const char* nonce,
const char* thisMessageMethod = NULL,
const char* thisMessageUri = NULL) const;
//@}
//! @name Response first header line access methods
//@{
void setResponseFirstHeaderLine(const char* protocol,
int statusCode,
const char* statusText);
//! Get this response's message protocol
void getResponseProtocol(UtlString* protocol) const;
//! Get this response's status code
int getResponseStatusCode() const;
//! Get this response's status code text
void getResponseStatusText(UtlString* text) const;
//@}
/*! @name Request first header line access methods
*/
//@{
void setRequestFirstHeaderLine(const char* method,
const char* uri,
const char* protocol);
//! Get this request's method
void getRequestMethod(UtlString* method) const;
//! Get this request's URI
void getRequestUri(UtlString* uri) const;
//! Get this request's application layer protocol type
void getRequestProtocol(UtlString* protocol) const;
//! Change this request's URI
void changeRequestUri(const char* newUri);
//@}
// Time logging
void logTimeEvent(const char* eventName);
void dumpTimeLog() const;
/* ============================ INQUIRY =================================== */
static UtlBoolean isWholeMessage(const char* messageBuffer,
int bufferLength,
int& numberBytesChecked,
int& contentLength);
UtlBoolean isFirstSend() const;
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
UtlDList mNameValues;
UtlString mFirstHeaderLine;
UtlBoolean mHeaderCacheClean;
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
HttpBody* body;
long transportTimeStamp;
int lastResendDuration;
OsSocket::IpProtocolSocketType transportProtocol;
int timesSent;
UtlBoolean mFirstSent;
UtlString mSendAddress;
int mSendPort;
OsMsgQ* mpResponseListenerQueue;
void* mResponseListenerData;
#ifdef HTTP_TIMELOG
OsTimeLog mTimeLog;
#endif
//! Internal utility
NameValuePair* getHeaderField(int index, const char* name = NULL) const;
};
/* ============================ INLINE METHODS ============================ */
#endif // _HttpMessage_h_
|