-
Notifications
You must be signed in to change notification settings - Fork 0
/
AKSIPURI.m
233 lines (191 loc) · 7.72 KB
/
AKSIPURI.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
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
//
// AKSIPURI.m
// Telephone
//
// Copyright (c) 2008-2009 Alexei Kuznetsov. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE THE COPYRIGHT HOLDER
// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#import "AKSIPURI.h"
#import <pjsua-lib/pjsua.h>
#import "AKNSString+PJSUA.h"
#import "AKSIPUserAgent.h"
@implementation AKSIPURI
@dynamic SIPAddress;
@synthesize displayName = displayName_;
@synthesize user = user_;
@synthesize password = password_;
@synthesize host = host_;
@synthesize port = port_;
@synthesize userParameter = userParameter_;
@synthesize methodParameter = methodParameter_;
@synthesize transportParameter = transportParameter_;
@synthesize TTLParameter = TTLParameter_;
@synthesize looseRoutingParameter = looseRoutingParameter_;
@synthesize maddrParameter = maddrParameter_;
- (NSString *)SIPAddress {
if ([[self user] length] > 0)
return [NSString stringWithFormat:@"%@@%@", [self user], [self host]];
else
return [self host];
}
#pragma mark -
+ (id)SIPURIWithUser:(NSString *)aUser
host:(NSString *)aHost
displayName:(NSString *)aDisplayName {
return [[[self alloc] initWithUser:aUser
host:aHost
displayName:aDisplayName]
autorelease];
}
+ (id)SIPURIWithString:(NSString *)SIPURIString {
return [[[self alloc] initWithString:SIPURIString] autorelease];
}
// Designated initializer.
- (id)initWithUser:(NSString *)aUser
host:(NSString *)aHost
displayName:(NSString *)aDisplayName {
self = [super init];
if (self == nil)
return nil;
[self setDisplayName:aDisplayName];
[self setUser:aUser];
[self setHost:aHost];
return self;
}
- (id)init {
return [self initWithUser:nil host:nil displayName:nil];
}
- (id)initWithString:(NSString *)SIPURIString {
[self init];
if (self == nil)
return nil;
NSPredicate *predicate
= [NSPredicate predicateWithFormat:@"SELF MATCHES '.+\\\\s<sip:(.+@)?.+>'"];
if ([predicate evaluateWithObject:SIPURIString]) {
NSRange delimiterRange = [SIPURIString rangeOfString:@" <"];
NSMutableCharacterSet *trimmingCharacterSet
= [[[NSCharacterSet whitespaceCharacterSet] mutableCopy] autorelease];
[trimmingCharacterSet addCharactersInString:@"\""];
[self setDisplayName:
[[SIPURIString substringToIndex:delimiterRange.location]
stringByTrimmingCharactersInSet:trimmingCharacterSet]];
NSRange userAndHostRange
= [SIPURIString rangeOfString:@"<sip:" options:NSCaseInsensitiveSearch];
userAndHostRange.location += 5;
userAndHostRange.length
= [SIPURIString length] - userAndHostRange.location - 1;
NSString *userAndHost = [SIPURIString substringWithRange:userAndHostRange];
NSRange atSignRange = [userAndHost rangeOfString:@"@"
options:NSBackwardsSearch];
if (atSignRange.location != NSNotFound) {
[self setUser:[userAndHost substringToIndex:atSignRange.location]];
[self setHost:[userAndHost substringFromIndex:
(atSignRange.location + 1)]];
} else {
[self setHost:userAndHost];
}
return self;
}
if (![[AKSIPUserAgent sharedUserAgent] isStarted]) {
[self release];
return nil;
}
pjsip_name_addr *nameAddr;
nameAddr = (pjsip_name_addr *)pjsip_parse_uri(
[[AKSIPUserAgent sharedUserAgent] pjPool],
(char *)[SIPURIString cStringUsingEncoding:NSUTF8StringEncoding],
[SIPURIString length], PJSIP_PARSE_URI_AS_NAMEADDR);
if (nameAddr == NULL) {
[self release];
return nil;
}
[self setDisplayName:[NSString stringWithPJString:nameAddr->display]];
pj_str_t *schemePJString = (pj_str_t *)pjsip_uri_get_scheme(nameAddr);
NSString *scheme = [NSString stringWithPJString:*schemePJString];
if ([scheme isEqualToString:@"sip"] || [scheme isEqualToString:@"sips"]) {
pjsip_sip_uri *uri = (pjsip_sip_uri *)pjsip_uri_get_uri(nameAddr);
[self setUser:[NSString stringWithPJString:uri->user]];
[self setPassword:[NSString stringWithPJString:uri->passwd]];
[self setHost:[NSString stringWithPJString:uri->host]];
[self setPort:uri->port];
[self setUserParameter:[NSString stringWithPJString:uri->user_param]];
[self setMethodParameter:[NSString stringWithPJString:uri->method_param]];
[self setTransportParameter:
[NSString stringWithPJString:uri->transport_param]];
[self setTTLParameter:uri->ttl_param];
[self setLooseRoutingParameter:uri->lr_param];
[self setMaddrParameter:[NSString stringWithPJString:uri->maddr_param]];
} else if ([scheme isEqualToString:@"tel"]) {
// TODO(eofster): we really must have some kind of AKTelURI here instead.
pjsip_tel_uri *uri = (pjsip_tel_uri *)pjsip_uri_get_uri(nameAddr);
[self setUser:[NSString stringWithPJString:uri->number]];
} else {
[self release];
return nil;
}
return self;
}
- (void)dealloc {
[displayName_ release];
[user_ release];
[password_ release];
[host_ release];
[userParameter_ release];
[methodParameter_ release];
[transportParameter_ release];
[maddrParameter_ release];
[super dealloc];
}
- (NSString *)description {
NSString *SIPAddressWithPort = [self SIPAddress];
if ([self port] > 0) {
SIPAddressWithPort = [SIPAddressWithPort stringByAppendingFormat:@":%d",
[self port]];
}
if ([[self displayName] length] > 0) {
return [NSString stringWithFormat:@"\"%@\" <sip:%@>",
[self displayName], SIPAddressWithPort];
} else {
return [NSString stringWithFormat:@"<sip:%@>", SIPAddressWithPort];
}
}
#pragma mark -
#pragma mark NSCopying protocol
- (id)copyWithZone:(NSZone *)zone {
AKSIPURI *newURI
= [[AKSIPURI allocWithZone:zone] initWithUser:[self user]
host:[self host]
displayName:[self displayName]];
[newURI setPassword:[self password]];
[newURI setPort:[self port]];
[newURI setUserParameter:[self userParameter]];
[newURI setMethodParameter:[self methodParameter]];
[newURI setTransportParameter:[self transportParameter]];
[newURI setTTLParameter:[self TTLParameter]];
[newURI setLooseRoutingParameter:[self looseRoutingParameter]];
[newURI setMaddrParameter:[self maddrParameter]];
return newURI;
}
@end