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
|
/*
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.
*/
#include "NSException+HTTP.h"
#include "common.h"
@implementation NSException(HTTP)
+ (id)exceptionWithHTTPStatus:(unsigned short)_status {
return [self exceptionWithHTTPStatus:_status reason:nil];
}
+ (NSString *)exceptionNameForHTTPStatus:(unsigned short)_status {
switch (_status) {
case 401: return @"AuthRequired";
case 403: return @"Forbidden";
case 404: return @"NotFound";
default: return [NSString stringWithFormat:@"HTTP %i", _status];
}
}
+ (NSString *)exceptionReasonForHTTPStatus:(unsigned short)_status {
switch (_status) {
case 401: return @"authentication is required for access to the object!";
case 403: return @"you are not allowed to access the object!";
case 404: return @"the requested object could not be found!";
default: return @"reason for HTTP error unknown";
}
}
+ (id)exceptionWithHTTPStatus:(unsigned short)_status reason:(NSString *)_r {
return [[[SoHTTPException alloc]
initWithHTTPStatus:_status reason:_r] autorelease];
}
- (id)initWithHTTPStatus:(unsigned short)_status reason:(NSString *)_r {
NSDictionary *ui;
NSString *errorName;
NSString *lReason;
ui = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:_status]
forKey:@"http-status"];
errorName = [[self class] exceptionNameForHTTPStatus:_status];
lReason = _r ? _r : [[self class] exceptionReasonForHTTPStatus:_status];
return [self initWithName:errorName reason:lReason userInfo:ui];
}
- (unsigned short)httpStatus {
return [[[self userInfo] objectForKey:@"http-status"] intValue];
}
- (void)detachFromContainer {
/* to be usable in OFS */
}
/* KVC */
- (id)handleQueryWithUnboundKey:(NSString *)_key {
// TODO: is this considered a hack ?
return nil;
}
@end /* NSException(HTTP) */
@implementation SoHTTPException
- (id)initWithHTTPStatus:(unsigned short)_status reason:(NSString *)_r {
NSString *errorName;
NSString *lReason;
errorName = [[self class] exceptionNameForHTTPStatus:_status];
lReason = _r ? _r : [[self class] exceptionReasonForHTTPStatus:_status];
if (([self initWithName:errorName reason:lReason userInfo:nil])) {
self->status = _status;
}
return self;
}
- (unsigned short)httpStatus {
return self->status;
}
@end /* SoHTTPException */
@implementation NSException(DAV)
+ (id) exceptionWithDAVStatus: (unsigned short) _status
{
return [self exceptionWithDAVStatus: _status
reason: nil];
}
+ (NSString *)exceptionNameForDAVStatus:(unsigned short)_status {
switch (_status) {
case 401: return @"AuthRequired";
case 403: return @"Forbidden";
case 404: return @"NotFound";
default: return [NSString stringWithFormat:@"DAV %i", _status];
}
}
+ (NSString *)exceptionReasonForDAVStatus:(unsigned short)_status {
switch (_status) {
case 401: return @"authentication is required for access to the object!";
case 403: return @"you are not allowed to access the object!";
case 404: return @"the requested object could not be found!";
default: return @"reason for DAV error unknown";
}
}
+ (id)exceptionWithDAVStatus:(unsigned short)_status reason:(NSString *)_r {
return [[[SoDAVException alloc]
initWithDAVStatus:_status reason:_r] autorelease];
}
- (id)initWithDAVStatus:(unsigned short)_status reason:(NSString *)_r {
NSDictionary *ui;
NSString *errorName;
NSString *lReason;
ui = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:_status]
forKey:@"http-status"];
errorName = [[self class] exceptionNameForDAVStatus:_status];
lReason = _r ? _r : [[self class] exceptionReasonForDAVStatus:_status];
return [self initWithName:errorName reason:lReason userInfo:ui];
}
- (unsigned short)httpStatus {
return [[[self userInfo] objectForKey:@"http-status"] intValue];
}
- (void)detachFromContainer {
/* to be usable in OFS */
}
/* KVC */
- (id)handleQueryWithUnboundKey:(NSString *)_key {
// TODO: is this considered a hack ?
return nil;
}
@end /* NSException(DAV) */
@implementation SoDAVException
- (id)initWithDAVStatus:(unsigned short)_status reason:(NSString *)_r {
NSString *errorName;
NSString *lReason;
errorName = [[self class] exceptionNameForDAVStatus:_status];
lReason = _r ? _r : [[self class] exceptionReasonForDAVStatus:_status];
if (([self initWithName:errorName reason:lReason userInfo:nil])) {
self->status = _status;
}
return self;
}
- (unsigned short)httpStatus {
return self->status;
}
@end /* SoDAVException */
|