forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFUIPrivacyAndTermsOfServiceView.m
More file actions
98 lines (80 loc) · 3.69 KB
/
Copy pathFUIPrivacyAndTermsOfServiceView.m
File metadata and controls
98 lines (80 loc) · 3.69 KB
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
//
// Copyright (c) 2016 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIPrivacyAndTermsOfServiceView.h"
@import FirebaseAuth;
#import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuth.h"
#import "FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuthStrings.h"
NS_ASSUME_NONNULL_BEGIN
@implementation FUIPrivacyAndTermsOfServiceView
#pragma mark - Public
- (void)useFullMessage {
NSAttributedString *fullMessage = [self fullPrivacyPolicyAndTOSMessage];
self.attributedText = fullMessage;
self.textAlignment = NSTextAlignmentLeft;
}
- (void)useFooterMessage {
NSAttributedString *footerMessage = [self footerPrivacyPolicyAndTOSMessage];
self.attributedText = footerMessage;
self.textAlignment = NSTextAlignmentRight;
}
#pragma mark - Protected
- (nullable NSAttributedString *)privacyPolicyAndTOSMessageFromFormat:(NSString *)format {
FUIAuth *authUI = self.authUI ?: [FUIAuth defaultAuthUI];
NSURL *TOSURL = authUI.TOSURL;
NSURL *privacyPolicyURL = authUI.privacyPolicyURL;
NSUInteger TOSURLStringLength = TOSURL.absoluteString.length;
NSUInteger privacyPolicyURLStringLength = privacyPolicyURL.absoluteString.length;
if (!TOSURLStringLength && !privacyPolicyURLStringLength) {
return nil;
}
if (!TOSURLStringLength || !privacyPolicyURLStringLength) {
NSLog(@"The terms of service and privacy policy URLs for your app must be provided together. Pl"
"ease set the terms of service policy using [FUIAuth defaultAuthUI].TOSURL and the privacy"
" policy URL using [FUIAuth defaultAuthUI].privacyPolicyURL");
return nil;
}
NSString *termsOfServiceString = FUILocalizedString(kStr_TermsOfService);
NSString *privacyPolicyString = FUILocalizedString(kStr_PrivacyPolicy);
NSString *privacyPolicyAndTOSString =
[NSString stringWithFormat:format, termsOfServiceString, privacyPolicyString];
NSMutableAttributedString *attributedLinkText = nil;
if (@available(iOS 13.0, *)) {
attributedLinkText = [[NSMutableAttributedString alloc] initWithString:privacyPolicyAndTOSString
attributes:@{NSForegroundColorAttributeName: [UIColor labelColor]}];
} else {
attributedLinkText = [[NSMutableAttributedString alloc] initWithString:privacyPolicyAndTOSString];
}
NSRange TOSRange = [privacyPolicyAndTOSString rangeOfString:termsOfServiceString];
if (TOSRange.length) {
[attributedLinkText addAttribute:NSLinkAttributeName value:TOSURL range:TOSRange];
}
NSRange privacyPolicyRange = [privacyPolicyAndTOSString rangeOfString:privacyPolicyString];
if (privacyPolicyRange.length) {
[attributedLinkText addAttribute:NSLinkAttributeName
value:privacyPolicyURL
range:privacyPolicyRange];
}
return attributedLinkText;
}
#pragma mark - Private
- (NSAttributedString *)fullPrivacyPolicyAndTOSMessage {
return [self privacyPolicyAndTOSMessageFromFormat:FUILocalizedString(kStr_TermsOfServiceMessage)];
}
- (NSAttributedString *)footerPrivacyPolicyAndTOSMessage {
return [self privacyPolicyAndTOSMessageFromFormat:@"%@ %@"];
}
@end
NS_ASSUME_NONNULL_END