mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
Previously, the withCredentials parameter was accessed primarily through the CPURLConnection, which gave limited access to changing the request before it was sent off. This commit removes withCredentials from CPURLConnection and places it on CPURLRequest so that it may be more easily modified prior to sending the request. This also simplifies the logic in CPURLConnection for creating and establishing connections with credentials. In this commit, all CFHTTPRequests are assumed to not use withCredentials unless they are explicitly set. Setting [aURLRequest withCredentials] will set the withCredentials property on the underlying XMLHTTPRequest prior to the connection being opened.
122 lines
3.2 KiB
Plaintext
122 lines
3.2 KiB
Plaintext
/*
|
|
* CPURLRequest.j
|
|
* Foundation
|
|
*
|
|
* Created by Francisco Tolmasky.
|
|
* Copyright 2008, 280 North, Inc.
|
|
*
|
|
* This library 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.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
@import "CPDictionary.j"
|
|
@import "CPObject.j"
|
|
@import "CPString.j"
|
|
@import "CPURL.j"
|
|
|
|
/*!
|
|
@class CPURLRequest
|
|
@ingroup foundation
|
|
@brief Contains data obtained during a request made with CPURLConnection.
|
|
|
|
A helper object for CPURLConnection, that contains
|
|
data obtained during the life of a request.
|
|
*/
|
|
@implementation CPURLRequest : CPObject
|
|
{
|
|
CPURL _URL @accessors(property=URL);
|
|
|
|
// FIXME: this should be CPData
|
|
CPString _HTTPBody @accessors(property=HTTPBody);
|
|
CPString _HTTPMethod @accessors(property=HTTPMethod);
|
|
BOOL _withCredentials @accessors(property=withCredentials);
|
|
|
|
CPDictionary _HTTPHeaderFields @accessors(readonly, getter=allHTTPHeaderFields);
|
|
}
|
|
|
|
/*!
|
|
Creates a request with a specified URL.
|
|
@param aURL the URL of the request
|
|
@return a CPURLRequest
|
|
*/
|
|
+ (id)requestWithURL:(CPURL)aURL
|
|
{
|
|
return [[CPURLRequest alloc] initWithURL:aURL];
|
|
}
|
|
|
|
/*!
|
|
Equal to `[receiver initWithURL:nil]`.
|
|
*/
|
|
- (id)init
|
|
{
|
|
return [self initWithURL:nil];
|
|
}
|
|
|
|
/*!
|
|
Initializes the request with a URL. This is the designated initializer.
|
|
|
|
@param aURL the url to set
|
|
@return the initialized CPURLRequest
|
|
*/
|
|
- (id)initWithURL:(CPURL)aURL
|
|
{
|
|
self = [super init];
|
|
|
|
if (self)
|
|
{
|
|
[self setURL:aURL];
|
|
|
|
_HTTPBody = @"";
|
|
_HTTPMethod = @"GET";
|
|
_HTTPHeaderFields = @{};
|
|
|
|
[self setValue:"Thu, 01 Jan 1970 00:00:00 GMT" forHTTPHeaderField:"If-Modified-Since"];
|
|
[self setValue:"no-cache" forHTTPHeaderField:"Cache-Control"];
|
|
[self setValue:"XMLHttpRequest" forHTTPHeaderField:"X-Requested-With"];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
/*!
|
|
Sets the URL for this request.
|
|
@param aURL the new URL
|
|
*/
|
|
- (void)setURL:(CPURL)aURL
|
|
{
|
|
// Lenient and accept strings.
|
|
_URL = new CFURL(aURL);
|
|
}
|
|
|
|
/*!
|
|
Returns the value for the specified header field.
|
|
@param aField the header field to obtain a value for
|
|
*/
|
|
- (CPString)valueForHTTPHeaderField:(CPString)aField
|
|
{
|
|
return [_HTTPHeaderFields objectForKey:aField];
|
|
}
|
|
|
|
/*!
|
|
Sets the value for the specified header field.
|
|
@param aValue the value for the header field
|
|
@param aField the header field
|
|
*/
|
|
- (void)setValue:(CPString)aValue forHTTPHeaderField:(CPString)aField
|
|
{
|
|
[_HTTPHeaderFields setObject:aValue forKey:aField];
|
|
}
|
|
|
|
@end
|