Commit 7329210d authored by 翟国钧's avatar 翟国钧

获取IP地址的方法更新

parent 534b3740
...@@ -348,7 +348,7 @@ static NSString *sdkVersion = @"110"; ...@@ -348,7 +348,7 @@ static NSString *sdkVersion = @"110";
@(self.gps.coordinate.latitude),@"lat", @(self.gps.coordinate.latitude),@"lat",
@(self.gps.coordinate.longitude),@"lng", @(self.gps.coordinate.longitude),@"lng",
_netStatus,@"is_WiFi", _netStatus,@"is_WiFi",
[PhobosUtil getIPAddress],@"ip",nil]; [PhobosUtil getIPAddress:YES],@"ip",nil];
NSMutableDictionary *appParams = [NSMutableDictionary dictionaryWithObjectsAndKeys: NSMutableDictionary *appParams = [NSMutableDictionary dictionaryWithObjectsAndKeys:
self.appName, @"name", self.appName, @"name",
self.appVersion, @"version", self.appVersion, @"version",
......
...@@ -40,5 +40,5 @@ typedef void (^SendDataSuccessBlock)(NSInteger code); ...@@ -40,5 +40,5 @@ typedef void (^SendDataSuccessBlock)(NSInteger code);
/** /**
* 获取IP地址 * 获取IP地址
*/ */
+ (NSString *)getIPAddress; + (NSString *)getIPAddress:(BOOL)preferIPv4;
@end @end
...@@ -12,6 +12,13 @@ ...@@ -12,6 +12,13 @@
#import <AdSupport/AdSupport.h> #import <AdSupport/AdSupport.h>
#import <ifaddrs.h> #import <ifaddrs.h>
#import <arpa/inet.h> #import <arpa/inet.h>
#import <net/if.h>
#define IOS_CELLULAR @"pdp_ip0"
#define IOS_WIFI @"en0"
#define IOS_VPN @"utun0"
#define IP_ADDR_IPv4 @"ipv4"
#define IP_ADDR_IPv6 @"ipv6"
@implementation PhobosUtil @implementation PhobosUtil
...@@ -196,30 +203,86 @@ ...@@ -196,30 +203,86 @@
return idfv; return idfv;
} }
+ (NSString *)getIPAddress { + (NSString *)getIPAddress:(BOOL)preferIPv4 {
NSString *address = @""; NSArray *searchArray = preferIPv4 ?
struct ifaddrs *interfaces = NULL; @[ IOS_VPN @"/" IP_ADDR_IPv4, IOS_VPN @"/" IP_ADDR_IPv6, IOS_WIFI @"/" IP_ADDR_IPv4, IOS_WIFI @"/" IP_ADDR_IPv6, IOS_CELLULAR @"/" IP_ADDR_IPv4, IOS_CELLULAR @"/" IP_ADDR_IPv6 ] :
struct ifaddrs *temp_addr = NULL; @[ IOS_VPN @"/" IP_ADDR_IPv6, IOS_VPN @"/" IP_ADDR_IPv4, IOS_WIFI @"/" IP_ADDR_IPv6, IOS_WIFI @"/" IP_ADDR_IPv4, IOS_CELLULAR @"/" IP_ADDR_IPv6, IOS_CELLULAR @"/" IP_ADDR_IPv4 ] ;
int success = 0;
NSDictionary *addresses = [self getIPAddresses];
NSLog(@"addresses: %@", addresses);
__block NSString *address;
[searchArray enumerateObjectsUsingBlock:^(NSString *key, NSUInteger idx, BOOL *stop)
{
address = addresses[key];
//筛选出IP地址格式
if([self isValidatIP:address]) *stop = YES;
} ];
return address ? address : @"0.0.0.0";
}
+ (BOOL)isValidatIP:(NSString *)ipAddress {
if (ipAddress.length == 0) {
return NO;
}
NSString *urlRegEx = @"^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
"([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
"([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
"([01]?\\d\\d?|2[0-4]\\d|25[0-5])$";
NSError *error;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:urlRegEx options:0 error:&error];
if (regex != nil) {
NSTextCheckingResult *firstMatch=[regex firstMatchInString:ipAddress options:0 range:NSMakeRange(0, [ipAddress length])];
if (firstMatch) {
NSRange resultRange = [firstMatch rangeAtIndex:0];
NSString *result=[ipAddress substringWithRange:resultRange];
//输出结果
NSLog(@"%@",result);
return YES;
}
}
return NO;
}
+ (NSDictionary *)getIPAddresses {
NSMutableDictionary *addresses = [NSMutableDictionary dictionaryWithCapacity:8];
// retrieve the current interfaces - returns 0 on success // retrieve the current interfaces - returns 0 on success
success = getifaddrs(&interfaces); struct ifaddrs *interfaces;
if (success == 0) { if(!getifaddrs(&interfaces)) {
// Loop through linked list of interfaces // Loop through linked list of interfaces
temp_addr = interfaces; struct ifaddrs *interface;
while(temp_addr != NULL) { for(interface=interfaces; interface; interface=interface->ifa_next) {
if(temp_addr->ifa_addr->sa_family == AF_INET) { if(!(interface->ifa_flags & IFF_UP) /* || (interface->ifa_flags & IFF_LOOPBACK) */ ) {
// Check if interface is en0 which is the wifi connection on the iPhone continue; // deeply nested code harder to read
if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"]) { }
// Get NSString from C String const struct sockaddr_in *addr = (const struct sockaddr_in*)interface->ifa_addr;
address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)]; char addrBuf[ MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN) ];
if(addr && (addr->sin_family==AF_INET || addr->sin_family==AF_INET6)) {
NSString *name = [NSString stringWithUTF8String:interface->ifa_name];
NSString *type;
if(addr->sin_family == AF_INET) {
if(inet_ntop(AF_INET, &addr->sin_addr, addrBuf, INET_ADDRSTRLEN)) {
type = IP_ADDR_IPv4;
}
} else {
const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6*)interface->ifa_addr;
if(inet_ntop(AF_INET6, &addr6->sin6_addr, addrBuf, INET6_ADDRSTRLEN)) {
type = IP_ADDR_IPv6;
}
}
if(type) {
NSString *key = [NSString stringWithFormat:@"%@/%@", name, type];
addresses[key] = [NSString stringWithUTF8String:addrBuf];
} }
} }
temp_addr = temp_addr->ifa_next;
} }
// Free memory
freeifaddrs(interfaces);
} }
// Free memory return [addresses count] ? addresses : nil;
freeifaddrs(interfaces);
return address;
} }
@end @end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment