aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Messaging/FIRMessagingCheckinService.m
blob: 9dad847cbb90de68ddf7b73a6f67b1c0192b2b8d (plain)
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
/*
 * Copyright 2017 Google
 *
 * 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 "FIRMessagingCheckinService.h"

#import "FIRMessagingUtilities.h"
#import "NSError+FIRMessaging.h"

@interface FIRMessagingCheckinService ()

// This property is of type FIRInstanceIDCheckinPreferences, if InstanceID was directly linkable
@property(nonatomic, readwrite, strong) id checkinPreferences;

@end

@implementation FIRMessagingCheckinService;

#pragma mark - Reflection-Based Getter Functions

// Encapsulates the -hasValidCheckinInfo method of FIRInstanceIDCheckinPreferences
BOOL FIRMessagingCheckinService_hasValidCheckinInfo(id checkinPreferences) {
  SEL hasValidCheckinInfoSelector = NSSelectorFromString(@"hasValidCheckinInfo");
  if (![checkinPreferences respondsToSelector:hasValidCheckinInfoSelector]) {
    // Can't check hasValidCheckinInfo
    return NO;
  }

  // Since hasValidCheckinInfo returns a BOOL, use NSInvocation
  NSMethodSignature *methodSignature =
      [[checkinPreferences class] instanceMethodSignatureForSelector:hasValidCheckinInfoSelector];
  NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
  invocation.selector = hasValidCheckinInfoSelector;
  invocation.target = checkinPreferences;
  [invocation invoke];
  BOOL returnValue;
  [invocation getReturnValue:&returnValue];
  return returnValue;
}

// Returns a non-scalar (id) object based on the property name
id FIRMessagingCheckinService_propertyNamed(id checkinPreferences, NSString *propertyName) {
  SEL propertyGetterSelector = NSSelectorFromString(propertyName);
  if ([checkinPreferences respondsToSelector:propertyGetterSelector]) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
    return [checkinPreferences performSelector:propertyGetterSelector];
#pragma clang diagnostic pop
  }
  return nil;
}

#pragma mark - Methods

- (BOOL)tryToLoadPrefetchedCheckinPreferences {
  Class instanceIDClass = NSClassFromString(@"FIRInstanceID");
  if (!instanceIDClass) {
    // InstanceID is not linked
    return NO;
  }

  // [FIRInstanceID instanceID]
  SEL instanceIDSelector = NSSelectorFromString(@"instanceID");
  if (![instanceIDClass respondsToSelector:instanceIDSelector]) {
    return NO;
  }
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
  id instanceID = [instanceIDClass performSelector:instanceIDSelector];
#pragma clang diagnostic pop
  if (!instanceID) {
    // Instance ID singleton not available
    return NO;
  }

  // [[FIRInstanceID instanceID] cachedCheckinPreferences]
  SEL cachedCheckinPrefsSelector = NSSelectorFromString(@"cachedCheckinPreferences");
  if (![instanceID respondsToSelector:cachedCheckinPrefsSelector]) {
    // cachedCheckinPreferences is not accessible
    return NO;
  }
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
  id checkinPreferences = [instanceID performSelector:cachedCheckinPrefsSelector];
#pragma clang diagnostic pop
  if (!checkinPreferences) {
    // No cached checkin prefs
    return NO;
  }

  BOOL hasValidInfo = FIRMessagingCheckinService_hasValidCheckinInfo(checkinPreferences);
  if (hasValidInfo) {
    self.checkinPreferences = checkinPreferences;
  }
  return hasValidInfo;
}

#pragma mark - API

- (NSString *)deviceAuthID {
  return FIRMessagingCheckinService_propertyNamed(self.checkinPreferences, @"deviceID");
}

- (NSString *)secretToken {
  return FIRMessagingCheckinService_propertyNamed(self.checkinPreferences, @"secretToken");
}

- (NSString *)versionInfo {
  return FIRMessagingCheckinService_propertyNamed(self.checkinPreferences, @"versionInfo");
}

- (NSString *)digest {
  return FIRMessagingCheckinService_propertyNamed(self.checkinPreferences, @"digest");
}

- (BOOL)hasValidCheckinInfo {
  return FIRMessagingCheckinService_hasValidCheckinInfo(self.checkinPreferences);
}

@end