import os import random import string import traceback import shutil import uuid from flask import Flask, request base_directory = "/Users/maronakins/Documents" app = Flask(__name__) app.base_project = { "android": base_directory + "/EmbedFeatures/NexilisSampleCode", "android_flutter": base_directory + "/EmbedFeatures/NexilisSampleCodeFlutter-Android", "android_ionic": base_directory + "/EmbedFeatures/NexilisSampleCodeIonic-Android", "android_react": base_directory + "/EmbedFeatures/NexilisSampleCodeReact-Android", "ios": base_directory + "/EmbedFeatures/NexilisSampleCode-iOS", "ios_flutter": base_directory + "/EmbedFeatures/NexilisSampleCodeFlutter-iOS", "ios_ionic": base_directory + "/EmbedFeatures/NexilisSampleCodeIonic-iOS", "ios_react": base_directory + "/EmbedFeatures/NexilisSampleCodeReact-iOS" } app.temp_folder = base_directory + "/EmbedFeatures/BuildExample" app.zip_folder = base_directory + "/EmbedFeatures/uploads" # app.ssl = ('/usr/src/app/ssl/STAR_newuniverse_io.crt', '/usr/src/app/ssl/STAR_nexilis.key') app.ssl = None app.verbose = True def vprint(*data): if app.verbose: print(*data) def indented_str(n, s, line=True, spaces=4) -> str: return " " * n * spaces + s + os.linesep if line else "" def create_folder(platform, uid): path = os.path.join(app.temp_folder, uid) if not os.path.exists(path): os.mkdir(path) else: shutil.rmtree(path) os.mkdir(path) vprint(path) base_project = app.base_project[platform] base_project_name = os.path.basename(base_project) path_dest = os.path.join(path, base_project_name) if not os.path.exists(path_dest): shutil.copytree(base_project, path_dest) return path_dest def write_android_manifest(manifest_path: str, features: dict, security: dict): with open(manifest_path, "r") as f: lines = f.readlines() with open(manifest_path, "w") as f: for line in lines: if "" in line: if features["sms"]["status"]: f.write(indented_str(1, '')) f.write(indented_str(1, '')) f.write(indented_str(1, '')) f.write(indented_str(1, '')) f.write(indented_str(1, '')) else: f.write(indented_str(1, '')) f.write(indented_str(1, '')) f.write(indented_str(1, '')) f.write(indented_str(1, '')) f.write(indented_str(1, '')) elif "" in line: if security["malware"] or security["side_load"] : f.write(indented_str(1, '')) f.write(indented_str(1, '')) else: f.write(indented_str(1, '')) f.write(indented_str(1, '')) else: f.write(line) def change(app_id: str, platform: str, mode: str, path_dest: str, features: dict, security: dict): if platform == "android": main_act_path = os.path.join(path_dest, "app/src/main/java/com/example/nexilissamplecodeburger/MainActivity.java") xml_menu_path = os.path.join(path_dest, "app/src/main/res/menu/menu_main.xml") manifest_path = os.path.join(path_dest, "app/src/main/AndroidManifest.xml") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: for line in lines: if "//FEATURES" in line: f.write(indented_str(2, "if (id == R.id.action_settings) {")) f.write(indented_str(3, "API.openSettings();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) f.write(indented_str(2, "if (id == R.id.action_profile) {")) f.write(indented_str(3, "API.openProfile();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) if features["cc"]["status"]: f.write(indented_str(2, "if (id == R.id.action_cc) {")) f.write(indented_str(3, "API.openContactCenter();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_cc) {")) f.write(indented_str(3, "// API.openContactCenter();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["nc"]["status"]: f.write(indented_str(2, "if (id == R.id.action_nc) {")) f.write(indented_str(3, "API.openNotificationCenter();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_nc) {")) f.write(indented_str(3, "// API.openNotificationCenter();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["im"]["status"]: f.write(indented_str(2, "if (id == R.id.action_chats) {")) f.write(indented_str(3, "API.openChat();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_chats) {")) f.write(indented_str(3, "// API.openChat();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["call"]["status"]: f.write(indented_str(2, "if (id == R.id.action_call) {")) f.write(indented_str(3, "API.openCall();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_call) {")) f.write(indented_str(3, "// API.openCall();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["ls"]["status"]: f.write(indented_str(2, "if (id == R.id.action_ls) {")) f.write(indented_str(3, "API.openOptionsStreaming();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_ls) {")) f.write(indented_str(3, "// API.openOptionsStreaming();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if security["secure_folder"]: f.write(indented_str(2, "if (id == R.id.action_sf) {")) f.write(indented_str(3, "API.openSecureFolder();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_sf) {")) f.write(indented_str(3, "// API.openSecureFolder();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) elif "//SECURITY" in line: if security["show_security"]: f.write(indented_str(2, "API.setShowSecurityShieldDialog(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setShowSecurityShieldDialog(true);")) f.write(os.linesep) if security["emulator"]: f.write(indented_str(2, "API.setCheckEmulator(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckEmulator(true);")) f.write(os.linesep) if security["debug"]: f.write(indented_str(2, "API.setCheckAdb(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckAdb(true);")) f.write(os.linesep) if security["sim_swap"]: f.write(indented_str(2, "API.setCheckSimSwap(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSimSwap(true);")) f.write(os.linesep) if security["malware"]: f.write(indented_str(2, "API.setCheckMalware(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckMalware(true);")) f.write(os.linesep) if security["capture"]: f.write(indented_str(2, "API.setPreventScreenCapture(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventScreenCapture(true);")) f.write(os.linesep) if security["call_forwarding"]: f.write(indented_str(2, "API.setCheckCallForwarding(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckCallForwarding(true);")) f.write(os.linesep) if security["screen_share"]: f.write(indented_str(2, "API.setCheckScreenCasting(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckScreenCasting(true);")) f.write(os.linesep) if security["side_load"]: f.write(indented_str(2, "API.setCheckSideLoadedApp(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSideLoadedApp(true);")) f.write(os.linesep) if security["key_logger"]: f.write(indented_str(2, "API.setPreventKeylogger(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventKeylogger(true);")) f.write(os.linesep) elif "//SMS" in line: if features["sms"]["status"]: f.write(indented_str(2, "API.setEnabledSMS(true);")) else: f.write(indented_str(2, "// API.setEnabledSMS(true);")) elif "//EMAIL" in line: if features["email"]["status"]: f.write(indented_str(2, "API.setEnabledEmail(true);")) else: f.write(indented_str(2, "// API.setEnabledEmail(true);")) elif "//SMARTBOT" in line: if features["smartbot"]["status"]: f.write(indented_str(2, "API.setEnabledSmartBot(true);")) else: f.write(indented_str(2, "// API.setEnabledSmartBot(true);")) elif "//BREAK" in line: if mode == "floating": f.write("}") break else: f.write(indented_str(0,"")) elif "//FLOATING" in line: if mode == "floating": f.write(indented_str(6, "ArrayList fb = new ArrayList<>();")) if features["cc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));')) if features["nc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));')) if features["im"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));')) if features["call"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));')) if features["ls"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));')) if security["secure_folder"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));')) f.write(indented_str(6, 'API.configureFloating(fb);')) else: f.write(indented_str(0, "")) elif "API.connect" in line: replaced = line if app_id: replaced = replaced.replace('***REPLACE***WITH***YOUR***APPLICATION***NAME***', app_id) if mode == "floating": replaced = replaced.replace("0", "1") f.write(replaced) else: f.write(line) with open(xml_menu_path, "r") as f: lines = f.readlines() with open(xml_menu_path, "w") as f: for line in lines: if "" in line: n = 100 f.write(indented_str(1, "')) n = n + 1 f.write(indented_str(1, "')) n = n + 1 if features["cc"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["nc"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["im"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["call"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["ls"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if security["secure_folder"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 else: f.write(line) write_android_manifest(manifest_path, features, security) elif platform == "android_flutter": main_act_path = os.path.join(path_dest, "lib/main.dart") main_act_android = os.path.join(path_dest, "android/app/src/main/java/com/example/paliolitesamplecodeflutter/MainActivity.java") manifest_path = os.path.join(path_dest, "android/app/src/main/AndroidManifest.xml") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: features_str = [] for line in lines: if "'Features List'" in line: features_str.append("'Settings'") features_str.append("'Profile'") if features["cc"]["status"]: features_str.append("'Contact Center'") else: features_str.append("// 'Contact Center'") if features["nc"]["status"]: features_str.append("'Notification Center'") else: features_str.append("// 'Notification Center'") if features["im"]["status"]: features_str.append("'Instant Messaging'") else: features_str.append("// 'Instant Messaging'") if features["call"]["status"]: features_str.append("'Call'") else: features_str.append("// 'Call'") if features["ls"]["status"]: features_str.append("'Streaming'") else: features_str.append("// 'Streaming'") if security["secure_folder"]: features_str.append("'Secure Folder'") else: features_str.append("// 'Secure Folder'") for feature_str in features_str: f.write(indented_str(8, f"{feature_str},", spaces=2)) elif "//FEATURES" in line: f.write(indented_str(3, 'case "Settings":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openSettings");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) f.write(indented_str(3, 'case "Profile":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openProfile");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) if features["cc"]["status"]: f.write(indented_str(3, 'case "Contact Center":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openContactCenter");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Contact Center":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openContactCenter");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["nc"]["status"]: f.write(indented_str(3, 'case "Notification Center":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openNotificationCenter");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Notification Center":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openNotificationCenter");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["im"]["status"]: f.write(indented_str(3, 'case "Instant Messaging":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openInstantMessaging");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Instant Messaging":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openInstantMessaging");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["call"]["status"]: f.write(indented_str(3, 'case "Call":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openCall");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Call":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openCall");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["ls"]["status"]: f.write(indented_str(3, 'case "Streaming":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openStreaming");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Streaming":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openStreaming");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if security["secure_folder"]: f.write(indented_str(3, 'case "Secure Folder":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openSecureFolder");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Secure Folder":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openSecureFolder");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) else: f.write(line) with open(main_act_android, "r") as f: lines = f.readlines() with open(main_act_android, "w") as f: for line in lines: if "//SECURITY" in line: if security["show_security"]: f.write(indented_str(2, "API.setShowSecurityShieldDialog(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setShowSecurityShieldDialog(true);")) f.write(os.linesep) if security["emulator"]: f.write(indented_str(2, "API.setCheckEmulator(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckEmulator(true);")) f.write(os.linesep) if security["debug"]: f.write(indented_str(2, "API.setCheckAdb(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckAdb(true);")) f.write(os.linesep) if security["sim_swap"]: f.write(indented_str(2, "API.setCheckSimSwap(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSimSwap(true);")) f.write(os.linesep) if security["malware"]: f.write(indented_str(2, "API.setCheckMalware(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckMalware(true);")) f.write(os.linesep) if security["capture"]: f.write(indented_str(2, "API.setPreventScreenCapture(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventScreenCapture(true);")) f.write(os.linesep) if security["call_forwarding"]: f.write(indented_str(2, "API.setCheckCallForwarding(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckCallForwarding(true);")) f.write(os.linesep) if security["screen_share"]: f.write(indented_str(2, "API.setCheckScreenCasting(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckScreenCasting(true);")) f.write(os.linesep) if security["side_load"]: f.write(indented_str(2, "API.setCheckSideLoadedApp(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSideLoadedApp(true);")) f.write(os.linesep) if security["key_logger"]: f.write(indented_str(2, "API.setPreventKeylogger(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventKeylogger(true);")) f.write(os.linesep) elif "//SMS" in line: if features["sms"]["status"]: f.write(indented_str(2, "API.setEnabledSMS(true);")) else: f.write(indented_str(2, "// API.setEnabledSMS(true);")) elif "//EMAIL" in line: if features["email"]["status"]: f.write(indented_str(2, "API.setEnabledEmail(true);")) else: f.write(indented_str(2, "// API.setEnabledEmail(true);")) elif "//SMARTBOT" in line: if features["smartbot"]["status"]: f.write(indented_str(2, "API.setEnabledSmartBot(true);")) else: f.write(indented_str(2, "// API.setEnabledSmartBot(true);")) elif "//FLOATING" in line: if mode == "floating": f.write(indented_str(6, "ArrayList fb = new ArrayList<>();")) if features["cc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));')) if features["nc"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));')) if features["im"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));')) if features["call"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));')) if features["ls"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));')) if security["secure_folder"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));')) f.write(indented_str(6, 'API.configureFloating(fb);')) else: f.write(indented_str(0, "")) elif "API.connect" in line: replaced = line if app_id: replaced = replaced.replace('***REPLACE***WITH***YOUR***APPLICATION***NAME***', app_id) if mode == "floating": replaced = replaced.replace("0", "1") f.write(replaced) else: f.write(line) write_android_manifest(manifest_path, features, security) elif platform == "android_ionic": main_act_path = os.path.join(path_dest,"src/app/app.component.ts") main_act_android = os.path.join(path_dest, "android/app/src/main/java/com/example/nexilissamplecodeionic/MainActivity.java") manifest_path = os.path.join(path_dest, "android/app/src/main/AndroidManifest.xml") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: for line in lines: if "//FEATURES" in line: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Settings',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openSettings();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Profile',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openProfile();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) if features["cc"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Contact Center',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openContactCenter();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Contact Center',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openContactCenter();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["nc"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Notification Center',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Notification Center',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["im"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Instant Messaging',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openChat();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Instant Messaging',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openChat();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["call"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Call',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openCall();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Call',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openCall();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["ls"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Streaming',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openStreaming();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Streaming',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openStreaming();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if security["secure_folder"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Secure Folder',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openSecureFolder();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Secure Folder',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openSecureFolder();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) else: f.write(line) with open(main_act_android, "r") as f: lines = f.readlines() with open(main_act_android, "w") as f: for line in lines: if "//SECURITY" in line: if security["show_security"]: f.write(indented_str(2, "API.setShowSecurityShieldDialog(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setShowSecurityShieldDialog(true);", spaces=2)) f.write(os.linesep) if security["emulator"]: f.write(indented_str(2, "API.setCheckEmulator(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckEmulator(true);", spaces=2)) f.write(os.linesep) if security["debug"]: f.write(indented_str(2, "API.setCheckAdb(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckAdb(true);", spaces=2)) f.write(os.linesep) if security["sim_swap"]: f.write(indented_str(2, "API.setCheckSimSwap(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSimSwap(true);", spaces=2)) f.write(os.linesep) if security["malware"]: f.write(indented_str(2, "API.setCheckMalware(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckMalware(true);", spaces=2)) f.write(os.linesep) if security["capture"]: f.write(indented_str(2, "API.setPreventScreenCapture(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventScreenCapture(true);", spaces=2)) f.write(os.linesep) if security["call_forwarding"]: f.write(indented_str(2, "API.setCheckCallForwarding(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckCallForwarding(true);", spaces=2)) f.write(os.linesep) if security["screen_share"]: f.write(indented_str(2, "API.setCheckScreenCasting(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckScreenCasting(true);", spaces=2)) f.write(os.linesep) if security["side_load"]: f.write(indented_str(2, "API.setCheckSideLoadedApp(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSideLoadedApp(true);", spaces=2)) f.write(os.linesep) if security["key_logger"]: f.write(indented_str(2, "API.setPreventKeylogger(true);", spaces=2)) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventKeylogger(true);", spaces=2)) f.write(os.linesep) elif "//SMS" in line: if features["sms"]["status"]: f.write(indented_str(2, "API.setEnabledSMS(true);", spaces=2)) else: f.write(indented_str(2, "// API.setEnabledSMS(true);", spaces=2)) elif "//EMAIL" in line: if features["email"]["status"]: f.write(indented_str(2, "API.setEnabledEmail(true);", spaces=2)) else: f.write(indented_str(2, "// API.setEnabledEmail(true);", spaces=2)) elif "//SMARTBOT" in line: if features["smartbot"]["status"]: f.write(indented_str(2, "API.setEnabledSmartBot(true);")) else: f.write(indented_str(2, "// API.setEnabledSmartBot(true);")) elif "//FLOATING" in line: if mode == "floating": f.write(indented_str(6, "ArrayList fb = new ArrayList<>();", spaces=2)) if features["cc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));', spaces=2)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));', spaces=2)) if features["nc"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));', spaces=2)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));', spaces=2)) if features["im"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));', spaces=2)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));', spaces=2)) if features["call"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));', spaces=2)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));', spaces=2)) if features["ls"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));', spaces=2)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));', spaces=2)) if security["secure_folder"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));', spaces=2)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));', spaces=2)) f.write(indented_str(6, 'API.configureFloating(fb);', spaces=2)) else: f.write(indented_str(0, "", spaces=2)) elif "API.connect" in line: replaced = line if app_id: replaced = replaced.replace('***REPLACE***WITH***YOUR***APPLICATION***NAME***', app_id) if mode == "floating": replaced = replaced.replace("0", "1") f.write(replaced) else: f.write(line) write_android_manifest(manifest_path, features, security) elif platform == "android_react": main_act_path = os.path.join(path_dest, "App.tsx") main_act_android = os.path.join(path_dest, "android/app/src/main/java/com/paliolitesamplecode/MainActivity.java") manifest_path = os.path.join(path_dest, "android/app/src/main/AndroidManifest.xml") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: for line in lines: if "'Features'" in line: f.write(indented_str(4, "'Setting',", spaces=2)) f.write(indented_str(4, "'Profile',", spaces=2)) if features["cc"]["status"]: f.write(indented_str(4, "'Contact Center',", spaces=2)) else: f.write(indented_str(4, "// 'Contact Center',", spaces=2)) if features["nc"]["status"]: f.write(indented_str(4, "'Notification Center',", spaces=2)) else: f.write(indented_str(4, "// 'Notification Center',", spaces=2)) if features["im"]["status"]: f.write(indented_str(4, "'Chat',", spaces=2)) else: f.write(indented_str(4, "// 'Chat',", spaces=2)) if features["call"]["status"]: f.write(indented_str(4, "'Call',", spaces=2)) else: f.write(indented_str(4, "// 'Call',", spaces=2)) if features["ls"]["status"]: f.write(indented_str(4, "'Live Streaming',", spaces=2)) else: f.write(indented_str(4, "// 'Live Streaming',", spaces=2)) if security["secure_folder"]: f.write(indented_str(4, "'Secure Folder',", spaces=2)) else: f.write(indented_str(4, "// 'Secure Folder',", spaces=2)) elif "//FEATURES1" in line: n = 0 f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openSetting();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openProfile();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 if features["cc"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openContactCenter();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 2) {", spaces=2)) f.write(indented_str(6, "// CallNative.openContactCenter();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["nc"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 3) {", spaces=2)) f.write(indented_str(6, "// CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["im"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openChat();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 4) {", spaces=2)) f.write(indented_str(6, "// CallNative.openChat();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["call"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openCall();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 5) {", spaces=2)) f.write(indented_str(6, "// CallNative.openCall();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["ls"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openStreaming();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 6) {", spaces=2)) f.write(indented_str(6, "// CallNative.openStreaming();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if security["secure_folder"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openSecureFolder();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 7) {", spaces=2)) f.write(indented_str(6, "// CallNative.openSecureFolder();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) elif "//FEATURES2" in line: n = 0 f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openSetting();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openProfile();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 if features["cc"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openContactCenter();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 2) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openContactCenter();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["nc"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 3) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["im"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openChat();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 4) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openChat();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["call"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openCall();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 5) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openCall();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["ls"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openStreaming();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 6) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openStreaming();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if security["secure_folder"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openSecureFolder();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 7) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openSecureFolder();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) elif "//FEATURES3" in line: n = 0 f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 if features["cc"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(2)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["nc"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(3)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["im"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(4)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["call"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(5)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["ls"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(6)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if security["secure_folder"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(7)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) else: f.write(line) with open(main_act_android, "r") as f: lines = f.readlines() with open(main_act_android, "w") as f: for line in lines: if "//SECURITY" in line: if security["show_security"]: f.write(indented_str(2, "API.setShowSecurityShieldDialog(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setShowSecurityShieldDialog(true);")) f.write(os.linesep) if security["emulator"]: f.write(indented_str(2, "API.setCheckEmulator(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckEmulator(true);")) f.write(os.linesep) if security["debug"]: f.write(indented_str(2, "API.setCheckAdb(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckAdb(true);")) f.write(os.linesep) if security["sim_swap"]: f.write(indented_str(2, "API.setCheckSimSwap(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSimSwap(true);")) f.write(os.linesep) if security["malware"]: f.write(indented_str(2, "API.setCheckMalware(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckMalware(true);")) f.write(os.linesep) if security["capture"]: f.write(indented_str(2, "API.setPreventScreenCapture(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventScreenCapture(true);")) f.write(os.linesep) if security["call_forwarding"]: f.write(indented_str(2, "API.setCheckCallForwarding(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckCallForwarding(true);")) f.write(os.linesep) if security["screen_share"]: f.write(indented_str(2, "API.setCheckScreenCasting(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckScreenCasting(true);")) f.write(os.linesep) if security["side_load"]: f.write(indented_str(2, "API.setCheckSideLoadedApp(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setCheckSideLoadedApp(true);")) f.write(os.linesep) if security["key_logger"]: f.write(indented_str(2, "API.setPreventKeylogger(true);")) f.write(os.linesep) else: f.write(indented_str(2, "// API.setPreventKeylogger(true);")) f.write(os.linesep) elif "//SMS" in line: if features["sms"]["status"]: f.write(indented_str(2, "API.setEnabledSMS(true);")) else: f.write(indented_str(2, "// API.setEnabledSMS(true);")) elif "//EMAIL" in line: if features["email"]["status"]: f.write(indented_str(2, "API.setEnabledEmail(true);")) else: f.write(indented_str(2, "// API.setEnabledEmail(true);")) elif "//SMARTBOT" in line: if features["smartbot"]["status"]: f.write(indented_str(2, "API.setEnabledSmartBot(true);")) else: f.write(indented_str(2, "// API.setEnabledSmartBot(true);")) elif "//FLOATING" in line: if mode == "floating": f.write(indented_str(6, "ArrayList fb = new ArrayList<>();")) if features["cc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));')) if features["nc"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));')) if features["im"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));')) if features["call"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));')) if features["ls"]["status"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));')) if security["secure_folder"]: f.write( indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));')) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));')) f.write(indented_str(6, 'API.configureFloating(fb);')) else: f.write(indented_str(0, "")) elif "API.connect" in line: replaced = line if app_id: replaced = replaced.replace('***REPLACE***WITH***YOUR***APPLICATION***NAME***', app_id) if mode == "floating": replaced = replaced.replace("0", "1") f.write(replaced) else: f.write(line) write_android_manifest(manifest_path, features, security) elif platform == "ios": main_act_path = os.path.join(path_dest, "ExampleCode/ViewController.swift") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: for line in lines: if "//FEATURES" in line: f.write(indented_str(3, 'UIAction(title: "Setting".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openSetting();")) f.write(indented_str(3, "}),")) f.write(indented_str(3, 'UIAction(title: "Profile".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openProfile();")) f.write(indented_str(3, "}),")) if features["cc"]["status"]: f.write(indented_str(3, 'UIAction(title: "Contact Center".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openContactCenter();")) f.write(indented_str(3, "}),")) else: f.write(indented_str(3, '// UIAction(title: "Contact Center".localized(), handler: {(_) in')) f.write(indented_str(4, "// APIS.openContactCenter();")) f.write(indented_str(3, "// }),")) if features["nc"]["status"]: f.write(indented_str(3, 'UIAction(title: "Notification Center".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openNotificationCenter();")) f.write(indented_str(3, "}),")) else: f.write(indented_str(3, '// UIAction(title: "Notification Center".localized(), handler: {(_) in')) f.write(indented_str(4, "// APIS.openNotificationCenter();")) f.write(indented_str(3, "// }),")) if features["im"]["status"]: f.write(indented_str(3, 'UIAction(title: "Chat".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openChat();")) f.write(indented_str(3, "}),")) else: f.write(indented_str(3, '// UIAction(title: "Chat".localized(), handler: {(_) in')) f.write(indented_str(4, "// APIS.openChat();")) f.write(indented_str(3, "// }),")) if features["call"]["status"]: f.write(indented_str(3, 'UIAction(title: "Call".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openCall();")) f.write(indented_str(3, "}),")) else: f.write(indented_str(3, '// UIAction(title: "Call".localized(), handler: {(_) in')) f.write(indented_str(4, "// APIS.openCall();")) f.write(indented_str(3, "// }),")) if features["ls"]["status"]: f.write(indented_str(3, 'UIAction(title: "Live Streaming".localized(), handler: {(_) in')) f.write(indented_str(4, "APIS.openStreaming();")) f.write(indented_str(3, "}),")) else: f.write(indented_str(3, '// UIAction(title: "Live Streaming".localized(), handler: {(_) in')) f.write(indented_str(4, "// APIS.openStreaming();")) f.write(indented_str(3, "// }),")) elif "//FLOATING" in line: if mode == "floating": if features["cc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) if features["nc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) if features["im"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) if features["call"]["status"]: f.write(indented_str(2,'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) if features["ls"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(0, "")) elif "APIS.connect" in line: if mode == "floating": replaced = line.replace("false", "true") f.write(replaced) else: f.write(line) else: f.write(line) elif platform == "ios_flutter": main_act_path = os.path.join(path_dest, "lib/main.dart") main_act_ios = os.path.join(path_dest, "ios/Runner/AppDelegate.swift") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: features_str = [] for line in lines: if "'Features List'" in line: features_str.append("'Settings'") features_str.append("'Profile'") if features["cc"]["status"]: features_str.append("'Contact Center'") else: features_str.append("// 'Contact Center'") if features["nc"]["status"]: features_str.append("'Notification Center'") else: features_str.append("// 'Notification Center'") if features["im"]["status"]: features_str.append("'Instant Messaging'") else: features_str.append("// 'Instant Messaging'") if features["call"]["status"]: features_str.append("'Call'") else: features_str.append("// 'Call'") if features["ls"]["status"]: features_str.append("'Streaming'") else: features_str.append("// 'Streaming'") for feature_str in features_str: f.write(indented_str(8, f"{feature_str},", spaces=2)) elif "//FEATURES" in line: f.write(indented_str(3, 'case "Settings":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openSettings");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) f.write(indented_str(3, 'case "Profile":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openProfile");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) if features["cc"]["status"]: f.write(indented_str(3, 'case "Contact Center":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openContactCenter");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Contact Center":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openContactCenter");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["nc"]["status"]: f.write(indented_str(3, 'case "Notification Center":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openNotificationCenter");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Notification Center":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openNotificationCenter");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["im"]["status"]: f.write(indented_str(3, 'case "Instant Messaging":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openInstantMessaging");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Instant Messaging":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openInstantMessaging");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["call"]["status"]: f.write(indented_str(3, 'case "Call":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openCall");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Call":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openCall");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) if features["ls"]["status"]: f.write(indented_str(3, 'case "Streaming":', spaces=2)) f.write(indented_str(4, 'nativeChannel.invokeMethod("openStreaming");', spaces=2)) f.write(indented_str(4, "break;", spaces=2)) else: f.write(indented_str(3, '// case "Streaming":', spaces=2)) f.write(indented_str(4, '// nativeChannel.invokeMethod("openStreaming");', spaces=2)) f.write(indented_str(4, "// break;", spaces=2)) else: f.write(line) with open(main_act_ios, "r") as f: lines = f.readlines() with open(main_act_ios, "w") as f: for line in lines: if "//FLOATING" in line: if mode == "floating": if features["cc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) if features["nc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) if features["im"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) if features["call"]["status"]: f.write(indented_str(2,'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) if features["ls"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(0, "")) elif "APIS.connect" in line: if mode == "floating": replaced = line.replace("false", "true") f.write(replaced) else: f.write(line) else: f.write(line) elif platform == "ios_ionic": main_act_path = os.path.join(path_dest, "src/app/app.component.ts") main_act_ios = os.path.join(path_dest, "ios/App/App/AppDelegate.swift") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: for line in lines: if "//FEATURES" in line: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Settings',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openSettings();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Profile',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openProfile();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) if features["cc"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Contact Center',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openContactCenter();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Contact Center',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openContactCenter();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["nc"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Notification Center',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Notification Center',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["im"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Instant Messaging',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openChat();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Instant Messaging',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openChat();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["call"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Call',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openCall();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Call',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openCall();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) if features["ls"]["status"]: f.write(indented_str(4, '{', spaces=2)) f.write(indented_str(5, "text: 'Streaming',", spaces=2)) f.write(indented_str(5, "handler: () => {", spaces=2)) f.write(indented_str(6, "this.openStreaming();", spaces=2)) f.write(indented_str(5, "},", spaces=2)) f.write(indented_str(4, "},", spaces=2)) else: f.write(indented_str(4, '// {', spaces=2)) f.write(indented_str(5, "// text: 'Streaming',", spaces=2)) f.write(indented_str(5, "// handler: () => {", spaces=2)) f.write(indented_str(6, "// this.openStreaming();", spaces=2)) f.write(indented_str(5, "// },", spaces=2)) f.write(indented_str(4, "// },", spaces=2)) else: f.write(line) with open(main_act_ios, "r") as f: lines = f.readlines() with open(main_act_ios, "w") as f: for line in lines: if "//FLOATING" in line: if mode == "floating": if features["cc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) if features["nc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) if features["im"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) if features["call"]["status"]: f.write(indented_str(2,'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) if features["ls"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(0, "")) elif "APIS.connect" in line: if mode == "floating": replaced = line.replace("false", "true") f.write(replaced) else: f.write(line) else: f.write(line) elif platform == "ios_react": main_act_path = os.path.join(path_dest, "App.tsx") main_act_ios = os.path.join(path_dest, "ios/CallNative.swift") with open(main_act_path, "r") as f: lines = f.readlines() with open(main_act_path, "w") as f: for line in lines: if "'Features'" in line: f.write(indented_str(4, "'Setting',", spaces=2)) f.write(indented_str(4, "'Profile',", spaces=2)) if features["cc"]["status"]: f.write(indented_str(4, "'Contact Center',", spaces=2)) else: f.write(indented_str(4, "// 'Contact Center',", spaces=2)) if features["nc"]["status"]: f.write(indented_str(4, "'Notification Center',", spaces=2)) else: f.write(indented_str(4, "// 'Notification Center',", spaces=2)) if features["im"]["status"]: f.write(indented_str(4, "'Chat',", spaces=2)) else: f.write(indented_str(4, "// 'Chat',", spaces=2)) if features["call"]["status"]: f.write(indented_str(4, "'Call',", spaces=2)) else: f.write(indented_str(4, "// 'Call',", spaces=2)) if features["ls"]["status"]: f.write(indented_str(4, "'Live Streaming',", spaces=2)) else: f.write(indented_str(4, "// 'Live Streaming',", spaces=2)) elif "//FEATURES1" in line: n = 0 f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openSetting();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openProfile();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 if features["cc"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openContactCenter();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 2) {", spaces=2)) f.write(indented_str(6, "// CallNative.openContactCenter();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["nc"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 3) {", spaces=2)) f.write(indented_str(6, "// CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["im"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openChat();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 4) {", spaces=2)) f.write(indented_str(6, "// CallNative.openChat();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["call"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openCall();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 5) {", spaces=2)) f.write(indented_str(6, "// CallNative.openCall();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) if features["ls"]["status"]: f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(6, "CallNative.openStreaming();", spaces=2)) f.write(indented_str(5, "}", spaces=2)) n = n + 1 else: f.write(indented_str(5, "// if (buttonIndex === 6) {", spaces=2)) f.write(indented_str(6, "// CallNative.openStreaming();", spaces=2)) f.write(indented_str(5, "// }", spaces=2)) elif "//FEATURES2" in line: n = 0 f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openSetting();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openProfile();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 if features["cc"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openContactCenter();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 2) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openContactCenter();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["nc"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 3) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openNotificationCenter();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["im"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openChat();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 4) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openChat();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["call"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openCall();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === 5) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openCall();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) if features["ls"]["status"]: f.write(indented_str(2, f"if (buttonIndex === {n}) {{", spaces=2)) f.write(indented_str(3, "try {", spaces=2)) f.write(indented_str(4, "CallNative.openStreaming();", spaces=2)) f.write(indented_str(3, "} catch (e) {", spaces=2)) f.write(indented_str(4, "console.log(e);", spaces=2)) f.write(indented_str(3, "}", spaces=2)) f.write(indented_str(2, "}", spaces=2)) n = n + 1 else: f.write(indented_str(2, "// if (buttonIndex === {n}) {", spaces=2)) f.write(indented_str(3, "// try {", spaces=2)) f.write(indented_str(4, "// CallNative.openStreaming();", spaces=2)) f.write(indented_str(3, "// } catch (e) {", spaces=2)) f.write(indented_str(4, "// console.log(e);", spaces=2)) f.write(indented_str(3, "// }", spaces=2)) f.write(indented_str(2, "// }", spaces=2)) elif "//FEATURES3" in line: n = 0 f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 if features["cc"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(2)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["nc"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(3)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["im"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(4)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["call"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(5)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) if features["ls"]["status"]: f.write(indented_str(5, " handleActionSheetPress({n})}}', spaces=2)) f.write(indented_str(5, "/>", spaces=2)) n = n + 1 else: f.write(indented_str(5, "{/* handleActionSheetPress(5)}}', spaces=2)) f.write(indented_str(5, "/> */}", spaces=2)) else: f.write(line) with open(main_act_ios, "r") as f: lines = f.readlines() with open(main_act_ios, "w") as f: for line in lines: if "//FLOATING" in line: if mode == "floating": if features["cc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CC)')) if features["nc"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) else: f.write(indented_str(2, '// Nexilis.defaultFloatingButton.append(Nexilis.IDX_NOTIF_CENTER)')) if features["im"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CHAT)')) if features["call"]["status"]: f.write(indented_str(2,'Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_CALL)')) if features["ls"]["status"]: f.write(indented_str(2, 'Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(2,'// Nexilis.defaultFloatingButton.append(Nexilis.IDX_STREAM)')) else: f.write(indented_str(0, "")) elif "APIS.connect" in line: if mode == "floating": replaced = line.replace("false", "true") f.write(replaced) else: f.write(line) else: f.write(line) def deliver_zip(path_dest, uid): rand_name = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(32)) zip_name = f"{rand_name}" new_dir = os.path.join(app.zip_folder, zip_name) try: shutil.make_archive(new_dir, 'zip', path_dest) project_path = os.path.join(app.temp_folder, uid) shutil.rmtree(project_path) return {"status": "0", "name": zip_name + ".zip"} except Exception as e: return {"status": "4", "message": "Deliver ZIP failed"} @app.route('/', methods=["GET", "POST"]) def build_project(): vprint('==============================================================') if request.method == 'POST': platform = "android" mode = "burger" app_id = "" feature_dict = { "im": { "status": False }, "cc": { "status": False }, "call": { "status": False }, "ls": { "status": False }, "settings": { "status": False }, "nc": { "status": False }, "sms": { "status": False }, "email": { "status": False }, "smartbot": { "status": False } } security_dict = { "root_device": False, "malware": False, "clone": False, "emulator": False, "debug": False, "sim_swap": False, "capture": False, "call_forwarding": False, "secure_folder": False, "show_security": False, "screen_share": False, "side_load": False, "key_logger": False, } try: if "feature_im" in request.form: feature_dict["im"]["status"] = request.form["feature_im"] == "1" if "feature_cc" in request.form: feature_dict["cc"]["status"] = request.form["feature_cc"] == "1" if "feature_vc" in request.form: feature_dict["call"]["status"] = request.form["feature_vc"] == "1" if "feature_ac" in request.form and not feature_dict["call"]["status"]: feature_dict["call"]["status"] = request.form["feature_ac"] == "1" if "feature_ls" in request.form: feature_dict["ls"]["status"] = request.form["feature_ls"] == "1" if "feature_nc" in request.form: feature_dict["nc"]["status"] = request.form["feature_nc"] == "1" if "feature_sms" in request.form: feature_dict["sms"]["status"] = request.form["feature_sms"] == "1" if "feature_email" in request.form: feature_dict["email"]["status"] = request.form["feature_email"] == "1" if "feature_smartbot" in request.form: feature_dict["smartbot"]["status"] = request.form["feature_smartbot"] == "1" if "feature_settings" in request.form: feature_dict["settings"]["status"] = request.form["feature_settings"] == "1" if "security_malware" in request.form: security_dict["malware"] = request.form["security_malware"] == "1" if "security_clone" in request.form: security_dict["clone"] = request.form["security_clone"] == "1" if "security_emulator" in request.form: security_dict["emulator"] = request.form["security_emulator"] == "1" if "security_debug" in request.form: security_dict["debug"] = request.form["security_debug"] == "1" if "security_sim_swap" in request.form: security_dict["sim_swap"] = request.form["security_sim_swap"] == "1" if "security_capture" in request.form: security_dict["capture"] = request.form["security_capture"] == "1" if "security_call_forwarding" in request.form: security_dict["call_forwarding"] = request.form["security_call_forwarding"] == "1" if "security_secure_folder" in request.form: security_dict["secure_folder"] = request.form["security_secure_folder"] == "1" if "show_security" in request.form: security_dict["show_security"] = request.form["show_security"] == "1" if "security_rootdevice" in request.form: security_dict["root_device"] = request.form["security_rootdevice"] == "1" if "security_screenshare" in request.form: security_dict["screen_share"] = request.form["security_screenshare"] == "1" if "security_sideloaded" in request.form: security_dict["side_load"] = request.form["security_sideloaded"] == "1" if "security_keylogger" in request.form: security_dict["key_logger"] = request.form["security_keylogger"] == "1" security_dict["show_security"] = (security_dict["malware"] or security_dict["clone"] or security_dict["emulator"] or security_dict["debug"] or security_dict["sim_swap"] or security_dict["capture"] or security_dict["call_forwarding"] or security_dict["secure_folder"]) if "platform" in request.form: platform = request.form["platform"] if "mode" in request.form: mode = request.form["mode"] if "app_id" in request.form: app_id = request.form["app_id"] except BaseException as e: vprint(traceback.format_exc()) return {"status": "1", "message": "Parameter mismatch\n{}\n".format(str(e))}, 400 try: uu_id = str(uuid.uuid4()) path_dest = create_folder(platform, uu_id) change(app_id, platform, mode, path_dest, feature_dict, security_dict) return deliver_zip(path_dest, uu_id) except BaseException as e: vprint(traceback.format_exc()) return {"status": "2", "message": "Process failure\n{}\n".format(str(e))}, 200 else: if 'e' in request.args: return request.args['e'] return "Hello World!" if __name__ == '__main__': app.run(host='0.0.0.0', port=8056, debug=app.verbose, ssl_context=app.ssl)