-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChecker.m
70 lines (51 loc) · 2.26 KB
/
Checker.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
//
// Checker.m
// Demo20170216
//
// Created by Jacky Chan on 19/02/2017.
// Copyright © 2017 MadX Studio. All rights reserved.
//
#import "Checker.h"
#import "MySingleton.h"
#import "MessageObject.h"
NSString *const keyConstant = @"carlist.my";
@implementation Checker
+(MessageObject *)checkData:(NSString *)input {
NSDataDetector *detector = [[MySingleton sharedInstance] openDataDetector];
NSArray *matches = [detector matchesInString:input options:0 range:NSMakeRange(0, [input length])];
MessageObject *msg = [[MessageObject alloc] init];
if (matches) {
for (NSTextCheckingResult *match in matches) {
NSString *mString = [match description];
if ([match resultType] == NSTextCheckingTypeLink) {
NSURL *url = [match URL]; //Get URL
if ([mString rangeOfString:keyConstant
options:NSRegularExpressionSearch].location != NSNotFound) {
input = [input substringToIndex:match.range.location-1];
[msg setMessage:input];
[msg setUrl:[url absoluteString]];
input = nil;
} else {
input = [input stringByReplacingCharactersInRange:
NSMakeRange(match.range.location,match.range.length)
withString:@"*****"];
[msg setMessage:input];
input = nil;
}
} else if ([match resultType] == NSTextCheckingTypePhoneNumber) {
//NSString *phoneNumber = [match phoneNumber]; Get Phone Number
input = [input stringByReplacingCharactersInRange:
NSMakeRange(match.range.location,match.range.length)
withString:@"************"];
[msg setMessage:input];
input = nil;
}
// NSLog(@"found URL: %@", matchingString);
// NSLog(@"length %ld",match.range.length);
// NSLog(@"location %ld",match.range.location);
}
}
[[MySingleton sharedInstance] closeDataDetector];
return msg;
}
@end