customerio-expo-plugin 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -10
- package/plugin/lib/commonjs/ios/withAppDelegateModifications.js +5 -3
- package/plugin/lib/commonjs/ios/withAppDelegateModifications.js.map +1 -1
- package/plugin/lib/commonjs/ios/withCIOIos.js +48 -5
- package/plugin/lib/commonjs/ios/withCIOIos.js.map +1 -1
- package/plugin/lib/commonjs/ios/withNotificationsXcodeProject.js +39 -23
- package/plugin/lib/commonjs/ios/withNotificationsXcodeProject.js.map +1 -1
- package/plugin/lib/commonjs/ios/withXcodeProject.js +2 -13
- package/plugin/lib/commonjs/ios/withXcodeProject.js.map +1 -1
- package/plugin/lib/commonjs/types/cio-types.js.map +1 -1
- package/plugin/lib/module/ios/withAppDelegateModifications.js +5 -3
- package/plugin/lib/module/ios/withAppDelegateModifications.js.map +1 -1
- package/plugin/lib/module/ios/withCIOIos.js +48 -5
- package/plugin/lib/module/ios/withCIOIos.js.map +1 -1
- package/plugin/lib/module/ios/withNotificationsXcodeProject.js +39 -23
- package/plugin/lib/module/ios/withNotificationsXcodeProject.js.map +1 -1
- package/plugin/lib/module/ios/withXcodeProject.js +2 -13
- package/plugin/lib/module/ios/withXcodeProject.js.map +1 -1
- package/plugin/lib/module/types/cio-types.js.map +1 -1
- package/plugin/lib/typescript/types/cio-types.d.ts +37 -12
- package/plugin/src/ios/withAppDelegateModifications.ts +5 -10
- package/plugin/src/ios/withCIOIos.ts +57 -6
- package/plugin/src/ios/withNotificationsXcodeProject.ts +53 -45
- package/plugin/src/ios/withXcodeProject.ts +2 -10
- package/plugin/src/types/cio-types.ts +47 -12
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["withAppDelegate","getAppDelegateHeaderFilePath","CIO_APPDELEGATEDECLARATION_REGEX","CIO_APPDELEGATEHEADER_IMPORT_SNIPPET","CIO_APPDELEGATEHEADER_REGEX","CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET","CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET","CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET","CIO_DIDFINISHLAUNCHINGMETHOD_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET","CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET","CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET","CIO_DEEPLINK_COMMENT_REGEX","CIO_INITIALIZECIOSDK_SNIPPET","injectCodeBeforeMultiLineRegex","injectCodeByLineNumber","injectCodeByMultiLineRegex","injectCodeByMultiLineRegexAndReplaceLine","replaceCodeByRegex","matchRegexExists","FileManagement","isFcmPushProvider","addImport","stringContents","appName","importRegex","addedImport","getImportSnippet","match","endOfMatchIndex","index","undefined","length","addNotificationHandlerDeclaration","addNotificationConfiguration","addInitializeNativeCioSdk","addHandleDeeplinkInKilledStateConfiguration","regex","addDidFailToRegisterForRemoteNotificationsWithError","addDidRegisterForRemoteNotificationsWithDeviceToken","addExpoNotificationsHeaderModification","addFirebaseDelegateForwardDeclarationIfNeeded","addAppdelegateHeaderModification","replace","interfaceDeclaration","_groupedDelegates","existingDelegates","includes","trim","addHandleDeeplinkInKilledState","snippet","withAppDelegateModifications","configOuter","props","config","modResults","contents","RegExp","modRequest","projectName","headerPath","projectRoot","headerContent","read","write","disableNotificationRegistration","handleDeeplinkInKilledState","console","log"],"sources":["withAppDelegateModifications.ts"],"sourcesContent":["import { ConfigPlugin, withAppDelegate } from '@expo/config-plugins';\nimport { getAppDelegateHeaderFilePath } from '@expo/config-plugins/build/ios/Paths';\n\nimport {\n CIO_APPDELEGATEDECLARATION_REGEX,\n CIO_APPDELEGATEHEADER_IMPORT_SNIPPET,\n CIO_APPDELEGATEHEADER_REGEX,\n CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET,\n CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET,\n CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET,\n CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET,\n CIO_DIDFINISHLAUNCHINGMETHOD_REGEX,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET,\n CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX,\n CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET,\n CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET,\n CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET,\n CIO_DEEPLINK_COMMENT_REGEX,\n CIO_INITIALIZECIOSDK_SNIPPET,\n} from '../helpers/constants/ios';\nimport {\n injectCodeBeforeMultiLineRegex,\n injectCodeByLineNumber,\n injectCodeByMultiLineRegex,\n injectCodeByMultiLineRegexAndReplaceLine,\n replaceCodeByRegex,\n matchRegexExists,\n} from '../helpers/utils/codeInjection';\nimport { FileManagement } from '../helpers/utils/fileManagement';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { isFcmPushProvider } from './utils';\n\nconst addImport = (stringContents: string, appName: string) => {\n const importRegex = /^(#import .*)\\n/gm;\n const addedImport = getImportSnippet(appName);\n\n const match = stringContents.match(importRegex);\n let endOfMatchIndex: number;\n if (!match || match.index === undefined) {\n // No imports found, just add to start of file:\n endOfMatchIndex = 0;\n } else {\n // Add after first import:\n endOfMatchIndex = match.index + match[0].length;\n }\n\n stringContents = injectCodeByLineNumber(\n stringContents,\n endOfMatchIndex,\n addedImport\n );\n\n return stringContents;\n};\n\nconst addNotificationHandlerDeclaration = (stringContents: string) => {\n stringContents = injectCodeByMultiLineRegex(\n stringContents,\n CIO_APPDELEGATEDECLARATION_REGEX,\n CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addNotificationConfiguration = (stringContents: string) => {\n stringContents = injectCodeBeforeMultiLineRegex(\n stringContents,\n CIO_DIDFINISHLAUNCHINGMETHOD_REGEX,\n CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addInitializeNativeCioSdk = (stringContents: string) => {\n stringContents = injectCodeBeforeMultiLineRegex(\n stringContents,\n CIO_DIDFINISHLAUNCHINGMETHOD_REGEX,\n CIO_INITIALIZECIOSDK_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addHandleDeeplinkInKilledStateConfiguration = (\n stringContents: string,\n regex: RegExp\n) => {\n stringContents = injectCodeBeforeMultiLineRegex(\n stringContents,\n regex,\n CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addDidFailToRegisterForRemoteNotificationsWithError = (\n stringContents: string\n) => {\n stringContents = injectCodeByMultiLineRegexAndReplaceLine(\n stringContents,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addDidRegisterForRemoteNotificationsWithDeviceToken = (\n stringContents: string\n) => {\n stringContents = injectCodeByMultiLineRegexAndReplaceLine(\n stringContents,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET\n );\n\n return stringContents;\n};\n\n// Adds required import for Expo Notifications package in AppDelegate.\n// Required to call functions from the package.\nconst addExpoNotificationsHeaderModification = (stringContents: string) => {\n stringContents = injectCodeByLineNumber(\n stringContents,\n 0,\n `\n#if __has_include(<EXNotifications/EXNotificationCenterDelegate.h>)\n#import <EXNotifications/EXNotificationCenterDelegate.h>\n#endif\n`\n );\n\n return stringContents;\n};\n\nconst addFirebaseDelegateForwardDeclarationIfNeeded = (stringContents: string) => {\n stringContents = injectCodeByLineNumber(\n stringContents,\n 0,\n '@protocol FIRMessagingDelegate;'\n );\n\n return stringContents;\n};\n\nconst addAppdelegateHeaderModification = (stringContents: string) => {\n // Add UNUserNotificationCenterDelegate if needed\n stringContents = stringContents.replace(\n CIO_APPDELEGATEHEADER_REGEX,\n (match, interfaceDeclaration, _groupedDelegates, existingDelegates) => {\n if (\n existingDelegates &&\n existingDelegates.includes(\n CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET\n )\n ) {\n // The AppDelegate declaration already includes UNUserNotificationCenterDelegate, so we don't need to modify it\n return match;\n } else if (existingDelegates) {\n // Other delegates exist, append ours\n return `${CIO_APPDELEGATEHEADER_IMPORT_SNIPPET}\n${interfaceDeclaration}<${existingDelegates}, ${CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET}>\n`;\n } else {\n // No delegates exist, add ours\n return `${CIO_APPDELEGATEHEADER_IMPORT_SNIPPET}\n${interfaceDeclaration.trim()} <${CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET}>\n`;\n }\n }\n );\n\n return stringContents;\n};\n\nconst addHandleDeeplinkInKilledState = (stringContents: string) => {\n // Find if the deep link code snippet is already present\n if (matchRegexExists(stringContents, CIO_DEEPLINK_COMMENT_REGEX)) {\n return stringContents;\n }\n\n // Check if the app delegate is using RCTBridge or LaunchOptions\n let snippet = undefined;\n let regex = CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX;\n if (\n matchRegexExists(\n stringContents,\n CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX\n )\n ) {\n snippet = CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET;\n regex = CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX;\n } else if (\n matchRegexExists(\n stringContents,\n CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX\n )\n ) {\n snippet = CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET;\n }\n // Add code only if the app delegate is using RCTBridge or LaunchOptions\n if (snippet !== undefined) {\n stringContents = addHandleDeeplinkInKilledStateConfiguration(\n stringContents,\n regex\n );\n stringContents = replaceCodeByRegex(stringContents, regex, snippet);\n }\n return stringContents;\n};\n\nexport const withAppDelegateModifications: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withAppDelegate(configOuter, async (config) => {\n let stringContents = config.modResults.contents;\n const regex = new RegExp(\n `#import <${config.modRequest.projectName}-Swift.h>`\n );\n const match = stringContents.match(regex);\n\n if (!match) {\n const headerPath = getAppDelegateHeaderFilePath(\n config.modRequest.projectRoot\n );\n let headerContent = await FileManagement.read(headerPath);\n headerContent = addAppdelegateHeaderModification(headerContent);\n FileManagement.write(headerPath, headerContent);\n\n stringContents = addImport(\n stringContents,\n config.modRequest.projectName as string\n );\n stringContents = addNotificationHandlerDeclaration(stringContents);\n\n // any other value would be treated as true, it has to be explicitly false to disable\n if (\n props.disableNotificationRegistration !== undefined &&\n props.disableNotificationRegistration === false\n ) {\n stringContents = addNotificationConfiguration(stringContents);\n }\n\n stringContents = addInitializeNativeCioSdk(stringContents);\n\n if (\n props.handleDeeplinkInKilledState !== undefined &&\n props.handleDeeplinkInKilledState === true\n ) {\n stringContents = addHandleDeeplinkInKilledState(stringContents);\n }\n\n stringContents =\n addDidFailToRegisterForRemoteNotificationsWithError(stringContents);\n stringContents =\n addDidRegisterForRemoteNotificationsWithDeviceToken(stringContents);\n\n if (isFcmPushProvider(props)) {\n stringContents = addFirebaseDelegateForwardDeclarationIfNeeded(stringContents);\n } \n\n stringContents = addExpoNotificationsHeaderModification(stringContents);\n\n config.modResults.contents = stringContents;\n } else {\n console.log('Customerio AppDelegate changes already exist. Skipping...');\n }\n\n return config;\n });\n};\nfunction getImportSnippet(appName: string) {\n return `\n// Add swift bridge imports\n#import <ExpoModulesCore-Swift.h>\n#import <${appName}-Swift.h>\n `;\n}\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["withAppDelegate","getAppDelegateHeaderFilePath","CIO_APPDELEGATEDECLARATION_REGEX","CIO_APPDELEGATEHEADER_IMPORT_SNIPPET","CIO_APPDELEGATEHEADER_REGEX","CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET","CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET","CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET","CIO_DIDFINISHLAUNCHINGMETHOD_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET","CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET","CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET","CIO_DEEPLINK_COMMENT_REGEX","CIO_INITIALIZECIOSDK_SNIPPET","injectCodeBeforeMultiLineRegex","injectCodeByLineNumber","injectCodeByMultiLineRegex","injectCodeByMultiLineRegexAndReplaceLine","replaceCodeByRegex","matchRegexExists","FileManagement","isFcmPushProvider","addImport","stringContents","appName","importRegex","addedImport","getImportSnippet","match","endOfMatchIndex","index","undefined","length","addNotificationHandlerDeclaration","addNotificationConfiguration","addInitializeNativeCioSdk","addHandleDeeplinkInKilledStateConfiguration","regex","addDidFailToRegisterForRemoteNotificationsWithError","addDidRegisterForRemoteNotificationsWithDeviceToken","addExpoNotificationsHeaderModification","addFirebaseDelegateForwardDeclarationIfNeeded","addAppdelegateHeaderModification","replace","interfaceDeclaration","_groupedDelegates","existingDelegates","includes","trim","addHandleDeeplinkInKilledState","snippet","withAppDelegateModifications","configOuter","props","config","modResults","contents","RegExp","modRequest","projectName","_props$pushNotificati","_props$pushNotificati2","headerPath","projectRoot","headerContent","read","write","pushNotification","disableNotificationRegistration","handleDeeplinkInKilledState","console","log"],"sources":["withAppDelegateModifications.ts"],"sourcesContent":["import { ConfigPlugin, withAppDelegate } from '@expo/config-plugins';\nimport { getAppDelegateHeaderFilePath } from '@expo/config-plugins/build/ios/Paths';\n\nimport {\n CIO_APPDELEGATEDECLARATION_REGEX,\n CIO_APPDELEGATEHEADER_IMPORT_SNIPPET,\n CIO_APPDELEGATEHEADER_REGEX,\n CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET,\n CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET,\n CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET,\n CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET,\n CIO_DIDFINISHLAUNCHINGMETHOD_REGEX,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET,\n CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX,\n CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET,\n CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET,\n CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET,\n CIO_DEEPLINK_COMMENT_REGEX,\n CIO_INITIALIZECIOSDK_SNIPPET,\n} from '../helpers/constants/ios';\nimport {\n injectCodeBeforeMultiLineRegex,\n injectCodeByLineNumber,\n injectCodeByMultiLineRegex,\n injectCodeByMultiLineRegexAndReplaceLine,\n replaceCodeByRegex,\n matchRegexExists,\n} from '../helpers/utils/codeInjection';\nimport { FileManagement } from '../helpers/utils/fileManagement';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { isFcmPushProvider } from './utils';\n\nconst addImport = (stringContents: string, appName: string) => {\n const importRegex = /^(#import .*)\\n/gm;\n const addedImport = getImportSnippet(appName);\n\n const match = stringContents.match(importRegex);\n let endOfMatchIndex: number;\n if (!match || match.index === undefined) {\n // No imports found, just add to start of file:\n endOfMatchIndex = 0;\n } else {\n // Add after first import:\n endOfMatchIndex = match.index + match[0].length;\n }\n\n stringContents = injectCodeByLineNumber(\n stringContents,\n endOfMatchIndex,\n addedImport\n );\n\n return stringContents;\n};\n\nconst addNotificationHandlerDeclaration = (stringContents: string) => {\n stringContents = injectCodeByMultiLineRegex(\n stringContents,\n CIO_APPDELEGATEDECLARATION_REGEX,\n CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addNotificationConfiguration = (stringContents: string) => {\n stringContents = injectCodeBeforeMultiLineRegex(\n stringContents,\n CIO_DIDFINISHLAUNCHINGMETHOD_REGEX,\n CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addInitializeNativeCioSdk = (stringContents: string) => {\n stringContents = injectCodeBeforeMultiLineRegex(\n stringContents,\n CIO_DIDFINISHLAUNCHINGMETHOD_REGEX,\n CIO_INITIALIZECIOSDK_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addHandleDeeplinkInKilledStateConfiguration = (\n stringContents: string,\n regex: RegExp\n) => {\n stringContents = injectCodeBeforeMultiLineRegex(\n stringContents,\n regex,\n CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addDidFailToRegisterForRemoteNotificationsWithError = (\n stringContents: string\n) => {\n stringContents = injectCodeByMultiLineRegexAndReplaceLine(\n stringContents,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX,\n CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET\n );\n\n return stringContents;\n};\n\nconst addDidRegisterForRemoteNotificationsWithDeviceToken = (\n stringContents: string\n) => {\n stringContents = injectCodeByMultiLineRegexAndReplaceLine(\n stringContents,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX,\n CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET\n );\n\n return stringContents;\n};\n\n// Adds required import for Expo Notifications package in AppDelegate.\n// Required to call functions from the package.\nconst addExpoNotificationsHeaderModification = (stringContents: string) => {\n stringContents = injectCodeByLineNumber(\n stringContents,\n 0,\n `\n#if __has_include(<EXNotifications/EXNotificationCenterDelegate.h>)\n#import <EXNotifications/EXNotificationCenterDelegate.h>\n#endif\n`\n );\n\n return stringContents;\n};\n\nconst addFirebaseDelegateForwardDeclarationIfNeeded = (stringContents: string) => {\n stringContents = injectCodeByLineNumber(\n stringContents,\n 0,\n '@protocol FIRMessagingDelegate;'\n );\n\n return stringContents;\n};\n\nconst addAppdelegateHeaderModification = (stringContents: string) => {\n // Add UNUserNotificationCenterDelegate if needed\n stringContents = stringContents.replace(\n CIO_APPDELEGATEHEADER_REGEX,\n (match, interfaceDeclaration, _groupedDelegates, existingDelegates) => {\n if (\n existingDelegates &&\n existingDelegates.includes(\n CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET\n )\n ) {\n // The AppDelegate declaration already includes UNUserNotificationCenterDelegate, so we don't need to modify it\n return match;\n } else if (existingDelegates) {\n // Other delegates exist, append ours\n return `${CIO_APPDELEGATEHEADER_IMPORT_SNIPPET}\n${interfaceDeclaration}<${existingDelegates}, ${CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET}>\n`;\n } else {\n // No delegates exist, add ours\n return `${CIO_APPDELEGATEHEADER_IMPORT_SNIPPET}\n${interfaceDeclaration.trim()} <${CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET}>\n`;\n }\n }\n );\n\n return stringContents;\n};\n\nconst addHandleDeeplinkInKilledState = (stringContents: string) => {\n // Find if the deep link code snippet is already present\n if (matchRegexExists(stringContents, CIO_DEEPLINK_COMMENT_REGEX)) {\n return stringContents;\n }\n\n // Check if the app delegate is using RCTBridge or LaunchOptions\n let snippet = undefined;\n let regex = CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX;\n if (\n matchRegexExists(\n stringContents,\n CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX\n )\n ) {\n snippet = CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET;\n regex = CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX;\n } else if (\n matchRegexExists(\n stringContents,\n CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX\n )\n ) {\n snippet = CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET;\n }\n // Add code only if the app delegate is using RCTBridge or LaunchOptions\n if (snippet !== undefined) {\n stringContents = addHandleDeeplinkInKilledStateConfiguration(\n stringContents,\n regex\n );\n stringContents = replaceCodeByRegex(stringContents, regex, snippet);\n }\n return stringContents;\n};\n\nexport const withAppDelegateModifications: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withAppDelegate(configOuter, async (config) => {\n let stringContents = config.modResults.contents;\n const regex = new RegExp(\n `#import <${config.modRequest.projectName}-Swift.h>`\n );\n const match = stringContents.match(regex);\n\n if (!match) {\n const headerPath = getAppDelegateHeaderFilePath(\n config.modRequest.projectRoot\n );\n let headerContent = await FileManagement.read(headerPath);\n headerContent = addAppdelegateHeaderModification(headerContent);\n FileManagement.write(headerPath, headerContent);\n\n stringContents = addImport(\n stringContents,\n config.modRequest.projectName as string\n );\n stringContents = addNotificationHandlerDeclaration(stringContents);\n\n // unless this property is explicity set to true, push notification\n // registration will be added to the AppDelegate\n if (props.pushNotification?.disableNotificationRegistration !== true) {\n stringContents = addNotificationConfiguration(stringContents);\n }\n\n stringContents = addInitializeNativeCioSdk(stringContents);\n\n if (props.pushNotification?.handleDeeplinkInKilledState === true) {\n stringContents = addHandleDeeplinkInKilledState(stringContents);\n }\n\n stringContents =\n addDidFailToRegisterForRemoteNotificationsWithError(stringContents);\n stringContents =\n addDidRegisterForRemoteNotificationsWithDeviceToken(stringContents);\n\n if (isFcmPushProvider(props)) {\n stringContents = addFirebaseDelegateForwardDeclarationIfNeeded(stringContents);\n }\n\n stringContents = addExpoNotificationsHeaderModification(stringContents);\n\n config.modResults.contents = stringContents;\n } else {\n console.log('Customerio AppDelegate changes already exist. Skipping...');\n }\n\n return config;\n });\n};\nfunction getImportSnippet(appName: string) {\n return `\n// Add swift bridge imports\n#import <ExpoModulesCore-Swift.h>\n#import <${appName}-Swift.h>\n `;\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -3,12 +3,55 @@ import { withCioNotificationsXcodeProject } from './withNotificationsXcodeProjec
|
|
|
3
3
|
import { withCioXcodeProject } from './withXcodeProject';
|
|
4
4
|
import { withGoogleServicesJsonFile } from './withGoogleServicesJsonFile';
|
|
5
5
|
export function withCIOIos(config, props) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
config =
|
|
9
|
-
config =
|
|
10
|
-
config =
|
|
6
|
+
const cioProps = mergeDeprecatedPropertiesAndLogWarnings(props);
|
|
7
|
+
if (cioProps.pushNotification) {
|
|
8
|
+
config = withAppDelegateModifications(config, cioProps);
|
|
9
|
+
config = withCioNotificationsXcodeProject(config, cioProps);
|
|
10
|
+
config = withCioXcodeProject(config, cioProps);
|
|
11
|
+
config = withGoogleServicesJsonFile(config, cioProps);
|
|
11
12
|
}
|
|
12
13
|
return config;
|
|
13
14
|
}
|
|
15
|
+
|
|
16
|
+
/** The basic purpose of this function is to centralize where we handle the deprecation
|
|
17
|
+
by merging the deprecated properties into the new ios.pushNotification.* properties
|
|
18
|
+
and logging a warning if they are set. This way, we can remove the deprecated properties
|
|
19
|
+
from the top level of the ios object in the future, and update this function
|
|
20
|
+
while the rest of the plugin code remains unchanged.
|
|
21
|
+
*/
|
|
22
|
+
const mergeDeprecatedPropertiesAndLogWarnings = props => {
|
|
23
|
+
// The deprecatedTopLevelProperties maps the top level properties
|
|
24
|
+
// that are deprecated to the new ios.pushNotification.* properties
|
|
25
|
+
// that should be used instead. The deprecated properties are
|
|
26
|
+
// still available for backwards compatibility, but they will
|
|
27
|
+
// be removed in the future.
|
|
28
|
+
|
|
29
|
+
const deprecatedTopLevelProperties = {
|
|
30
|
+
showPushAppInForeground: props.showPushAppInForeground,
|
|
31
|
+
autoTrackPushEvents: props.autoTrackPushEvents,
|
|
32
|
+
handleDeeplinkInKilledState: props.handleDeeplinkInKilledState,
|
|
33
|
+
disableNotificationRegistration: props.disableNotificationRegistration,
|
|
34
|
+
autoFetchDeviceToken: props.autoFetchDeviceToken
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
// loop over all the deprecated properties and log a warning if they are set
|
|
38
|
+
Object.entries(deprecatedTopLevelProperties).forEach(([key, value]) => {
|
|
39
|
+
if (value !== undefined) {
|
|
40
|
+
console.warn(`The ios.${key} property is deprecated. Please use ios.pushNotification.${key} instead.`);
|
|
41
|
+
if (props.pushNotification === undefined) {
|
|
42
|
+
props.pushNotification = {};
|
|
43
|
+
}
|
|
44
|
+
const propKey = key;
|
|
45
|
+
if (props.pushNotification[propKey] === undefined) {
|
|
46
|
+
props.pushNotification = {
|
|
47
|
+
...props.pushNotification,
|
|
48
|
+
[propKey]: value
|
|
49
|
+
};
|
|
50
|
+
} else {
|
|
51
|
+
console.warn(`The ios.${key} property is deprecated. Since the value of ios.pushNotification.${key} is set, it will be used.`);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
return props;
|
|
56
|
+
};
|
|
14
57
|
//# sourceMappingURL=withCIOIos.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["withAppDelegateModifications","withCioNotificationsXcodeProject","withCioXcodeProject","withGoogleServicesJsonFile","withCIOIos","config","props","pushNotification"],"sources":["withCIOIos.ts"],"sourcesContent":["import type { ExpoConfig } from '@expo/config-types';\n\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { withAppDelegateModifications } from './withAppDelegateModifications';\nimport { withCioNotificationsXcodeProject } from './withNotificationsXcodeProject';\nimport { withCioXcodeProject } from './withXcodeProject';\nimport { withGoogleServicesJsonFile } from './withGoogleServicesJsonFile';\n\nexport function withCIOIos(\n config: ExpoConfig,\n props: CustomerIOPluginOptionsIOS\n) {\n if (
|
|
1
|
+
{"version":3,"names":["withAppDelegateModifications","withCioNotificationsXcodeProject","withCioXcodeProject","withGoogleServicesJsonFile","withCIOIos","config","props","cioProps","mergeDeprecatedPropertiesAndLogWarnings","pushNotification","deprecatedTopLevelProperties","showPushAppInForeground","autoTrackPushEvents","handleDeeplinkInKilledState","disableNotificationRegistration","autoFetchDeviceToken","Object","entries","forEach","key","value","undefined","console","warn","propKey"],"sources":["withCIOIos.ts"],"sourcesContent":["import type { ExpoConfig } from '@expo/config-types';\n\nimport type { CustomerIOPluginOptionsIOS, CustomerIOPluginPushNotificationOptions } from '../types/cio-types';\nimport { withAppDelegateModifications } from './withAppDelegateModifications';\nimport { withCioNotificationsXcodeProject } from './withNotificationsXcodeProject';\nimport { withCioXcodeProject } from './withXcodeProject';\nimport { withGoogleServicesJsonFile } from './withGoogleServicesJsonFile';\n\nexport function withCIOIos(\n config: ExpoConfig,\n props: CustomerIOPluginOptionsIOS\n) {\n const cioProps = mergeDeprecatedPropertiesAndLogWarnings(props);\n if (cioProps.pushNotification) {\n config = withAppDelegateModifications(config, cioProps);\n config = withCioNotificationsXcodeProject(config, cioProps);\n config = withCioXcodeProject(config, cioProps);\n config = withGoogleServicesJsonFile(config, cioProps);\n }\n\n return config;\n}\n\n/** The basic purpose of this function is to centralize where we handle the deprecation\n by merging the deprecated properties into the new ios.pushNotification.* properties\n and logging a warning if they are set. This way, we can remove the deprecated properties\n from the top level of the ios object in the future, and update this function\n while the rest of the plugin code remains unchanged.\n*/\nconst mergeDeprecatedPropertiesAndLogWarnings = (\n props: CustomerIOPluginOptionsIOS\n) => {\n // The deprecatedTopLevelProperties maps the top level properties\n // that are deprecated to the new ios.pushNotification.* properties\n // that should be used instead. The deprecated properties are\n // still available for backwards compatibility, but they will\n // be removed in the future.\n\n const deprecatedTopLevelProperties = {\n showPushAppInForeground: props.showPushAppInForeground,\n autoTrackPushEvents: props.autoTrackPushEvents,\n handleDeeplinkInKilledState: props.handleDeeplinkInKilledState,\n disableNotificationRegistration: props.disableNotificationRegistration,\n autoFetchDeviceToken: props.autoFetchDeviceToken,\n };\n\n // loop over all the deprecated properties and log a warning if they are set\n Object.entries(deprecatedTopLevelProperties).forEach(([key, value]) => {\n if (value !== undefined) {\n console.warn(\n `The ios.${key} property is deprecated. Please use ios.pushNotification.${key} instead.`\n );\n\n if (props.pushNotification === undefined) {\n props.pushNotification = {} as CustomerIOPluginPushNotificationOptions;\n }\n const propKey = key as keyof CustomerIOPluginPushNotificationOptions;\n if (props.pushNotification[propKey] === undefined) {\n props.pushNotification = {\n ...props.pushNotification,\n [propKey]: value,\n };\n } else {\n console.warn(\n `The ios.${key} property is deprecated. Since the value of ios.pushNotification.${key} is set, it will be used.`\n );\n }\n }\n });\n\n return props;\n};\n"],"mappings":"AAGA,SAASA,4BAA4B,QAAQ,gCAAgC;AAC7E,SAASC,gCAAgC,QAAQ,iCAAiC;AAClF,SAASC,mBAAmB,QAAQ,oBAAoB;AACxD,SAASC,0BAA0B,QAAQ,8BAA8B;AAEzE,OAAO,SAASC,UAAUA,CACxBC,MAAkB,EAClBC,KAAiC,EACjC;EACA,MAAMC,QAAQ,GAAGC,uCAAuC,CAACF,KAAK,CAAC;EAC/D,IAAIC,QAAQ,CAACE,gBAAgB,EAAE;IAC7BJ,MAAM,GAAGL,4BAA4B,CAACK,MAAM,EAAEE,QAAQ,CAAC;IACvDF,MAAM,GAAGJ,gCAAgC,CAACI,MAAM,EAAEE,QAAQ,CAAC;IAC3DF,MAAM,GAAGH,mBAAmB,CAACG,MAAM,EAAEE,QAAQ,CAAC;IAC9CF,MAAM,GAAGF,0BAA0B,CAACE,MAAM,EAAEE,QAAQ,CAAC;EACvD;EAEA,OAAOF,MAAM;AACf;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMG,uCAAuC,GAC3CF,KAAiC,IAC9B;EACH;EACA;EACA;EACA;EACA;;EAEA,MAAMI,4BAA4B,GAAG;IACnCC,uBAAuB,EAAEL,KAAK,CAACK,uBAAuB;IACtDC,mBAAmB,EAAEN,KAAK,CAACM,mBAAmB;IAC9CC,2BAA2B,EAAEP,KAAK,CAACO,2BAA2B;IAC9DC,+BAA+B,EAAER,KAAK,CAACQ,+BAA+B;IACtEC,oBAAoB,EAAET,KAAK,CAACS;EAC9B,CAAC;;EAED;EACAC,MAAM,CAACC,OAAO,CAACP,4BAA4B,CAAC,CAACQ,OAAO,CAAC,CAAC,CAACC,GAAG,EAAEC,KAAK,CAAC,KAAK;IACrE,IAAIA,KAAK,KAAKC,SAAS,EAAE;MACvBC,OAAO,CAACC,IAAI,CACV,WAAWJ,GAAG,4DAA4DA,GAAG,WAC/E,CAAC;MAED,IAAIb,KAAK,CAACG,gBAAgB,KAAKY,SAAS,EAAE;QACxCf,KAAK,CAACG,gBAAgB,GAAG,CAAC,CAA4C;MACxE;MACA,MAAMe,OAAO,GAAGL,GAAoD;MACpE,IAAIb,KAAK,CAACG,gBAAgB,CAACe,OAAO,CAAC,KAAKH,SAAS,EAAE;QACjDf,KAAK,CAACG,gBAAgB,GAAG;UACvB,GAAGH,KAAK,CAACG,gBAAgB;UACzB,CAACe,OAAO,GAAGJ;QACb,CAAC;MACH,CAAC,MAAM;QACLE,OAAO,CAACC,IAAI,CACV,WAAWJ,GAAG,oEAAoEA,GAAG,2BACvF,CAAC;MACH;IACF;EACF,CAAC,CAAC;EAEF,OAAOb,KAAK;AACd,CAAC","ignoreList":[]}
|
|
@@ -13,7 +13,7 @@ const addNotificationServiceExtension = async (options, xcodeProject) => {
|
|
|
13
13
|
if (options.pushNotification) {
|
|
14
14
|
await addPushNotificationFile(options, xcodeProject);
|
|
15
15
|
}
|
|
16
|
-
if ((_options$pushNotifica = options.pushNotification)
|
|
16
|
+
if (((_options$pushNotifica = options.pushNotification) === null || _options$pushNotifica === void 0 ? void 0 : _options$pushNotifica.useRichPush) === true) {
|
|
17
17
|
await addRichPushXcodeProj(options, xcodeProject);
|
|
18
18
|
}
|
|
19
19
|
return xcodeProject;
|
|
@@ -32,7 +32,6 @@ export const withCioNotificationsXcodeProject = (configOuter, props) => {
|
|
|
32
32
|
const {
|
|
33
33
|
appleTeamId,
|
|
34
34
|
iosDeploymentTarget,
|
|
35
|
-
pushNotification,
|
|
36
35
|
useFrameworks
|
|
37
36
|
} = props;
|
|
38
37
|
if (ios === undefined) throw new Error('Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.');
|
|
@@ -64,8 +63,7 @@ export const withCioNotificationsXcodeProject = (configOuter, props) => {
|
|
|
64
63
|
iosPath: platformProjectRoot,
|
|
65
64
|
appName: projectName,
|
|
66
65
|
useFrameworks,
|
|
67
|
-
iosDeploymentTarget
|
|
68
|
-
pushNotification
|
|
66
|
+
iosDeploymentTarget
|
|
69
67
|
};
|
|
70
68
|
const modifiedProjectFile = await addNotificationServiceExtension(options, config.modResults);
|
|
71
69
|
if (modifiedProjectFile) {
|
|
@@ -103,7 +101,7 @@ const addRichPushXcodeProj = async (options, xcodeProject) => {
|
|
|
103
101
|
// Copy platform-specific files
|
|
104
102
|
platformSpecificFiles.forEach(filename => {
|
|
105
103
|
const targetFile = getTargetFile(filename);
|
|
106
|
-
FileManagement.copyFile(`${LOCAL_PATH_TO_CIO_NSE_FILES}/${isFcmProvider ?
|
|
104
|
+
FileManagement.copyFile(`${LOCAL_PATH_TO_CIO_NSE_FILES}/${isFcmProvider ? 'fcm' : 'apn'}/${filename}`, targetFile);
|
|
107
105
|
});
|
|
108
106
|
|
|
109
107
|
// Copy common files
|
|
@@ -186,25 +184,29 @@ const updateNseInfoPlist = payload => {
|
|
|
186
184
|
FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);
|
|
187
185
|
};
|
|
188
186
|
const updateNseEnv = (options, envFileName) => {
|
|
189
|
-
var _options$pushNotifica2
|
|
187
|
+
var _options$pushNotifica2;
|
|
190
188
|
const CDP_API_KEY_RE = /\{\{CDP_API_KEY\}\}/;
|
|
191
189
|
const REGION_RE = /\{\{REGION\}\}/;
|
|
192
190
|
let envFileContent = FileManagement.readFile(envFileName);
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
191
|
+
const {
|
|
192
|
+
cdpApiKey,
|
|
193
|
+
region
|
|
194
|
+
} = ((_options$pushNotifica2 = options.pushNotification) === null || _options$pushNotifica2 === void 0 ? void 0 : _options$pushNotifica2.env) || {
|
|
195
|
+
cdpApiKey: undefined,
|
|
196
|
+
region: undefined
|
|
197
|
+
};
|
|
198
|
+
if (!cdpApiKey) {
|
|
199
|
+
throw new Error('Adding NotificationServiceExtension failed: ios.pushNotification.env.cdpApiKey is missing from app.config.js or app.json.');
|
|
196
200
|
}
|
|
197
|
-
|
|
198
|
-
|
|
201
|
+
envFileContent = replaceCodeByRegex(envFileContent, CDP_API_KEY_RE, cdpApiKey);
|
|
202
|
+
if (region) {
|
|
199
203
|
const regionMap = {
|
|
200
204
|
us: 'Region.US',
|
|
201
205
|
eu: 'Region.EU'
|
|
202
206
|
};
|
|
203
|
-
const
|
|
204
|
-
const mappedRegion = regionMap[region] || '';
|
|
207
|
+
const mappedRegion = regionMap[region.toLowerCase()] || '';
|
|
205
208
|
if (!mappedRegion) {
|
|
206
|
-
|
|
207
|
-
console.warn(`${(_options$pushNotifica6 = options.pushNotification) === null || _options$pushNotifica6 === void 0 || (_options$pushNotifica6 = _options$pushNotifica6.env) === null || _options$pushNotifica6 === void 0 ? void 0 : _options$pushNotifica6.region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`);
|
|
209
|
+
console.warn(`${region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`);
|
|
208
210
|
} else {
|
|
209
211
|
envFileContent = replaceCodeByRegex(envFileContent, REGION_RE, mappedRegion);
|
|
210
212
|
}
|
|
@@ -219,7 +221,7 @@ async function addPushNotificationFile(options, xcodeProject) {
|
|
|
219
221
|
} = options;
|
|
220
222
|
const isFcmProvider = isFcmPushProvider(options);
|
|
221
223
|
// PushService.swift is platform-specific and always lives in the platform folder
|
|
222
|
-
const sourceFile = `${isFcmProvider ?
|
|
224
|
+
const sourceFile = `${isFcmProvider ? 'fcm' : 'apn'}/PushService.swift`;
|
|
223
225
|
const targetFileName = 'PushService.swift';
|
|
224
226
|
const appPath = `${iosPath}/${appName}`;
|
|
225
227
|
const getTargetFile = filename => `${appPath}/${filename}`;
|
|
@@ -245,22 +247,36 @@ async function addPushNotificationFile(options, xcodeProject) {
|
|
|
245
247
|
xcodeProject.addSourceFile(`${appName}/${targetFileName}`, null, group);
|
|
246
248
|
}
|
|
247
249
|
const updatePushFile = (options, envFileName) => {
|
|
250
|
+
var _options$pushNotifica3, _options$pushNotifica4, _options$pushNotifica5, _options$pushNotifica6, _options$pushNotifica7;
|
|
248
251
|
const REGISTER_RE = /\{\{REGISTER_SNIPPET\}\}/;
|
|
249
252
|
let envFileContent = FileManagement.readFile(envFileName);
|
|
253
|
+
const disableNotificationRegistration = (_options$pushNotifica3 = options.pushNotification) === null || _options$pushNotifica3 === void 0 ? void 0 : _options$pushNotifica3.disableNotificationRegistration;
|
|
254
|
+
const {
|
|
255
|
+
cdpApiKey,
|
|
256
|
+
region
|
|
257
|
+
} = ((_options$pushNotifica4 = options.pushNotification) === null || _options$pushNotifica4 === void 0 ? void 0 : _options$pushNotifica4.env) || {
|
|
258
|
+
cdpApiKey: undefined,
|
|
259
|
+
region: undefined
|
|
260
|
+
};
|
|
261
|
+
if (!cdpApiKey) {
|
|
262
|
+
throw new Error('Adding NotificationServiceExtension failed: ios.pushNotification.env.cdpApiKey is missing from app.config.js or app.json.');
|
|
263
|
+
}
|
|
250
264
|
let snippet = '';
|
|
251
|
-
|
|
265
|
+
// unless this property is explicity set to true, push notification
|
|
266
|
+
// registration will be added to the AppDelegate
|
|
267
|
+
if (disableNotificationRegistration !== true) {
|
|
252
268
|
snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;
|
|
253
269
|
}
|
|
254
270
|
envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
envFileContent = replaceCodeByRegex(envFileContent, /\{\{REGION\}\}/,
|
|
271
|
+
envFileContent = replaceCodeByRegex(envFileContent, /\{\{CDP_API_KEY\}\}/, cdpApiKey);
|
|
272
|
+
if (region) {
|
|
273
|
+
envFileContent = replaceCodeByRegex(envFileContent, /\{\{REGION\}\}/, region.toUpperCase());
|
|
258
274
|
}
|
|
259
|
-
const autoTrackPushEvents = options.
|
|
275
|
+
const autoTrackPushEvents = ((_options$pushNotifica5 = options.pushNotification) === null || _options$pushNotifica5 === void 0 ? void 0 : _options$pushNotifica5.autoTrackPushEvents) !== false;
|
|
260
276
|
envFileContent = replaceCodeByRegex(envFileContent, /\{\{AUTO_TRACK_PUSH_EVENTS\}\}/, autoTrackPushEvents.toString());
|
|
261
|
-
const autoFetchDeviceToken = options.
|
|
277
|
+
const autoFetchDeviceToken = ((_options$pushNotifica6 = options.pushNotification) === null || _options$pushNotifica6 === void 0 ? void 0 : _options$pushNotifica6.autoFetchDeviceToken) !== false;
|
|
262
278
|
envFileContent = replaceCodeByRegex(envFileContent, /\{\{AUTO_FETCH_DEVICE_TOKEN\}\}/, autoFetchDeviceToken.toString());
|
|
263
|
-
const showPushAppInForeground = options.
|
|
279
|
+
const showPushAppInForeground = ((_options$pushNotifica7 = options.pushNotification) === null || _options$pushNotifica7 === void 0 ? void 0 : _options$pushNotifica7.showPushAppInForeground) !== false;
|
|
264
280
|
envFileContent = replaceCodeByRegex(envFileContent, /\{\{SHOW_PUSH_APP_IN_FOREGROUND\}\}/, showPushAppInForeground.toString());
|
|
265
281
|
FileManagement.writeFile(envFileName, envFileContent);
|
|
266
282
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["withXcodeProject","CIO_NOTIFICATION_TARGET_NAME","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET","DEFAULT_BUNDLE_VERSION","LOCAL_PATH_TO_CIO_NSE_FILES","replaceCodeByRegex","injectCIONotificationPodfileCode","FileManagement","isFcmPushProvider","PLIST_FILENAME","ENV_FILENAME","TARGETED_DEVICE_FAMILY","addNotificationServiceExtension","options","xcodeProject","_options$pushNotifica","pushNotification","addPushNotificationFile","useRichPush","addRichPushXcodeProj","error","console","withCioNotificationsXcodeProject","configOuter","props","config","modRequest","ios","version","bundleShortVersion","appleTeamId","iosDeploymentTarget","useFrameworks","undefined","Error","projectName","platformProjectRoot","bundleIdentifier","buildNumber","bundleVersion","iosPath","appName","modifiedProjectFile","modResults","isFcmProvider","pbxTargetByName","warn","nsePath","mkdir","recursive","platformSpecificFiles","commonFiles","getTargetFile","filename","forEach","targetFile","copyFile","infoPlistTargetFile","updateNseInfoPlist","updateNseEnv","extGroup","addPbxGroup","groups","hash","project","objects","Object","keys","key","name","path","addToPbxGroup","uuid","projObjects","nseTarget","addTarget","addBuildPhase","configurations","pbxXCBuildConfigurationSection","buildSettings","PRODUCT_NAME","buildSettingsObj","DEVELOPMENT_TEAM","IPHONEOS_DEPLOYMENT_TARGET","CODE_SIGN_STYLE","SWIFT_VERSION","addTargetAttribute","payload","BUNDLE_SHORT_VERSION_RE","BUNDLE_VERSION_RE","plistFileString","readFile","writeFile","envFileName","_options$pushNotifica2","_options$pushNotifica4","CDP_API_KEY_RE","REGION_RE","envFileContent","env","cdpApiKey","_options$pushNotifica3","region","_options$pushNotifica5","regionMap","us","eu","toLowerCase","mappedRegion","_options$pushNotifica6","sourceFile","targetFileName","appPath","exists","log","updatePushFile","group","pbxCreateGroup","classesKey","findPBXGroupKey","addSourceFile","REGISTER_RE","snippet","disableNotificationRegistration","toUpperCase","autoTrackPushEvents","toString","autoFetchDeviceToken","showPushAppInForeground"],"sources":["withNotificationsXcodeProject.ts"],"sourcesContent":["import {\n ConfigPlugin,\n XcodeProject,\n withXcodeProject,\n} from '@expo/config-plugins';\n\nimport {\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_REGISTER_PUSHNOTIFICATION_SNIPPET,\n DEFAULT_BUNDLE_VERSION,\n LOCAL_PATH_TO_CIO_NSE_FILES,\n} from '../helpers/constants/ios';\nimport { replaceCodeByRegex } from '../helpers/utils/codeInjection';\nimport { injectCIONotificationPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { FileManagement } from './../helpers/utils/fileManagement';\nimport { isFcmPushProvider } from './utils';\n\nconst PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`;\nconst ENV_FILENAME = 'Env.swift';\n\nconst TARGETED_DEVICE_FAMILY = `\"1,2\"`;\n\nconst addNotificationServiceExtension = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: XcodeProject\n) => {\n try {\n if (options.pushNotification) {\n await addPushNotificationFile(options, xcodeProject);\n }\n\n if (options.pushNotification?.useRichPush) {\n await addRichPushXcodeProj(options, xcodeProject);\n }\n return xcodeProject;\n } catch (error: any) {\n console.error(error);\n return null;\n }\n};\n\nexport const withCioNotificationsXcodeProject: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withXcodeProject(configOuter, async (config) => {\n const { modRequest, ios, version: bundleShortVersion } = config;\n const {\n appleTeamId,\n iosDeploymentTarget,\n pushNotification,\n useFrameworks,\n } = props;\n\n if (ios === undefined)\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.'\n );\n\n // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension()\n const { projectName, platformProjectRoot } = modRequest;\n const { bundleIdentifier, buildNumber } = ios;\n\n if (bundleShortVersion === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: version missing from app.config.js or app.json'\n );\n }\n\n if (bundleIdentifier === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'\n );\n }\n\n if (projectName === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: name missing from app.config.js or app.json'\n );\n }\n\n const options = {\n ...props,\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion: buildNumber || DEFAULT_BUNDLE_VERSION,\n iosPath: platformProjectRoot,\n appName: projectName,\n useFrameworks,\n iosDeploymentTarget,\n pushNotification,\n };\n\n const modifiedProjectFile = await addNotificationServiceExtension(\n options,\n config.modResults\n );\n\n if (modifiedProjectFile) {\n config.modResults = modifiedProjectFile;\n }\n\n return config;\n });\n};\n\nconst addRichPushXcodeProj = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) => {\n const {\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion,\n iosPath,\n iosDeploymentTarget,\n useFrameworks,\n } = options;\n\n const isFcmProvider = isFcmPushProvider(options);\n\n await injectCIONotificationPodfileCode(iosPath, useFrameworks, isFcmProvider);\n\n // Check if `CIO_NOTIFICATION_TARGET_NAME` group already exist in the project\n // If true then skip creating a new group to avoid duplicate folders\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n const nsePath = `${iosPath}/${CIO_NOTIFICATION_TARGET_NAME}`;\n FileManagement.mkdir(nsePath, {\n recursive: true,\n });\n\n const platformSpecificFiles = [\n 'NotificationService.swift',\n ];\n\n const commonFiles = [\n PLIST_FILENAME,\n 'NotificationService.h',\n 'NotificationService.m',\n ENV_FILENAME,\n ];\n\n const getTargetFile = (filename: string) => `${nsePath}/${filename}`;\n // Copy platform-specific files\n platformSpecificFiles.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${isFcmProvider ? \"fcm\" : \"apn\"}/${filename}`,\n targetFile\n );\n });\n\n // Copy common files\n commonFiles.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/common/${filename}`,\n targetFile\n );\n });\n\n /* MODIFY COPIED EXTENSION FILES */\n const infoPlistTargetFile = getTargetFile(PLIST_FILENAME);\n updateNseInfoPlist({\n bundleVersion,\n bundleShortVersion,\n infoPlistTargetFile,\n });\n updateNseEnv(options, getTargetFile(ENV_FILENAME));\n\n // Create new PBXGroup for the extension\n const extGroup = xcodeProject.addPbxGroup(\n [...platformSpecificFiles, ...commonFiles], // Combine platform-specific and common files,\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_NOTIFICATION_TARGET_NAME\n );\n\n // Add the new PBXGroup to the top level group. This makes the\n // files / folder appear in the file explorer in Xcode.\n const groups = xcodeProject.hash.project.objects['PBXGroup'];\n Object.keys(groups).forEach((key) => {\n if (groups[key].name === undefined && groups[key].path === undefined) {\n xcodeProject.addToPbxGroup(extGroup.uuid, key);\n }\n });\n\n // WORK AROUND for codeProject.addTarget BUG\n // Xcode projects don't contain these if there is only one target\n // An upstream fix should be made to the code referenced in this link:\n // - https://github.com/apache/cordova-node-xcode/blob/8b98cabc5978359db88dc9ff2d4c015cba40f150/lib/pbxProject.js#L860\n const projObjects = xcodeProject.hash.project.objects;\n projObjects['PBXTargetDependency'] = projObjects['PBXTargetDependency'] || {};\n projObjects['PBXContainerItemProxy'] =\n projObjects['PBXTargetDependency'] || {};\n\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n // Add the NSE target\n // This also adds PBXTargetDependency and PBXContainerItemProxy\n const nseTarget = xcodeProject.addTarget(\n CIO_NOTIFICATION_TARGET_NAME,\n 'app_extension',\n CIO_NOTIFICATION_TARGET_NAME,\n `${bundleIdentifier}.richpush`\n );\n\n // Add build phases to the new target\n xcodeProject.addBuildPhase(\n ['NotificationService.m', 'NotificationService.swift', 'Env.swift'],\n 'PBXSourcesBuildPhase',\n 'Sources',\n nseTarget.uuid\n );\n xcodeProject.addBuildPhase(\n [],\n 'PBXResourcesBuildPhase',\n 'Resources',\n nseTarget.uuid\n );\n\n xcodeProject.addBuildPhase(\n [],\n 'PBXFrameworksBuildPhase',\n 'Frameworks',\n nseTarget.uuid\n );\n\n // Edit the Deployment info of the target\n const configurations = xcodeProject.pbxXCBuildConfigurationSection();\n for (const key in configurations) {\n if (\n typeof configurations[key].buildSettings !== 'undefined' &&\n configurations[key].buildSettings.PRODUCT_NAME ===\n `\"${CIO_NOTIFICATION_TARGET_NAME}\"`\n ) {\n const buildSettingsObj = configurations[key].buildSettings;\n buildSettingsObj.DEVELOPMENT_TEAM = appleTeamId;\n buildSettingsObj.IPHONEOS_DEPLOYMENT_TARGET =\n iosDeploymentTarget || '15.1';\n buildSettingsObj.TARGETED_DEVICE_FAMILY = TARGETED_DEVICE_FAMILY;\n buildSettingsObj.CODE_SIGN_STYLE = 'Automatic';\n buildSettingsObj.SWIFT_VERSION = 4.2;\n }\n }\n\n // Add development team to the target & the main\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId, nseTarget);\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId);\n};\n\nconst updateNseInfoPlist = (payload: {\n bundleVersion?: string;\n bundleShortVersion?: string;\n infoPlistTargetFile: string;\n}) => {\n const BUNDLE_SHORT_VERSION_RE = /\\{\\{BUNDLE_SHORT_VERSION\\}\\}/;\n const BUNDLE_VERSION_RE = /\\{\\{BUNDLE_VERSION\\}\\}/;\n\n let plistFileString = FileManagement.readFile(payload.infoPlistTargetFile);\n\n if (payload.bundleVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_VERSION_RE,\n payload.bundleVersion\n );\n }\n\n if (payload.bundleShortVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_SHORT_VERSION_RE,\n payload.bundleShortVersion\n );\n }\n\n FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);\n};\n\nconst updateNseEnv = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const CDP_API_KEY_RE = /\\{\\{CDP_API_KEY\\}\\}/;\n const REGION_RE = /\\{\\{REGION\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n if (options.pushNotification?.env?.cdpApiKey) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n CDP_API_KEY_RE,\n options.pushNotification?.env?.cdpApiKey\n );\n }\n\n if (options.pushNotification?.env?.region) {\n const regionMap = {\n us: 'Region.US',\n eu: 'Region.EU',\n };\n const region = options.pushNotification?.env?.region?.toLowerCase();\n const mappedRegion = (regionMap as any)[region] || '';\n if (!mappedRegion) {\n console.warn(\n `${options.pushNotification?.env?.region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`\n );\n } else {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n REGION_RE,\n mappedRegion\n );\n }\n }\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n\nasync function addPushNotificationFile(\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) {\n // Maybe copy a different file with FCM config based on config\n const { iosPath, appName } = options;\n const isFcmProvider = isFcmPushProvider(options);\n // PushService.swift is platform-specific and always lives in the platform folder\n const sourceFile = `${isFcmProvider ? \"fcm\" : \"apn\"}/PushService.swift`;\n const targetFileName = 'PushService.swift';\n const appPath = `${iosPath}/${appName}`;\n const getTargetFile = (filename: string) => `${appPath}/${filename}`;\n const targetFile = getTargetFile(targetFileName);\n\n // Check whether {file} exists in the project. If false, then add the file\n // If {file} exists then skip and return\n if (!FileManagement.exists(getTargetFile(targetFileName))) {\n FileManagement.mkdir(appPath, {\n recursive: true,\n });\n\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${sourceFile}`,\n targetFile\n );\n } else {\n console.log(`${getTargetFile(targetFileName)} already exists. Skipping...`);\n return;\n }\n\n updatePushFile(options, targetFile);\n\n const group = xcodeProject.pbxCreateGroup('CustomerIONotifications');\n const classesKey = xcodeProject.findPBXGroupKey({ name: `${appName}` });\n xcodeProject.addToPbxGroup(group, classesKey);\n\n xcodeProject.addSourceFile(`${appName}/${targetFileName}`, null, group);\n}\n\nconst updatePushFile = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const REGISTER_RE = /\\{\\{REGISTER_SNIPPET\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n let snippet = '';\n if (\n options.disableNotificationRegistration !== undefined &&\n options.disableNotificationRegistration === false\n ) {\n snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;\n }\n envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);\n\n if (options.pushNotification) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{CDP_API_KEY\\}\\}/,\n options.pushNotification.env.cdpApiKey\n );\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{REGION\\}\\}/,\n options.pushNotification.env.region.toUpperCase()\n );\n }\n\n const autoTrackPushEvents =\n options.autoTrackPushEvents === undefined ||\n options.autoTrackPushEvents === true;\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{AUTO_TRACK_PUSH_EVENTS\\}\\}/,\n autoTrackPushEvents.toString()\n );\n\n const autoFetchDeviceToken = \n options.autoFetchDeviceToken === undefined ||\n options.autoFetchDeviceToken === true;\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{AUTO_FETCH_DEVICE_TOKEN\\}\\}/,\n autoFetchDeviceToken.toString()\n );\n \n const showPushAppInForeground =\n options.showPushAppInForeground === undefined ||\n options.showPushAppInForeground === true;\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{SHOW_PUSH_APP_IN_FOREGROUND\\}\\}/,\n showPushAppInForeground.toString()\n );\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n"],"mappings":"AAAA,SAGEA,gBAAgB,QACX,sBAAsB;AAE7B,SACEC,4BAA4B,EAC5BC,qCAAqC,EACrCC,sBAAsB,EACtBC,2BAA2B,QACtB,0BAA0B;AACjC,SAASC,kBAAkB,QAAQ,gCAAgC;AACnE,SAASC,gCAAgC,QAAQ,uCAAuC;AAExF,SAASC,cAAc,QAAQ,mCAAmC;AAClE,SAASC,iBAAiB,QAAQ,SAAS;AAE3C,MAAMC,cAAc,GAAG,GAAGR,4BAA4B,aAAa;AACnE,MAAMS,YAAY,GAAG,WAAW;AAEhC,MAAMC,sBAAsB,GAAG,OAAO;AAEtC,MAAMC,+BAA+B,GAAG,MAAAA,CACtCC,OAAmC,EACnCC,YAA0B,KACvB;EACH,IAAI;IAAA,IAAAC,qBAAA;IACF,IAAIF,OAAO,CAACG,gBAAgB,EAAE;MAC5B,MAAMC,uBAAuB,CAACJ,OAAO,EAAEC,YAAY,CAAC;IACtD;IAEA,KAAAC,qBAAA,GAAIF,OAAO,CAACG,gBAAgB,cAAAD,qBAAA,eAAxBA,qBAAA,CAA0BG,WAAW,EAAE;MACzC,MAAMC,oBAAoB,CAACN,OAAO,EAAEC,YAAY,CAAC;IACnD;IACA,OAAOA,YAAY;EACrB,CAAC,CAAC,OAAOM,KAAU,EAAE;IACnBC,OAAO,CAACD,KAAK,CAACA,KAAK,CAAC;IACpB,OAAO,IAAI;EACb;AACF,CAAC;AAED,OAAO,MAAME,gCAEZ,GAAGA,CAACC,WAAW,EAAEC,KAAK,KAAK;EAC1B,OAAOxB,gBAAgB,CAACuB,WAAW,EAAE,MAAOE,MAAM,IAAK;IACrD,MAAM;MAAEC,UAAU;MAAEC,GAAG;MAAEC,OAAO,EAAEC;IAAmB,CAAC,GAAGJ,MAAM;IAC/D,MAAM;MACJK,WAAW;MACXC,mBAAmB;MACnBf,gBAAgB;MAChBgB;IACF,CAAC,GAAGR,KAAK;IAET,IAAIG,GAAG,KAAKM,SAAS,EACnB,MAAM,IAAIC,KAAK,CACb,gGACF,CAAC;;IAEH;IACA,MAAM;MAAEC,WAAW;MAAEC;IAAoB,CAAC,GAAGV,UAAU;IACvD,MAAM;MAAEW,gBAAgB;MAAEC;IAAY,CAAC,GAAGX,GAAG;IAE7C,IAAIE,kBAAkB,KAAKI,SAAS,EAAE;MACpC,MAAM,IAAIC,KAAK,CACb,4FACF,CAAC;IACH;IAEA,IAAIG,gBAAgB,KAAKJ,SAAS,EAAE;MAClC,MAAM,IAAIC,KAAK,CACb,yGACF,CAAC;IACH;IAEA,IAAIC,WAAW,KAAKF,SAAS,EAAE;MAC7B,MAAM,IAAIC,KAAK,CACb,yFACF,CAAC;IACH;IAEA,MAAMrB,OAAO,GAAG;MACd,GAAGW,KAAK;MACRM,WAAW;MACXO,gBAAgB;MAChBR,kBAAkB;MAClBU,aAAa,EAAED,WAAW,IAAInC,sBAAsB;MACpDqC,OAAO,EAAEJ,mBAAmB;MAC5BK,OAAO,EAAEN,WAAW;MACpBH,aAAa;MACbD,mBAAmB;MACnBf;IACF,CAAC;IAED,MAAM0B,mBAAmB,GAAG,MAAM9B,+BAA+B,CAC/DC,OAAO,EACPY,MAAM,CAACkB,UACT,CAAC;IAED,IAAID,mBAAmB,EAAE;MACvBjB,MAAM,CAACkB,UAAU,GAAGD,mBAAmB;IACzC;IAEA,OAAOjB,MAAM;EACf,CAAC,CAAC;AACJ,CAAC;AAED,MAAMN,oBAAoB,GAAG,MAAAA,CAC3BN,OAAmC,EACnCC,YAAiB,KACd;EACH,MAAM;IACJgB,WAAW;IACXO,gBAAgB;IAChBR,kBAAkB;IAClBU,aAAa;IACbC,OAAO;IACPT,mBAAmB;IACnBC;EACF,CAAC,GAAGnB,OAAO;EAEX,MAAM+B,aAAa,GAAGpC,iBAAiB,CAACK,OAAO,CAAC;EAEhD,MAAMP,gCAAgC,CAACkC,OAAO,EAAER,aAAa,EAAEY,aAAa,CAAC;;EAE7E;EACA;EACA,IAAI9B,YAAY,CAAC+B,eAAe,CAAC5C,4BAA4B,CAAC,EAAE;IAC9DoB,OAAO,CAACyB,IAAI,CACV,GAAG7C,4BAA4B,yCACjC,CAAC;IACD;EACF;EAEA,MAAM8C,OAAO,GAAG,GAAGP,OAAO,IAAIvC,4BAA4B,EAAE;EAC5DM,cAAc,CAACyC,KAAK,CAACD,OAAO,EAAE;IAC5BE,SAAS,EAAE;EACb,CAAC,CAAC;EAEF,MAAMC,qBAAqB,GAAG,CAC5B,2BAA2B,CAC5B;EAED,MAAMC,WAAW,GAAG,CAClB1C,cAAc,EACd,uBAAuB,EACvB,uBAAuB,EACvBC,YAAY,CACb;EAED,MAAM0C,aAAa,GAAIC,QAAgB,IAAK,GAAGN,OAAO,IAAIM,QAAQ,EAAE;EACpE;EACAH,qBAAqB,CAACI,OAAO,CAAED,QAAQ,IAAK;IAC1C,MAAME,UAAU,GAAGH,aAAa,CAACC,QAAQ,CAAC;IAC1C9C,cAAc,CAACiD,QAAQ,CACrB,GAAGpD,2BAA2B,IAAIwC,aAAa,GAAG,KAAK,GAAG,KAAK,IAAIS,QAAQ,EAAE,EAC7EE,UACF,CAAC;EACH,CAAC,CAAC;;EAED;EACAJ,WAAW,CAACG,OAAO,CAAED,QAAQ,IAAK;IACjC,MAAME,UAAU,GAAGH,aAAa,CAACC,QAAQ,CAAC;IAC1C9C,cAAc,CAACiD,QAAQ,CACrB,GAAGpD,2BAA2B,WAAWiD,QAAQ,EAAE,EACnDE,UACF,CAAC;EACH,CAAC,CAAC;;EAEF;EACA,MAAME,mBAAmB,GAAGL,aAAa,CAAC3C,cAAc,CAAC;EACzDiD,kBAAkB,CAAC;IACjBnB,aAAa;IACbV,kBAAkB;IAClB4B;EACF,CAAC,CAAC;EACFE,YAAY,CAAC9C,OAAO,EAAEuC,aAAa,CAAC1C,YAAY,CAAC,CAAC;;EAElD;EACA,MAAMkD,QAAQ,GAAG9C,YAAY,CAAC+C,WAAW,CACvC,CAAC,GAAGX,qBAAqB,EAAE,GAAGC,WAAW,CAAC;EAAE;EAC5ClD,4BAA4B,EAC5BA,4BACF,CAAC;;EAED;EACA;EACA,MAAM6D,MAAM,GAAGhD,YAAY,CAACiD,IAAI,CAACC,OAAO,CAACC,OAAO,CAAC,UAAU,CAAC;EAC5DC,MAAM,CAACC,IAAI,CAACL,MAAM,CAAC,CAACR,OAAO,CAAEc,GAAG,IAAK;IACnC,IAAIN,MAAM,CAACM,GAAG,CAAC,CAACC,IAAI,KAAKpC,SAAS,IAAI6B,MAAM,CAACM,GAAG,CAAC,CAACE,IAAI,KAAKrC,SAAS,EAAE;MACpEnB,YAAY,CAACyD,aAAa,CAACX,QAAQ,CAACY,IAAI,EAAEJ,GAAG,CAAC;IAChD;EACF,CAAC,CAAC;;EAEF;EACA;EACA;EACA;EACA,MAAMK,WAAW,GAAG3D,YAAY,CAACiD,IAAI,CAACC,OAAO,CAACC,OAAO;EACrDQ,WAAW,CAAC,qBAAqB,CAAC,GAAGA,WAAW,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;EAC7EA,WAAW,CAAC,uBAAuB,CAAC,GAClCA,WAAW,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;EAE1C,IAAI3D,YAAY,CAAC+B,eAAe,CAAC5C,4BAA4B,CAAC,EAAE;IAC9DoB,OAAO,CAACyB,IAAI,CACV,GAAG7C,4BAA4B,yCACjC,CAAC;IACD;EACF;;EAEA;EACA;EACA,MAAMyE,SAAS,GAAG5D,YAAY,CAAC6D,SAAS,CACtC1E,4BAA4B,EAC5B,eAAe,EACfA,4BAA4B,EAC5B,GAAGoC,gBAAgB,WACrB,CAAC;;EAED;EACAvB,YAAY,CAAC8D,aAAa,CACxB,CAAC,uBAAuB,EAAE,2BAA2B,EAAE,WAAW,CAAC,EACnE,sBAAsB,EACtB,SAAS,EACTF,SAAS,CAACF,IACZ,CAAC;EACD1D,YAAY,CAAC8D,aAAa,CACxB,EAAE,EACF,wBAAwB,EACxB,WAAW,EACXF,SAAS,CAACF,IACZ,CAAC;EAED1D,YAAY,CAAC8D,aAAa,CACxB,EAAE,EACF,yBAAyB,EACzB,YAAY,EACZF,SAAS,CAACF,IACZ,CAAC;;EAED;EACA,MAAMK,cAAc,GAAG/D,YAAY,CAACgE,8BAA8B,CAAC,CAAC;EACpE,KAAK,MAAMV,GAAG,IAAIS,cAAc,EAAE;IAChC,IACE,OAAOA,cAAc,CAACT,GAAG,CAAC,CAACW,aAAa,KAAK,WAAW,IACxDF,cAAc,CAACT,GAAG,CAAC,CAACW,aAAa,CAACC,YAAY,KAC5C,IAAI/E,4BAA4B,GAAG,EACrC;MACA,MAAMgF,gBAAgB,GAAGJ,cAAc,CAACT,GAAG,CAAC,CAACW,aAAa;MAC1DE,gBAAgB,CAACC,gBAAgB,GAAGpD,WAAW;MAC/CmD,gBAAgB,CAACE,0BAA0B,GACzCpD,mBAAmB,IAAI,MAAM;MAC/BkD,gBAAgB,CAACtE,sBAAsB,GAAGA,sBAAsB;MAChEsE,gBAAgB,CAACG,eAAe,GAAG,WAAW;MAC9CH,gBAAgB,CAACI,aAAa,GAAG,GAAG;IACtC;EACF;;EAEA;EACAvE,YAAY,CAACwE,kBAAkB,CAAC,iBAAiB,EAAExD,WAAW,EAAE4C,SAAS,CAAC;EAC1E5D,YAAY,CAACwE,kBAAkB,CAAC,iBAAiB,EAAExD,WAAW,CAAC;AACjE,CAAC;AAED,MAAM4B,kBAAkB,GAAI6B,OAI3B,IAAK;EACJ,MAAMC,uBAAuB,GAAG,8BAA8B;EAC9D,MAAMC,iBAAiB,GAAG,wBAAwB;EAElD,IAAIC,eAAe,GAAGnF,cAAc,CAACoF,QAAQ,CAACJ,OAAO,CAAC9B,mBAAmB,CAAC;EAE1E,IAAI8B,OAAO,CAAChD,aAAa,EAAE;IACzBmD,eAAe,GAAGrF,kBAAkB,CAClCqF,eAAe,EACfD,iBAAiB,EACjBF,OAAO,CAAChD,aACV,CAAC;EACH;EAEA,IAAIgD,OAAO,CAAC1D,kBAAkB,EAAE;IAC9B6D,eAAe,GAAGrF,kBAAkB,CAClCqF,eAAe,EACfF,uBAAuB,EACvBD,OAAO,CAAC1D,kBACV,CAAC;EACH;EAEAtB,cAAc,CAACqF,SAAS,CAACL,OAAO,CAAC9B,mBAAmB,EAAEiC,eAAe,CAAC;AACxE,CAAC;AAED,MAAM/B,YAAY,GAAGA,CACnB9C,OAAmC,EACnCgF,WAAmB,KAChB;EAAA,IAAAC,sBAAA,EAAAC,sBAAA;EACH,MAAMC,cAAc,GAAG,qBAAqB;EAC5C,MAAMC,SAAS,GAAG,gBAAgB;EAElC,IAAIC,cAAc,GAAG3F,cAAc,CAACoF,QAAQ,CAACE,WAAW,CAAC;EAEzD,KAAAC,sBAAA,GAAIjF,OAAO,CAACG,gBAAgB,cAAA8E,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BK,GAAG,cAAAL,sBAAA,eAA7BA,sBAAA,CAA+BM,SAAS,EAAE;IAAA,IAAAC,sBAAA;IAC5CH,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACdF,cAAc,GAAAK,sBAAA,GACdxF,OAAO,CAACG,gBAAgB,cAAAqF,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BF,GAAG,cAAAE,sBAAA,uBAA7BA,sBAAA,CAA+BD,SACjC,CAAC;EACH;EAEA,KAAAL,sBAAA,GAAIlF,OAAO,CAACG,gBAAgB,cAAA+E,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BI,GAAG,cAAAJ,sBAAA,eAA7BA,sBAAA,CAA+BO,MAAM,EAAE;IAAA,IAAAC,sBAAA;IACzC,MAAMC,SAAS,GAAG;MAChBC,EAAE,EAAE,WAAW;MACfC,EAAE,EAAE;IACN,CAAC;IACD,MAAMJ,MAAM,IAAAC,sBAAA,GAAG1F,OAAO,CAACG,gBAAgB,cAAAuF,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BJ,GAAG,cAAAI,sBAAA,gBAAAA,sBAAA,GAA7BA,sBAAA,CAA+BD,MAAM,cAAAC,sBAAA,uBAArCA,sBAAA,CAAuCI,WAAW,CAAC,CAAC;IACnE,MAAMC,YAAY,GAAIJ,SAAS,CAASF,MAAM,CAAC,IAAI,EAAE;IACrD,IAAI,CAACM,YAAY,EAAE;MAAA,IAAAC,sBAAA;MACjBxF,OAAO,CAACyB,IAAI,CACV,IAAA+D,sBAAA,GAAGhG,OAAO,CAACG,gBAAgB,cAAA6F,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BV,GAAG,cAAAU,sBAAA,uBAA7BA,sBAAA,CAA+BP,MAAM,qIAC1C,CAAC;IACH,CAAC,MAAM;MACLJ,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACdD,SAAS,EACTW,YACF,CAAC;IACH;EACF;EAEArG,cAAc,CAACqF,SAAS,CAACC,WAAW,EAAEK,cAAc,CAAC;AACvD,CAAC;AAED,eAAejF,uBAAuBA,CACpCJ,OAAmC,EACnCC,YAAiB,EACjB;EACA;EACA,MAAM;IAAE0B,OAAO;IAAEC;EAAQ,CAAC,GAAG5B,OAAO;EACpC,MAAM+B,aAAa,GAAGpC,iBAAiB,CAACK,OAAO,CAAC;EAChD;EACA,MAAMiG,UAAU,GAAG,GAAGlE,aAAa,GAAG,KAAK,GAAG,KAAK,oBAAoB;EACvE,MAAMmE,cAAc,GAAG,mBAAmB;EAC1C,MAAMC,OAAO,GAAG,GAAGxE,OAAO,IAAIC,OAAO,EAAE;EACvC,MAAMW,aAAa,GAAIC,QAAgB,IAAK,GAAG2D,OAAO,IAAI3D,QAAQ,EAAE;EACpE,MAAME,UAAU,GAAGH,aAAa,CAAC2D,cAAc,CAAC;;EAEhD;EACA;EACA,IAAI,CAACxG,cAAc,CAAC0G,MAAM,CAAC7D,aAAa,CAAC2D,cAAc,CAAC,CAAC,EAAE;IACzDxG,cAAc,CAACyC,KAAK,CAACgE,OAAO,EAAE;MAC5B/D,SAAS,EAAE;IACb,CAAC,CAAC;IAEF1C,cAAc,CAACiD,QAAQ,CACrB,GAAGpD,2BAA2B,IAAI0G,UAAU,EAAE,EAC9CvD,UACF,CAAC;EACH,CAAC,MAAM;IACLlC,OAAO,CAAC6F,GAAG,CAAC,GAAG9D,aAAa,CAAC2D,cAAc,CAAC,8BAA8B,CAAC;IAC3E;EACF;EAEAI,cAAc,CAACtG,OAAO,EAAE0C,UAAU,CAAC;EAEnC,MAAM6D,KAAK,GAAGtG,YAAY,CAACuG,cAAc,CAAC,yBAAyB,CAAC;EACpE,MAAMC,UAAU,GAAGxG,YAAY,CAACyG,eAAe,CAAC;IAAElD,IAAI,EAAE,GAAG5B,OAAO;EAAG,CAAC,CAAC;EACvE3B,YAAY,CAACyD,aAAa,CAAC6C,KAAK,EAAEE,UAAU,CAAC;EAE7CxG,YAAY,CAAC0G,aAAa,CAAC,GAAG/E,OAAO,IAAIsE,cAAc,EAAE,EAAE,IAAI,EAAEK,KAAK,CAAC;AACzE;AAEA,MAAMD,cAAc,GAAGA,CACrBtG,OAAmC,EACnCgF,WAAmB,KAChB;EACH,MAAM4B,WAAW,GAAG,0BAA0B;EAE9C,IAAIvB,cAAc,GAAG3F,cAAc,CAACoF,QAAQ,CAACE,WAAW,CAAC;EAEzD,IAAI6B,OAAO,GAAG,EAAE;EAChB,IACE7G,OAAO,CAAC8G,+BAA+B,KAAK1F,SAAS,IACrDpB,OAAO,CAAC8G,+BAA+B,KAAK,KAAK,EACjD;IACAD,OAAO,GAAGxH,qCAAqC;EACjD;EACAgG,cAAc,GAAG7F,kBAAkB,CAAC6F,cAAc,EAAEuB,WAAW,EAAEC,OAAO,CAAC;EAEzE,IAAI7G,OAAO,CAACG,gBAAgB,EAAE;IAC5BkF,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACd,qBAAqB,EACrBrF,OAAO,CAACG,gBAAgB,CAACmF,GAAG,CAACC,SAC/B,CAAC;IACDF,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACd,gBAAgB,EAChBrF,OAAO,CAACG,gBAAgB,CAACmF,GAAG,CAACG,MAAM,CAACsB,WAAW,CAAC,CAClD,CAAC;EACH;EAEA,MAAMC,mBAAmB,GACvBhH,OAAO,CAACgH,mBAAmB,KAAK5F,SAAS,IACzCpB,OAAO,CAACgH,mBAAmB,KAAK,IAAI;EACtC3B,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACd,gCAAgC,EAChC2B,mBAAmB,CAACC,QAAQ,CAAC,CAC/B,CAAC;EAED,MAAMC,oBAAoB,GACxBlH,OAAO,CAACkH,oBAAoB,KAAK9F,SAAS,IAC1CpB,OAAO,CAACkH,oBAAoB,KAAK,IAAI;EACvC7B,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACd,iCAAiC,EACjC6B,oBAAoB,CAACD,QAAQ,CAAC,CAChC,CAAC;EAED,MAAME,uBAAuB,GAC3BnH,OAAO,CAACmH,uBAAuB,KAAK/F,SAAS,IAC7CpB,OAAO,CAACmH,uBAAuB,KAAK,IAAI;EAC1C9B,cAAc,GAAG7F,kBAAkB,CACjC6F,cAAc,EACd,qCAAqC,EACrC8B,uBAAuB,CAACF,QAAQ,CAAC,CACnC,CAAC;EAEDvH,cAAc,CAACqF,SAAS,CAACC,WAAW,EAAEK,cAAc,CAAC;AACvD,CAAC","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["withXcodeProject","CIO_NOTIFICATION_TARGET_NAME","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET","DEFAULT_BUNDLE_VERSION","LOCAL_PATH_TO_CIO_NSE_FILES","replaceCodeByRegex","injectCIONotificationPodfileCode","FileManagement","isFcmPushProvider","PLIST_FILENAME","ENV_FILENAME","TARGETED_DEVICE_FAMILY","addNotificationServiceExtension","options","xcodeProject","_options$pushNotifica","pushNotification","addPushNotificationFile","useRichPush","addRichPushXcodeProj","error","console","withCioNotificationsXcodeProject","configOuter","props","config","modRequest","ios","version","bundleShortVersion","appleTeamId","iosDeploymentTarget","useFrameworks","undefined","Error","projectName","platformProjectRoot","bundleIdentifier","buildNumber","bundleVersion","iosPath","appName","modifiedProjectFile","modResults","isFcmProvider","pbxTargetByName","warn","nsePath","mkdir","recursive","platformSpecificFiles","commonFiles","getTargetFile","filename","forEach","targetFile","copyFile","infoPlistTargetFile","updateNseInfoPlist","updateNseEnv","extGroup","addPbxGroup","groups","hash","project","objects","Object","keys","key","name","path","addToPbxGroup","uuid","projObjects","nseTarget","addTarget","addBuildPhase","configurations","pbxXCBuildConfigurationSection","buildSettings","PRODUCT_NAME","buildSettingsObj","DEVELOPMENT_TEAM","IPHONEOS_DEPLOYMENT_TARGET","CODE_SIGN_STYLE","SWIFT_VERSION","addTargetAttribute","payload","BUNDLE_SHORT_VERSION_RE","BUNDLE_VERSION_RE","plistFileString","readFile","writeFile","envFileName","_options$pushNotifica2","CDP_API_KEY_RE","REGION_RE","envFileContent","cdpApiKey","region","env","regionMap","us","eu","mappedRegion","toLowerCase","sourceFile","targetFileName","appPath","exists","log","updatePushFile","group","pbxCreateGroup","classesKey","findPBXGroupKey","addSourceFile","_options$pushNotifica3","_options$pushNotifica4","_options$pushNotifica5","_options$pushNotifica6","_options$pushNotifica7","REGISTER_RE","disableNotificationRegistration","snippet","toUpperCase","autoTrackPushEvents","toString","autoFetchDeviceToken","showPushAppInForeground"],"sources":["withNotificationsXcodeProject.ts"],"sourcesContent":["import {\n ConfigPlugin,\n XcodeProject,\n withXcodeProject,\n} from '@expo/config-plugins';\n\nimport {\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_REGISTER_PUSHNOTIFICATION_SNIPPET,\n DEFAULT_BUNDLE_VERSION,\n LOCAL_PATH_TO_CIO_NSE_FILES,\n} from '../helpers/constants/ios';\nimport { replaceCodeByRegex } from '../helpers/utils/codeInjection';\nimport { injectCIONotificationPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { FileManagement } from './../helpers/utils/fileManagement';\nimport { isFcmPushProvider } from './utils';\n\nconst PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`;\nconst ENV_FILENAME = 'Env.swift';\n\nconst TARGETED_DEVICE_FAMILY = `\"1,2\"`;\n\nconst addNotificationServiceExtension = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: XcodeProject\n) => {\n try {\n if (options.pushNotification) {\n await addPushNotificationFile(options, xcodeProject);\n }\n\n if (options.pushNotification?.useRichPush === true) {\n await addRichPushXcodeProj(options, xcodeProject);\n }\n return xcodeProject;\n } catch (error: any) {\n console.error(error);\n return null;\n }\n};\n\nexport const withCioNotificationsXcodeProject: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withXcodeProject(configOuter, async (config) => {\n const { modRequest, ios, version: bundleShortVersion } = config;\n const { appleTeamId, iosDeploymentTarget, useFrameworks } = props;\n\n if (ios === undefined)\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.'\n );\n\n // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension()\n const { projectName, platformProjectRoot } = modRequest;\n const { bundleIdentifier, buildNumber } = ios;\n\n if (bundleShortVersion === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: version missing from app.config.js or app.json'\n );\n }\n\n if (bundleIdentifier === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'\n );\n }\n\n if (projectName === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: name missing from app.config.js or app.json'\n );\n }\n\n const options = {\n ...props,\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion: buildNumber || DEFAULT_BUNDLE_VERSION,\n iosPath: platformProjectRoot,\n appName: projectName,\n useFrameworks,\n iosDeploymentTarget,\n } satisfies CustomerIOPluginOptionsIOS;\n\n const modifiedProjectFile = await addNotificationServiceExtension(\n options,\n config.modResults\n );\n\n if (modifiedProjectFile) {\n config.modResults = modifiedProjectFile;\n }\n\n return config;\n });\n};\n\nconst addRichPushXcodeProj = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) => {\n const {\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion,\n iosPath,\n iosDeploymentTarget,\n useFrameworks,\n } = options;\n\n const isFcmProvider = isFcmPushProvider(options);\n\n await injectCIONotificationPodfileCode(iosPath, useFrameworks, isFcmProvider);\n\n // Check if `CIO_NOTIFICATION_TARGET_NAME` group already exist in the project\n // If true then skip creating a new group to avoid duplicate folders\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n const nsePath = `${iosPath}/${CIO_NOTIFICATION_TARGET_NAME}`;\n FileManagement.mkdir(nsePath, {\n recursive: true,\n });\n\n const platformSpecificFiles = ['NotificationService.swift'];\n\n const commonFiles = [\n PLIST_FILENAME,\n 'NotificationService.h',\n 'NotificationService.m',\n ENV_FILENAME,\n ];\n\n const getTargetFile = (filename: string) => `${nsePath}/${filename}`;\n // Copy platform-specific files\n platformSpecificFiles.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${\n isFcmProvider ? 'fcm' : 'apn'\n }/${filename}`,\n targetFile\n );\n });\n\n // Copy common files\n commonFiles.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/common/${filename}`,\n targetFile\n );\n });\n\n /* MODIFY COPIED EXTENSION FILES */\n const infoPlistTargetFile = getTargetFile(PLIST_FILENAME);\n updateNseInfoPlist({\n bundleVersion,\n bundleShortVersion,\n infoPlistTargetFile,\n });\n updateNseEnv(options, getTargetFile(ENV_FILENAME));\n\n // Create new PBXGroup for the extension\n const extGroup = xcodeProject.addPbxGroup(\n [...platformSpecificFiles, ...commonFiles], // Combine platform-specific and common files,\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_NOTIFICATION_TARGET_NAME\n );\n\n // Add the new PBXGroup to the top level group. This makes the\n // files / folder appear in the file explorer in Xcode.\n const groups = xcodeProject.hash.project.objects['PBXGroup'];\n Object.keys(groups).forEach((key) => {\n if (groups[key].name === undefined && groups[key].path === undefined) {\n xcodeProject.addToPbxGroup(extGroup.uuid, key);\n }\n });\n\n // WORK AROUND for codeProject.addTarget BUG\n // Xcode projects don't contain these if there is only one target\n // An upstream fix should be made to the code referenced in this link:\n // - https://github.com/apache/cordova-node-xcode/blob/8b98cabc5978359db88dc9ff2d4c015cba40f150/lib/pbxProject.js#L860\n const projObjects = xcodeProject.hash.project.objects;\n projObjects['PBXTargetDependency'] = projObjects['PBXTargetDependency'] || {};\n projObjects['PBXContainerItemProxy'] =\n projObjects['PBXTargetDependency'] || {};\n\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n // Add the NSE target\n // This also adds PBXTargetDependency and PBXContainerItemProxy\n const nseTarget = xcodeProject.addTarget(\n CIO_NOTIFICATION_TARGET_NAME,\n 'app_extension',\n CIO_NOTIFICATION_TARGET_NAME,\n `${bundleIdentifier}.richpush`\n );\n\n // Add build phases to the new target\n xcodeProject.addBuildPhase(\n ['NotificationService.m', 'NotificationService.swift', 'Env.swift'],\n 'PBXSourcesBuildPhase',\n 'Sources',\n nseTarget.uuid\n );\n xcodeProject.addBuildPhase(\n [],\n 'PBXResourcesBuildPhase',\n 'Resources',\n nseTarget.uuid\n );\n\n xcodeProject.addBuildPhase(\n [],\n 'PBXFrameworksBuildPhase',\n 'Frameworks',\n nseTarget.uuid\n );\n\n // Edit the Deployment info of the target\n const configurations = xcodeProject.pbxXCBuildConfigurationSection();\n for (const key in configurations) {\n if (\n typeof configurations[key].buildSettings !== 'undefined' &&\n configurations[key].buildSettings.PRODUCT_NAME ===\n `\"${CIO_NOTIFICATION_TARGET_NAME}\"`\n ) {\n const buildSettingsObj = configurations[key].buildSettings;\n buildSettingsObj.DEVELOPMENT_TEAM = appleTeamId;\n buildSettingsObj.IPHONEOS_DEPLOYMENT_TARGET =\n iosDeploymentTarget || '15.1';\n buildSettingsObj.TARGETED_DEVICE_FAMILY = TARGETED_DEVICE_FAMILY;\n buildSettingsObj.CODE_SIGN_STYLE = 'Automatic';\n buildSettingsObj.SWIFT_VERSION = 4.2;\n }\n }\n\n // Add development team to the target & the main\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId, nseTarget);\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId);\n};\n\nconst updateNseInfoPlist = (payload: {\n bundleVersion?: string;\n bundleShortVersion?: string;\n infoPlistTargetFile: string;\n}) => {\n const BUNDLE_SHORT_VERSION_RE = /\\{\\{BUNDLE_SHORT_VERSION\\}\\}/;\n const BUNDLE_VERSION_RE = /\\{\\{BUNDLE_VERSION\\}\\}/;\n\n let plistFileString = FileManagement.readFile(payload.infoPlistTargetFile);\n\n if (payload.bundleVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_VERSION_RE,\n payload.bundleVersion\n );\n }\n\n if (payload.bundleShortVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_SHORT_VERSION_RE,\n payload.bundleShortVersion\n );\n }\n\n FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);\n};\n\nconst updateNseEnv = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const CDP_API_KEY_RE = /\\{\\{CDP_API_KEY\\}\\}/;\n const REGION_RE = /\\{\\{REGION\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n const { cdpApiKey, region } = options.pushNotification?.env || {\n cdpApiKey: undefined,\n region: undefined,\n };\n\n if (!cdpApiKey) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios.pushNotification.env.cdpApiKey is missing from app.config.js or app.json.'\n );\n }\n envFileContent = replaceCodeByRegex(\n envFileContent,\n CDP_API_KEY_RE,\n cdpApiKey\n );\n\n if (region) {\n const regionMap = {\n us: 'Region.US',\n eu: 'Region.EU',\n };\n const mappedRegion = (regionMap as any)[region.toLowerCase()] || '';\n if (!mappedRegion) {\n console.warn(\n `${region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`\n );\n } else {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n REGION_RE,\n mappedRegion\n );\n }\n }\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n\nasync function addPushNotificationFile(\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) {\n // Maybe copy a different file with FCM config based on config\n const { iosPath, appName } = options;\n const isFcmProvider = isFcmPushProvider(options);\n // PushService.swift is platform-specific and always lives in the platform folder\n const sourceFile = `${isFcmProvider ? 'fcm' : 'apn'}/PushService.swift`;\n const targetFileName = 'PushService.swift';\n const appPath = `${iosPath}/${appName}`;\n const getTargetFile = (filename: string) => `${appPath}/${filename}`;\n const targetFile = getTargetFile(targetFileName);\n\n // Check whether {file} exists in the project. If false, then add the file\n // If {file} exists then skip and return\n if (!FileManagement.exists(getTargetFile(targetFileName))) {\n FileManagement.mkdir(appPath, {\n recursive: true,\n });\n\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${sourceFile}`,\n targetFile\n );\n } else {\n console.log(`${getTargetFile(targetFileName)} already exists. Skipping...`);\n return;\n }\n\n updatePushFile(options, targetFile);\n\n const group = xcodeProject.pbxCreateGroup('CustomerIONotifications');\n const classesKey = xcodeProject.findPBXGroupKey({ name: `${appName}` });\n xcodeProject.addToPbxGroup(group, classesKey);\n\n xcodeProject.addSourceFile(`${appName}/${targetFileName}`, null, group);\n}\n\nconst updatePushFile = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const REGISTER_RE = /\\{\\{REGISTER_SNIPPET\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n const disableNotificationRegistration =\n options.pushNotification?.disableNotificationRegistration;\n const { cdpApiKey, region } = options.pushNotification?.env || {\n cdpApiKey: undefined,\n region: undefined,\n };\n if (!cdpApiKey) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios.pushNotification.env.cdpApiKey is missing from app.config.js or app.json.'\n );\n }\n\n let snippet = '';\n // unless this property is explicity set to true, push notification\n // registration will be added to the AppDelegate\n if (disableNotificationRegistration !== true) {\n snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;\n }\n envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);\n\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{CDP_API_KEY\\}\\}/,\n cdpApiKey\n );\n\n if (region) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{REGION\\}\\}/,\n region.toUpperCase()\n );\n }\n\n const autoTrackPushEvents =\n options.pushNotification?.autoTrackPushEvents !== false;\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{AUTO_TRACK_PUSH_EVENTS\\}\\}/,\n autoTrackPushEvents.toString()\n );\n\n const autoFetchDeviceToken =\n options.pushNotification?.autoFetchDeviceToken !== false;\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{AUTO_FETCH_DEVICE_TOKEN\\}\\}/,\n autoFetchDeviceToken.toString()\n );\n\n const showPushAppInForeground =\n options.pushNotification?.showPushAppInForeground !== false;\n envFileContent = replaceCodeByRegex(\n envFileContent,\n /\\{\\{SHOW_PUSH_APP_IN_FOREGROUND\\}\\}/,\n showPushAppInForeground.toString()\n );\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,20 +1,9 @@
|
|
|
1
1
|
import { withXcodeProject } from '@expo/config-plugins';
|
|
2
|
-
import { injectCIOPodfileCode } from '../helpers/utils/injectCIOPodfileCode';
|
|
3
2
|
import { isFcmPushProvider } from './utils';
|
|
3
|
+
import { injectCIOPodfileCode } from '../helpers/utils/injectCIOPodfileCode';
|
|
4
4
|
export const withCioXcodeProject = (config, cioProps) => {
|
|
5
5
|
return withXcodeProject(config, async props => {
|
|
6
|
-
|
|
7
|
-
const options = {
|
|
8
|
-
iosPath: props.modRequest.platformProjectRoot,
|
|
9
|
-
bundleIdentifier: (_props$ios = props.ios) === null || _props$ios === void 0 ? void 0 : _props$ios.bundleIdentifier,
|
|
10
|
-
devTeam: cioProps === null || cioProps === void 0 ? void 0 : cioProps.devTeam,
|
|
11
|
-
bundleVersion: (_props$ios2 = props.ios) === null || _props$ios2 === void 0 ? void 0 : _props$ios2.buildNumber,
|
|
12
|
-
bundleShortVersion: props === null || props === void 0 ? void 0 : props.version,
|
|
13
|
-
iosDeploymentTarget: cioProps === null || cioProps === void 0 ? void 0 : cioProps.iosDeploymentTarget
|
|
14
|
-
};
|
|
15
|
-
const {
|
|
16
|
-
iosPath
|
|
17
|
-
} = options;
|
|
6
|
+
const iosPath = props.modRequest.platformProjectRoot;
|
|
18
7
|
await injectCIOPodfileCode(iosPath, isFcmPushProvider(cioProps));
|
|
19
8
|
return props;
|
|
20
9
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["withXcodeProject","
|
|
1
|
+
{"version":3,"names":["withXcodeProject","isFcmPushProvider","injectCIOPodfileCode","withCioXcodeProject","config","cioProps","props","iosPath","modRequest","platformProjectRoot"],"sources":["withXcodeProject.ts"],"sourcesContent":["import { ConfigPlugin, withXcodeProject } from '@expo/config-plugins';\n\nimport { isFcmPushProvider } from './utils';\nimport { injectCIOPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\n\nexport const withCioXcodeProject: ConfigPlugin<CustomerIOPluginOptionsIOS> = (\n config,\n cioProps\n) => {\n return withXcodeProject(config, async (props) => {\n const iosPath = props.modRequest.platformProjectRoot;\n\n await injectCIOPodfileCode(iosPath, isFcmPushProvider(cioProps));\n\n return props;\n });\n};\n"],"mappings":"AAAA,SAAuBA,gBAAgB,QAAQ,sBAAsB;AAErE,SAASC,iBAAiB,QAAQ,SAAS;AAC3C,SAASC,oBAAoB,QAAQ,uCAAuC;AAG5E,OAAO,MAAMC,mBAA6D,GAAGA,CAC3EC,MAAM,EACNC,QAAQ,KACL;EACH,OAAOL,gBAAgB,CAACI,MAAM,EAAE,MAAOE,KAAK,IAAK;IAC/C,MAAMC,OAAO,GAAGD,KAAK,CAACE,UAAU,CAACC,mBAAmB;IAEpD,MAAMP,oBAAoB,CAACK,OAAO,EAAEN,iBAAiB,CAACI,QAAQ,CAAC,CAAC;IAEhE,OAAOC,KAAK;EACd,CAAC,CAAC;AACJ,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["cio-types.ts"],"sourcesContent":["// properties set by the user in their app config file (e.g: app.json or app.plugin.js)\nexport type CustomerIOPluginProperties = {\n // (iOS only) Environment name and bundle identifier\n devTeam: string;\n iosDeploymentTarget: string;\n};\n\n// Plugin options for pre-build\nexport type CustomerIOPluginOptionsIOS = {\n iosPath: string;\n devTeam?: string;\n bundleVersion?: string;\n bundleShortVersion?: string;\n bundleIdentifier?: string;\n iosDeploymentTarget?: string;\n appleTeamId?: string;\n appName?: string;\n
|
|
1
|
+
{"version":3,"names":[],"sources":["cio-types.ts"],"sourcesContent":["// properties set by the user in their app config file (e.g: app.json or app.plugin.js)\nexport type CustomerIOPluginProperties = {\n // (iOS only) Environment name and bundle identifier\n devTeam: string;\n iosDeploymentTarget: string;\n};\n\n// Plugin options for pre-build\nexport type CustomerIOPluginOptionsIOS = {\n iosPath: string;\n devTeam?: string;\n bundleVersion?: string;\n bundleShortVersion?: string;\n bundleIdentifier?: string;\n iosDeploymentTarget?: string;\n appleTeamId?: string;\n appName?: string;\n\n useFrameworks?: 'static' | 'dynamic';\n\n pushNotification?: CustomerIOPluginPushNotificationOptions;\n\n /**\n * @deprecated No longer has any effect. Use autoTrackPushEvents to control if push metrics should be automatically tracked by SDK.\n */\n handleNotificationClick?: boolean;\n\n /**\n * @deprecated Property will be removed in the future. Use ios.pushNotification.autoFetchDeviceToken instead\n */\n autoFetchDeviceToken?: boolean;\n\n /**\n * @deprecated Property will be removed in the future. Use ios.pushNotification.showPushAppInForeground instead\n */\n showPushAppInForeground?: boolean;\n\n /**\n * @deprecated Property will be removed in the future. Use ios.pushNotification.autoTrackPushEvents instead\n */\n autoTrackPushEvents?: boolean;\n\n /**\n * @deprecated Property will be removed in the future. Use ios.pushNotification.handleDeeplinkInKilledState instead\n */\n handleDeeplinkInKilledState?: boolean;\n\n /**\n * @deprecated Property will be removed in the future. Use ios.pushNotification.disableNotificationRegistration instead\n */\n disableNotificationRegistration?: boolean;\n};\n\nexport type CustomerIOPluginOptionsAndroid = {\n androidPath: string;\n googleServicesFile?: string;\n setHighPriorityPushHandler?: boolean;\n};\n\nexport type CustomerIOPluginOptions = {\n android: CustomerIOPluginOptionsAndroid;\n ios: CustomerIOPluginOptionsIOS;\n};\n\nexport type CustomerIOPluginPushNotificationOptions = {\n provider?: 'apn' | 'fcm';\n googleServicesFile?: string;\n useRichPush?: boolean;\n autoFetchDeviceToken?: boolean;\n autoTrackPushEvents?: boolean;\n showPushAppInForeground?: boolean;\n disableNotificationRegistration?: boolean;\n handleDeeplinkInKilledState?: boolean;\n\n /**\n * These values will be used to initialize the Notification Service Extension (NSE) on the native side.\n * They should match the values you use to initialize the SDK in your app\n */\n env: {\n cdpApiKey: string;\n region: string;\n };\n};\n"],"mappings":"","ignoreList":[]}
|
|
@@ -11,25 +11,32 @@ export type CustomerIOPluginOptionsIOS = {
|
|
|
11
11
|
iosDeploymentTarget?: string;
|
|
12
12
|
appleTeamId?: string;
|
|
13
13
|
appName?: string;
|
|
14
|
-
|
|
14
|
+
useFrameworks?: 'static' | 'dynamic';
|
|
15
|
+
pushNotification?: CustomerIOPluginPushNotificationOptions;
|
|
15
16
|
/**
|
|
16
17
|
* @deprecated No longer has any effect. Use autoTrackPushEvents to control if push metrics should be automatically tracked by SDK.
|
|
17
18
|
*/
|
|
18
19
|
handleNotificationClick?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* @deprecated Property will be removed in the future. Use ios.pushNotification.autoFetchDeviceToken instead
|
|
22
|
+
*/
|
|
23
|
+
autoFetchDeviceToken?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* @deprecated Property will be removed in the future. Use ios.pushNotification.showPushAppInForeground instead
|
|
26
|
+
*/
|
|
19
27
|
showPushAppInForeground?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated Property will be removed in the future. Use ios.pushNotification.autoTrackPushEvents instead
|
|
30
|
+
*/
|
|
20
31
|
autoTrackPushEvents?: boolean;
|
|
21
|
-
|
|
32
|
+
/**
|
|
33
|
+
* @deprecated Property will be removed in the future. Use ios.pushNotification.handleDeeplinkInKilledState instead
|
|
34
|
+
*/
|
|
22
35
|
handleDeeplinkInKilledState?: boolean;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
useRichPush: boolean;
|
|
28
|
-
env: {
|
|
29
|
-
cdpApiKey: string;
|
|
30
|
-
region: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
36
|
+
/**
|
|
37
|
+
* @deprecated Property will be removed in the future. Use ios.pushNotification.disableNotificationRegistration instead
|
|
38
|
+
*/
|
|
39
|
+
disableNotificationRegistration?: boolean;
|
|
33
40
|
};
|
|
34
41
|
export type CustomerIOPluginOptionsAndroid = {
|
|
35
42
|
androidPath: string;
|
|
@@ -40,3 +47,21 @@ export type CustomerIOPluginOptions = {
|
|
|
40
47
|
android: CustomerIOPluginOptionsAndroid;
|
|
41
48
|
ios: CustomerIOPluginOptionsIOS;
|
|
42
49
|
};
|
|
50
|
+
export type CustomerIOPluginPushNotificationOptions = {
|
|
51
|
+
provider?: 'apn' | 'fcm';
|
|
52
|
+
googleServicesFile?: string;
|
|
53
|
+
useRichPush?: boolean;
|
|
54
|
+
autoFetchDeviceToken?: boolean;
|
|
55
|
+
autoTrackPushEvents?: boolean;
|
|
56
|
+
showPushAppInForeground?: boolean;
|
|
57
|
+
disableNotificationRegistration?: boolean;
|
|
58
|
+
handleDeeplinkInKilledState?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* These values will be used to initialize the Notification Service Extension (NSE) on the native side.
|
|
61
|
+
* They should match the values you use to initialize the SDK in your app
|
|
62
|
+
*/
|
|
63
|
+
env: {
|
|
64
|
+
cdpApiKey: string;
|
|
65
|
+
region: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -239,20 +239,15 @@ export const withAppDelegateModifications: ConfigPlugin<
|
|
|
239
239
|
);
|
|
240
240
|
stringContents = addNotificationHandlerDeclaration(stringContents);
|
|
241
241
|
|
|
242
|
-
//
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
props.disableNotificationRegistration === false
|
|
246
|
-
) {
|
|
242
|
+
// unless this property is explicity set to true, push notification
|
|
243
|
+
// registration will be added to the AppDelegate
|
|
244
|
+
if (props.pushNotification?.disableNotificationRegistration !== true) {
|
|
247
245
|
stringContents = addNotificationConfiguration(stringContents);
|
|
248
246
|
}
|
|
249
247
|
|
|
250
248
|
stringContents = addInitializeNativeCioSdk(stringContents);
|
|
251
249
|
|
|
252
|
-
if (
|
|
253
|
-
props.handleDeeplinkInKilledState !== undefined &&
|
|
254
|
-
props.handleDeeplinkInKilledState === true
|
|
255
|
-
) {
|
|
250
|
+
if (props.pushNotification?.handleDeeplinkInKilledState === true) {
|
|
256
251
|
stringContents = addHandleDeeplinkInKilledState(stringContents);
|
|
257
252
|
}
|
|
258
253
|
|
|
@@ -263,7 +258,7 @@ export const withAppDelegateModifications: ConfigPlugin<
|
|
|
263
258
|
|
|
264
259
|
if (isFcmPushProvider(props)) {
|
|
265
260
|
stringContents = addFirebaseDelegateForwardDeclarationIfNeeded(stringContents);
|
|
266
|
-
}
|
|
261
|
+
}
|
|
267
262
|
|
|
268
263
|
stringContents = addExpoNotificationsHeaderModification(stringContents);
|
|
269
264
|
|