mirror of
https://github.com/swisspol/GCDWebServer.git
synced 2026-04-24 00:00:04 +08:00
Added JSON support to GCDWebServerDataResponse
This commit is contained in:
@@ -62,9 +62,11 @@
|
|||||||
+ (GCDWebServerDataResponse*)responseWithText:(NSString*)text;
|
+ (GCDWebServerDataResponse*)responseWithText:(NSString*)text;
|
||||||
+ (GCDWebServerDataResponse*)responseWithHTML:(NSString*)html;
|
+ (GCDWebServerDataResponse*)responseWithHTML:(NSString*)html;
|
||||||
+ (GCDWebServerDataResponse*)responseWithHTMLTemplate:(NSString*)path variables:(NSDictionary*)variables;
|
+ (GCDWebServerDataResponse*)responseWithHTMLTemplate:(NSString*)path variables:(NSDictionary*)variables;
|
||||||
|
+ (GCDWebServerDataResponse*)responseWithJSONObject:(id)object;
|
||||||
- (id)initWithText:(NSString*)text; // Encodes using UTF-8
|
- (id)initWithText:(NSString*)text; // Encodes using UTF-8
|
||||||
- (id)initWithHTML:(NSString*)html; // Encodes using UTF-8
|
- (id)initWithHTML:(NSString*)html; // Encodes using UTF-8
|
||||||
- (id)initWithHTMLTemplate:(NSString*)path variables:(NSDictionary*)variables; // Simple template system that replaces all occurences of "%variable%" with corresponding value (encodes using UTF-8)
|
- (id)initWithHTMLTemplate:(NSString*)path variables:(NSDictionary*)variables; // Simple template system that replaces all occurences of "%variable%" with corresponding value (encodes using UTF-8)
|
||||||
|
- (id)initWithJSONObject:(id)object;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@interface GCDWebServerFileResponse : GCDWebServerResponse
|
@interface GCDWebServerFileResponse : GCDWebServerResponse
|
||||||
|
|||||||
@@ -211,6 +211,10 @@
|
|||||||
return ARC_AUTORELEASE([[self alloc] initWithHTMLTemplate:path variables:variables]);
|
return ARC_AUTORELEASE([[self alloc] initWithHTMLTemplate:path variables:variables]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
+ (GCDWebServerDataResponse*)responseWithJSONObject:(id)object {
|
||||||
|
return ARC_AUTORELEASE([[self alloc] initWithJSONObject:object]);
|
||||||
|
}
|
||||||
|
|
||||||
- (id)initWithText:(NSString*)text {
|
- (id)initWithText:(NSString*)text {
|
||||||
NSData* data = [text dataUsingEncoding:NSUTF8StringEncoding];
|
NSData* data = [text dataUsingEncoding:NSUTF8StringEncoding];
|
||||||
if (data == nil) {
|
if (data == nil) {
|
||||||
@@ -241,6 +245,15 @@
|
|||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (id)initWithJSONObject:(id)object {
|
||||||
|
NSData* data = [NSJSONSerialization dataWithJSONObject:object options:0 error:NULL];
|
||||||
|
if (data == nil) {
|
||||||
|
ARC_RELEASE(self);
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
return [self initWithData:data contentType:@"application/json"];
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation GCDWebServerFileResponse
|
@implementation GCDWebServerFileResponse
|
||||||
|
|||||||
Reference in New Issue
Block a user