| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- // Copyright 2021 Google LLC
- //
- // 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 <Foundation/Foundation.h>
- #ifndef FIREBASE_BUILD_CMAKE
- @import FirebaseCoreInternal;
- #endif // FIREBASE_BUILD_CMAKE
- #import "FirebaseCore/Extension/FIRAppInternal.h"
- #import "FirebaseCore/Extension/FIRHeartbeatLogger.h"
- #ifndef FIREBASE_BUILD_CMAKE
- NSString *_Nullable FIRHeaderValueFromHeartbeatsPayload(FIRHeartbeatsPayload *heartbeatsPayload) {
- if ([heartbeatsPayload isEmpty]) {
- return nil;
- }
- return [heartbeatsPayload headerValue];
- }
- #endif // FIREBASE_BUILD_CMAKE
- @interface FIRHeartbeatLogger ()
- #ifndef FIREBASE_BUILD_CMAKE
- @property(nonatomic, readonly) FIRHeartbeatController *heartbeatController;
- #endif // FIREBASE_BUILD_CMAKE
- @property(copy, readonly) NSString * (^userAgentProvider)(void);
- @end
- @implementation FIRHeartbeatLogger
- - (instancetype)initWithAppID:(NSString *)appID {
- return [self initWithAppID:appID userAgentProvider:[[self class] currentUserAgentProvider]];
- }
- - (instancetype)initWithAppID:(NSString *)appID
- userAgentProvider:(NSString * (^)(void))userAgentProvider {
- self = [super init];
- if (self) {
- #ifndef FIREBASE_BUILD_CMAKE
- _heartbeatController = [[FIRHeartbeatController alloc] initWithId:[appID copy]];
- #endif // FIREBASE_BUILD_CMAKE
- _userAgentProvider = [userAgentProvider copy];
- }
- return self;
- }
- + (NSString * (^)(void))currentUserAgentProvider {
- return ^NSString * {
- return [FIRApp firebaseUserAgent];
- };
- }
- - (void)log {
- NSString *userAgent = _userAgentProvider();
- #ifndef FIREBASE_BUILD_CMAKE
- [_heartbeatController log:userAgent];
- #endif // FIREBASE_BUILD_CMAKE
- }
- #ifndef FIREBASE_BUILD_CMAKE
- - (NSString *_Nullable)headerValue {
- return FIRHeaderValueFromHeartbeatsPayload([self flushHeartbeatsIntoPayload]);
- }
- - (void)asyncHeaderValueWithCompletionHandler:(void (^)(NSString *_Nullable))completionHandler
- API_AVAILABLE(ios(13.0), macosx(10.15), macCatalyst(13.0), tvos(13.0), watchos(6.0)) {
- [self flushHeartbeatsIntoPayloadWithCompletionHandler:^(FIRHeartbeatsPayload *payload) {
- completionHandler(FIRHeaderValueFromHeartbeatsPayload(payload));
- }];
- }
- - (FIRHeartbeatsPayload *)flushHeartbeatsIntoPayload {
- FIRHeartbeatsPayload *payload = [_heartbeatController flush];
- return payload;
- }
- - (void)flushHeartbeatsIntoPayloadWithCompletionHandler:
- (void (^)(FIRHeartbeatsPayload *))completionHandler {
- [_heartbeatController flushAsyncWithCompletionHandler:^(FIRHeartbeatsPayload *payload) {
- completionHandler(payload);
- }];
- }
- #endif // FIREBASE_BUILD_CMAKE
- - (FIRDailyHeartbeatCode)heartbeatCodeForToday {
- #ifndef FIREBASE_BUILD_CMAKE
- FIRHeartbeatsPayload *todaysHeartbeatPayload = [_heartbeatController flushHeartbeatFromToday];
- if ([todaysHeartbeatPayload isEmpty]) {
- return FIRDailyHeartbeatCodeNone;
- } else {
- return FIRDailyHeartbeatCodeSome;
- }
- #else
- return FIRDailyHeartbeatCodeNone;
- #endif // FIREBASE_BUILD_CMAKE
- }
- @end
|