-
Notifications
You must be signed in to change notification settings - Fork 65
/
NSDictionary+QueryString.m
60 lines (49 loc) · 1.53 KB
/
NSDictionary+QueryString.m
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
//
// NSDictionary+QueryString.h
// LROAuth2Client
//
// Created by Luke Redpath on 14/05/2010.
// Copyright 2010 LJR Software Limited. All rights reserved.
//
#import "NSDictionary+QueryString.h"
#import "NSString+QueryString.h"
@implementation NSDictionary (QueryString)
+ (NSDictionary *)dictionaryWithFormEncodedString:(NSString *)encodedString
{
NSMutableDictionary* result = [NSMutableDictionary dictionary];
NSArray* pairs = [encodedString componentsSeparatedByString:@"&"];
for (NSString* kvp in pairs)
{
if ([kvp length] == 0)
continue;
NSRange pos = [kvp rangeOfString:@"="];
NSString *key;
NSString *val;
if (pos.location == NSNotFound)
{
key = [kvp stringByUnescapingFromURLQuery];
val = @"";
}
else
{
key = [[kvp substringToIndex:pos.location] stringByUnescapingFromURLQuery];
val = [[kvp substringFromIndex:pos.location + pos.length] stringByUnescapingFromURLQuery];
}
if (!key || !val)
continue; // I'm sure this will bite my arse one day
[result setObject:val forKey:key];
}
return result;
}
- (NSString *)stringWithFormEncodedComponents
{
NSMutableArray* arguments = [NSMutableArray arrayWithCapacity:[self count]];
for (NSString* key in self)
{
[arguments addObject:[NSString stringWithFormat:@"%@=%@",
[key stringByEscapingForURLQuery],
[[[self objectForKey:key] description] stringByEscapingForURLQuery]]];
}
return [arguments componentsJoinedByString:@"&"];
}
@end