import os import random import string import traceback import shutil import uuid from flask import Flask, request # base_directory = "/home/easysoft054/Projects/git-es" base_directory = "/Users/maronakins/Documents" ALLOWED_EXTENSIONS_ICON = {'png'} 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", "security_shield": base_directory + "/EmbedFeatures/NexilisSampleCodeShield", } 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 allowed_file(filename): return '.' in filename and \ filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS_ICON 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 write_floating_button(f, features: dict, security: dict, spaces=4): 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, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_CENTER, ""));', spaces)) if features["cc_chat"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_CHAT));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_CHAT));', spaces)) if features["cc_voip"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_AC));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_AC));', spaces)) if features["cc_vidcall"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_VC));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_VC));', spaces)) if features["cc_email"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_EMAIL));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_EMAIL));', spaces)) if features["cc_sms"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_SMS));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_SMS));', spaces)) if features["cc_gsm"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_GCALL));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_GCALL));', spaces)) if features["cc_whatsapp"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_WA));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_WA));', spaces)) if features["cc_smartbot"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_CHATBOT));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton("", FloatingButtonVar.CC_SUB_CHATBOT));', spaces)) if features["nc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.NOTIF_CENTER, ""));', spaces)) if features["im"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.MESSAGING, ""));', spaces)) if features["ac"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_CALL, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_CALL, ""));', spaces)) if features["vc"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.VIDEO_CALL, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.VIDEO_CALL, ""));', spaces)) if features["call"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.AUDIO_VIDEO_CALL, ""));', spaces)) if features["ls"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.STREAMING, ""));', spaces)) if security["secure_folder"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.SECURE_FOLDER, ""));', spaces)) if features["conpost"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.POST, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.POST, ""));', spaces)) if features["ppob"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.PPOB, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.PPOB, ""));', spaces)) if features["wallet"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.WALLET, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.WALLET, ""));', spaces)) if features["social_commerce"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.SOCIAL_COMMERCE, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.SOCIAL_COMMERCE, ""));', spaces)) if features["news_update"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.NEWS, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.NEWS, ""));', spaces)) if features["contact_list"]["status"]: f.write(indented_str(6, 'fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_LIST, ""));', spaces)) else: f.write(indented_str(6, '// fb.add(new FloatingButton(FloatingButton.FEATURE.CONTACT_LIST, ""));', spaces)) f.write(indented_str(6, 'API.configureFloating(fb);', spaces)) 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") layout_grid_path = os.path.join(path_dest, "app/src/main/res/layout/activity_main_grid.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["ac"]["status"]: f.write(indented_str(2, "if (id == R.id.action_audio_call) {")) f.write(indented_str(3, "API.openAudioCall();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_audio_call) {")) f.write(indented_str(3, "// API.openAudioCall();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["vc"]["status"]: f.write(indented_str(2, "if (id == R.id.action_video_call) {")) f.write(indented_str(3, "API.openVideoCall();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_video_call) {")) f.write(indented_str(3, "// API.openVideoCall();")) 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 features["custom_url"]["status"]: f.write(indented_str(2, "if (id == R.id.action_custom_url) {")) f.write(indented_str(3, "API.openCustomURL();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_custom_url) {")) f.write(indented_str(3, "// API.openCustomURL();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["xapps"]["status"]: f.write(indented_str(2, "if (id == R.id.action_xapps) {")) f.write(indented_str(3, "API.openExternalApps();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_xapps) {")) f.write(indented_str(3, "// API.openExternalApps();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["conpost"]["status"]: f.write(indented_str(2, "if (id == R.id.action_conpost) {")) f.write(indented_str(3, "API.openUserGeneratedContent();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_conpost) {")) f.write(indented_str(3, "// API.openUserGeneratedContent();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["ppob"]["status"]: f.write(indented_str(2, "if (id == R.id.action_ppob) {")) f.write(indented_str(3, "API.openPPOB();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_ppob) {")) f.write(indented_str(3, "// API.openPPOB();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["wallet"]["status"]: f.write(indented_str(2, "if (id == R.id.action_wallet) {")) f.write(indented_str(3, "API.openWallet();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_wallet) {")) f.write(indented_str(3, "// API.openWallet();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["social_commerce"]["status"]: f.write(indented_str(2, "if (id == R.id.action_social_commerce) {")) f.write(indented_str(3, "API.openSocialCommerce();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_social_commerce) {")) f.write(indented_str(3, "// API.openSocialCommerce();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["news_update"]["status"]: f.write(indented_str(2, "if (id == R.id.action_news_update) {")) f.write(indented_str(3, "API.openNewsUpdate();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_news_update) {")) f.write(indented_str(3, "// API.openNewsUpdate();")) f.write(indented_str(3, "// return true;")) f.write(indented_str(2, "// }")) if features["contact_list"]["status"]: f.write(indented_str(2, "if (id == R.id.action_contact_list) {")) f.write(indented_str(3, "API.openConversation();")) f.write(indented_str(3, "return true;")) f.write(indented_str(2, "}")) else: f.write(indented_str(2, "// if (id == R.id.action_contact_list) {")) f.write(indented_str(3, "// API.openConversation();")) 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 "//GRID" in line and mode == "grid": f.write(indented_str(2, "API.setGeneralCallback(new GeneralCallback() {")) f.write(indented_str(3, "@Override")) f.write( indented_str(3, "public void onAddJavasript(WebView webView, WebSettings webSettings) {")) f.write(indented_str(4, "webSettings.setJavaScriptEnabled(true);")) f.write(indented_str(3, "}")) f.write(indented_str(0, "")) f.write(indented_str(3, "@Override")) f.write( indented_str(3, "public void onAddJavascriptGeneral(WebView webView, WebSettings webSettings) {")) f.write(indented_str(4, "webSettings.setJavaScriptEnabled(true);")) f.write(indented_str(3, "}")) f.write(indented_str(0, "")) f.write(indented_str(3, "@Override")) f.write( indented_str(3, "public void onAddJavascriptOpenLink(WebView webView, WebSettings webSettings) {")) f.write(indented_str(4, "webSettings.setJavaScriptEnabled(true);")) f.write(indented_str(3, "}")) f.write(indented_str(0, "")) f.write(indented_str(3, "@Override")) f.write( indented_str(3, "public void onAddJavascriptWebRTC(AppCompatActivity appCompatActivity, WebSettings webSettings) {")) f.write(indented_str(4, "")) f.write(indented_str(3, "}")) f.write(indented_str(2, "});")) f.write(indented_str(0, "")) f.write(indented_str(2, "ImageView imageViewSetting = findViewById(R.id.btn_setting);")) f.write(indented_str(2, "ImageView imageViewProfile = findViewById(R.id.btn_person);")) if features["cc"]["status"]: f.write(indented_str(2, "ImageView imageViewCC = findViewById(R.id.btn_cc);")) else: f.write(indented_str(2, "// ImageView imageViewCC = findViewById(R.id.btn_cc);")) if features["nc"]["status"]: f.write(indented_str(2, "ImageView imageViewNC = findViewById(R.id.btn_nc);")) else: f.write(indented_str(2, "// ImageView imageViewNC = findViewById(R.id.btn_nc);")) if features["im"]["status"]: f.write(indented_str(2, "ImageView imageViewChat = findViewById(R.id.btn_chat);")) else: f.write(indented_str(2, "// ImageView imageViewChat = findViewById(R.id.btn_chat);")) if features["ac"]["status"]: f.write(indented_str(2, "ImageView imageViewAudioCall = findViewById(R.id.btn_audio_call);")) else: f.write(indented_str(2, "// ImageView imageViewAudioCall = findViewById(R.id.btn_audio_call);")) if features["vc"]["status"]: f.write(indented_str(2, "ImageView imageViewVideoCall = findViewById(R.id.btn_video_call);")) else: f.write(indented_str(2, "// ImageView imageViewVideoCall = findViewById(R.id.btn_video_call);")) if features["call"]["status"]: f.write(indented_str(2, "ImageView imageViewCall = findViewById(R.id.btn_call);")) else: f.write(indented_str(2, "// ImageView imageViewCall = findViewById(R.id.btn_call);")) if features["ls"]["status"]: f.write(indented_str(2, "ImageView imageViewStream = findViewById(R.id.btn_stream);")) else: f.write(indented_str(2, "// ImageView imageViewStream = findViewById(R.id.btn_stream);")) if security["secure_folder"]: f.write(indented_str(2, "ImageView imageViewSF = findViewById(R.id.btn_sf);")) else: f.write(indented_str(2, "// ImageView imageViewSF = findViewById(R.id.btn_sf);")) if features["custom_url"]["status"]: f.write(indented_str(2, "ImageView imageViewCustomURL = findViewById(R.id.btn_custom_url);")) else: f.write(indented_str(2, "// ImageView imageViewCustomURL = findViewById(R.id.btn_custom_url);")) if features["xapps"]["status"]: f.write(indented_str(2, "ImageView imageViewExternalApps = findViewById(R.id.btn_xapps);")) else: f.write(indented_str(2, "// ImageView imageViewExternalApps = findViewById(R.id.btn_xapps);")) if features["conpost"]["status"]: f.write(indented_str(2, "ImageView imageViewContentPosting = findViewById(R.id.btn_contentpost);")) else: f.write(indented_str(2, "// ImageView imageViewContentPosting = findViewById(R.id.btn_contentpost);")) if features["ppob"]["status"]: f.write(indented_str(2, "ImageView imageViewPPOB = findViewById(R.id.btn_ppob);")) else: f.write(indented_str(2, "// ImageView imageViewPPOB = findViewById(R.id.btn_ppob);")) if features["wallet"]["status"]: f.write(indented_str(2, "ImageView imageViewWallet = findViewById(R.id.btn_wallet);")) else: f.write(indented_str(2, "// ImageView imageViewWallet = findViewById(R.id.btn_wallet);")) if features["social_commerce"]["status"]: f.write(indented_str(2, "ImageView imageViewSocialCommerce = findViewById(R.id.btn_social_commerce);")) else: f.write(indented_str(2, "// ImageView imageViewSocialCommerce = findViewById(R.id.btn_social_commerce);")) if features["news_update"]["status"]: f.write(indented_str(2, "ImageView imageViewNews = findViewById(R.id.btn_news);")) else: f.write(indented_str(2, "// ImageView imageViewNews = findViewById(R.id.btn_news);")) if features["contact_list"]["status"]: f.write(indented_str(2, "ImageView imageViewContactList = findViewById(R.id.btn_contact_list);")) else: f.write(indented_str(2, "// ImageView imageViewContactList = findViewById(R.id.btn_contact_list);")) f.write(indented_str(0, "")) f.write(indented_str(2, "imageViewSetting.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openSettings();")) f.write(indented_str(2, "});")) f.write(indented_str(2, "imageViewProfile.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openProfile();")) f.write(indented_str(2, "});")) if features["cc"]["status"]: f.write(indented_str(2, "imageViewCC.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openContactCenter();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewCC.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openContactCenter();")) f.write(indented_str(2, "// });")) if features["nc"]["status"]: f.write(indented_str(2, "imageViewNC.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openNotificationCenter();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewNC.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openNotificationCenter();")) f.write(indented_str(2, "// });")) if features["im"]["status"]: f.write(indented_str(2, "imageViewChat.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openChat();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewChat.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openChat();")) f.write(indented_str(2, "// });")) if features["ac"]["status"]: f.write(indented_str(2, "imageViewAudioCall.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openAudioCall();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewAudioCall.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openAudioCall();")) f.write(indented_str(2, "// });")) if features["vc"]["status"]: f.write(indented_str(2, "imageViewVideoCall.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openVideoCall();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewVideoCall.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openVideoCall();")) f.write(indented_str(2, "// });")) if features["call"]["status"]: f.write(indented_str(2, "imageViewCall.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openCall();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewCall.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openCall();")) f.write(indented_str(2, "// });")) if features["ls"]["status"]: f.write(indented_str(2, "imageViewStream.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openLiveStreaming();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewStream.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openLiveStreaming();")) f.write(indented_str(2, "// });")) if security["secure_folder"]: f.write(indented_str(2, "imageViewSF.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openSecureFolder();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewSF.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openSecureFolder();")) f.write(indented_str(2, "// });")) if features["custom_url"]["status"]: f.write(indented_str(2, "imageViewCustomURL.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openCustomURL();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewCustomURL.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openCustomURL();")) f.write(indented_str(2, "// });")) if features["xapps"]["status"]: f.write(indented_str(2, "imageViewExternalApps.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openExternalApps();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewExternalApps.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openExternalApps();")) f.write(indented_str(2, "// });")) if features["conpost"]["status"]: f.write(indented_str(2, "imageViewContentPosting.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openUserGeneratedContent();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewContentPosting.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openUserGeneratedContent();")) f.write(indented_str(2, "// });")) if features["ppob"]["status"]: f.write(indented_str(2, "imageViewPPOB.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openPPOB();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewPPOB.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openPPOB();")) f.write(indented_str(2, "// });")) if features["wallet"]["status"]: f.write(indented_str(2, "imageViewWallet.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openWallet();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewWallet.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openWallet();")) f.write(indented_str(2, "// });")) if features["social_commerce"]["status"]: f.write(indented_str(2, "imageViewSocialCommerce.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openSocialCommerce();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewSocialCommerce.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openSocialCommerce();")) f.write(indented_str(2, "// });")) if features["news_update"]["status"]: f.write(indented_str(2, "imageViewNews.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openNewsUpdate();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewNews.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openNewsUpdate();")) f.write(indented_str(2, "// });")) if features["contact_list"]["status"]: f.write(indented_str(2, "imageViewContactList.setOnClickListener(v -> {")) f.write(indented_str(3, "API.openConversation();")) f.write(indented_str(2, "});")) else: f.write(indented_str(2, "// imageViewContactList.setOnClickListener(v -> {")) f.write(indented_str(3, "// API.openConversation();")) f.write(indented_str(2, "// });")) elif "//BREAK" in line: if mode == "floating" or mode == "grid": f.write("}") break else: f.write(indented_str(0, "")) elif "//FLOATING" in line: if mode == "floating": write_floating_button(f, features, security) 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) f.write(replaced) elif "int nexilisButtonMode" in line: replaced = line if mode == "floating": replaced = replaced.replace("0", "1") f.write(replaced) elif "R.layout.activity_main" in line: replaced = line if mode == "grid": replaced = replaced.replace("activity_main", "activity_main_grid") 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["ac"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["vc"]["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 features["custom_url"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["xapps"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["conpost"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["ppob"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["wallet"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["social_commerce"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["news_update"]["status"]: f.write(indented_str(1, "')) n = n + 1 else: f.write(indented_str(1, "')) n = n + 1 if features["contact_list"]["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) l_features = [x for x in list(features.keys()) if features[x]["status"] and x != "smartbot" and x != "sms" and x != "email"] if security["secure_folder"]: l_features.append("secure_folder") n_features = len(l_features) + 2 row_count = -(n_features // -3) # ceiling div column_count = 3 with open(layout_grid_path, "r") as f: lines = f.readlines() with open(layout_grid_path, "w") as f: for line in lines: if "rowCount" in line: f.write(indented_str(1, f'android:rowCount="{row_count}"')) elif "columnCount" in line: f.write(indented_str(1,f'android:columnCount="{column_count}"')) elif "" in line: if mode != "grid": f.write(indented_str(1, "")) if mode == "grid" and "cc" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "nc" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "im" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "ac" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "vc" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "call" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "ls" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "secure_folder" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "custom_url" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "xapps" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "conpost" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "ppob" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "wallet" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "social_commerce" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "news_update" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) if mode == "grid" and "contact_list" in l_features: f.write(indented_str(1, "')) else: f.write(indented_str(1, "")) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) f.write(indented_str(2, '')) 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": write_floating_button(f, features, security) 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) f.write(replaced) elif "int nexilisButtonMode" in line: replaced = line 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": write_floating_button(f, features, security, 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) f.write(replaced) elif "int nexilisButtonMode" in line: replaced = line 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": write_floating_button(f, features, security) 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) f.write(replaced) elif "int nexilisButtonMode" in line: replaced = line 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 save_icons(app_id: str, platform: str, mode: str, path_dest: str, features: dict, security: dict): if platform == "android" and mode == "grid": drawable_path = os.path.join(path_dest, "app/src/main/res/drawable/") if features["im"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_chat.png")) if features["cc"]["icon"]: file = features["cc"]["icon"] file.save(os.path.join(drawable_path, "pb_button_cc.png")) if features["ac"]["icon"]: file = features["ac"]["icon"] file.save(os.path.join(drawable_path, "pb_button_audio_call.png")) if features["vc"]["icon"]: file = features["vc"]["icon"] file.save(os.path.join(drawable_path, "pb_button_video_call.png")) if features["call"]["icon"]: file = features["call"]["icon"] file.save(os.path.join(drawable_path, "pb_button_call.png")) if features["ls"]["icon"]: file = features["ls"]["icon"] file.save(os.path.join(drawable_path, "pb_button_stream.png")) if features["nc"]["icon"]: file = features["nc"]["icon"] file.save(os.path.join(drawable_path, "pb_button_notif_center.png")) if features["custom_url"]["icon"]: file = features["custom_url"]["icon"] file.save(os.path.join(drawable_path, "pb_button_custom_url.png")) if features["xapps"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_external_apps.png")) if features["conpost"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_user_content.png")) if features["ppob"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_ppob.png")) if features["wallet"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_wallet.png")) if features["social_commerce"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_social_commerce.png")) if features["news_update"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_news.png")) if features["contact_list"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_contact_list.png")) if features["secure_folder"]["icon"]: file = features["im"]["icon"] file.save(os.path.join(drawable_path, "pb_button_secure_folder.png")) pass 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"} def change_security_shield(app_id: str, account: str, path_dest: str): gradle_properties_path = os.path.join(path_dest, "gradle.properties") with open(gradle_properties_path, "r") as f: lines = f.readlines() with open(gradle_properties_path, "w") as f: for line in lines: if "**REPLACE*WITH*YOUR*APPLICATION*ID**" in line: f.write(indented_str(0, f'nexilis.appId="{app_id}"')) elif "**REPLACE*WITH*YOUR*NEXILIS*IO*ACCOUNT**" in line: f.write(indented_str(0, f'nexilis.account="{account}"')) elif "nexilis.appId=" in line: f.write(indented_str(0, f'nexilis.appId="{app_id}"')) elif "nexilis.account=" in line: f.write(indented_str(0, f'nexilis.account="{account}"')) else: f.write(line) @app.route('/', methods=["GET", "POST"]) def build_project(): vprint('==============================================================') if request.method == 'POST': platform = "android" mode = "burger" app_id = "" feature_dict = { "im": { "status": False, "icon": None }, "cc": { "status": False, "icon": None }, "ac": { "status": False, "icon": None }, "vc": { "status": False, "icon": None }, "call": { "status": False, "icon": None }, "ls": { "status": False, "icon": None }, "nc": { "status": False, "icon": None }, "sms": { "status": False, "icon": None }, "email": { "status": False, "icon": None }, "smartbot": { "status": False, "icon": None }, "settings": { "status": False, "icon": None }, "custom_url": { "status": False, "icon": None }, "xapps": { "status": False, "icon": None }, "conpost": { "status": False, "icon": None }, "ppob": { "status": False, "icon": None }, "wallet": { "status": False, "icon": None }, "social_commerce": { "status": False, "icon": None }, "news_update": { "status": False, "icon": None }, "contact_list": { "status": False, "icon": None }, "secure_folder": { "status": False, "icon": None }, "cc_chat": { "status": False, "icon": None }, "cc_voip": { "status": False, "icon": None }, "cc_vidcall": { "status": False, "icon": None }, "cc_smartbot": { "status": False, "icon": None }, "cc_email": { "status": False, "icon": None }, "cc_sms": { "status": False, "icon": None }, "cc_gsm": { "status": False, "icon": None }, "cc_whatsapp": { "status": False, "icon": None } } 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["vc"]["status"] = request.form["feature_vc"] == "1" if "feature_ac" in request.form: feature_dict["ac"]["status"] = request.form["feature_ac"] == "1" if "feature_ls" in request.form: feature_dict["ls"]["status"] = request.form["feature_ls"] == "1" if "feature_avc" in request.form: feature_dict["call"]["status"] = request.form["feature_avc"] == "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 "feature_curl" in request.form: feature_dict["custom_url"]["status"] = request.form["feature_curl"] == "1" if "feature_xapps" in request.form: feature_dict["xapps"]["status"] = request.form["feature_xapps"] == "1" if "feature_conpost" in request.form: feature_dict["conpost"]["status"] = request.form["feature_conpost"] == "1" if "feature_ppob" in request.form: feature_dict["ppob"]["status"] = request.form["check_ppob"] == "1" if "feature_wallet" in request.form: feature_dict["wallet"]["status"] = request.form["check_wallet"] == "1" if "feature_social_commerce" in request.form: feature_dict["social_commerce"]["status"] = request.form["social_commerce"] == "1" if "feature_news_update" in request.form: feature_dict["news_update"]["status"] = request.form["news_update"] == "1" if "feature_contact_list" in request.form: feature_dict["contact_list"]["status"] = request.form["contact_list"] == "1" if "feature_cc_chat" in request.form: feature_dict["cc_chat"]["status"] = request.form["feature_cc_chat"] == "1" if "feature_cc_voip" in request.form: feature_dict["cc_voip"]["status"] = request.form["feature_cc_voip"] == "1" if "feature_cc_vidcall" in request.form: feature_dict["cc_vidcall"]["status"] = request.form["feature_cc_vidcall"] == "1" if "feature_cc_smartbot" in request.form: feature_dict["cc_smartbot"]["status"] = request.form["feature_cc_smartbot"] == "1" if "feature_cc_email" in request.form: feature_dict["cc_email"]["status"] = request.form["feature_cc_email"] == "1" if "feature_cc_sms" in request.form: feature_dict["cc_sms"]["status"] = request.form["feature_cc_sms"] == "1" if "feature_cc_gsm" in request.form: feature_dict["cc_gsm"]["status"] = request.form["feature_cc_gsm"] == "1" if "feature_cc_whatsapp" in request.form: feature_dict["cc_whatsapp"]["status"] = request.form["feature_cc_whatsapp"] == "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 "secure_folder" in request.form and not security_dict["secure_folder"]: security_dict["secure_folder"] = request.form["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 "gridicon_im" in request.files: file = request.files['gridicon_im'] if file and file.filename and allowed_file(file.filename): feature_dict["im"]["icon"] = file if "gridicon_cc" in request.files: file = request.files['gridicon_cc'] if file and file.filename and allowed_file(file.filename): feature_dict["cc"]["icon"] = file if "gridicon_ac" in request.files: file = request.files['gridicon_ac'] if file and file.filename and allowed_file(file.filename): feature_dict["ac"]["icon"] = file if "gridicon_vc" in request.files: file = request.files['gridicon_vc'] if file and file.filename and allowed_file(file.filename): feature_dict["vc"]["icon"] = file if "gridicon_avc" in request.files: file = request.files['gridicon_avc'] if file and file.filename and allowed_file(file.filename): feature_dict["call"]["icon"] = file if "gridicon_ls" in request.files: file = request.files['gridicon_ls'] if file and file.filename and allowed_file(file.filename): feature_dict["ls"]["icon"] = file if "gridicon_nc" in request.files: file = request.files['gridicon_nc'] if file and file.filename and allowed_file(file.filename): feature_dict["nc"]["icon"] = file if "gridicon_curl" in request.files: file = request.files['gridicon_curl'] if file and file.filename and allowed_file(file.filename): feature_dict["custom_url"]["icon"] = file if "gridicon_xapps" in request.files: file = request.files['gridicon_xapps'] if file and file.filename and allowed_file(file.filename): feature_dict["xapps"]["icon"] = file if "gridicon_conpost" in request.files: file = request.files['gridicon_conpost'] if file and file.filename and allowed_file(file.filename): feature_dict["conpost"]["icon"] = file if "gridicon_ppob" in request.files: file = request.files['gridicon_ppob'] if file and file.filename and allowed_file(file.filename): feature_dict["ppob"]["icon"] = file if "gridicon_wallet" in request.files: file = request.files['gridicon_wallet'] if file and file.filename and allowed_file(file.filename): feature_dict["wallet"]["icon"] = file if "gridicon_social_commerce" in request.files: file = request.files['gridicon_social_commerce'] if file and file.filename and allowed_file(file.filename): feature_dict["social_commerce"]["icon"] = file if "gridicon_news_update" in request.files: file = request.files['gridicon_news_update'] if file and file.filename and allowed_file(file.filename): feature_dict["news_update"]["icon"] = file if "gridicon_contact_list" in request.files: file = request.files['gridicon_contact_list'] if file and file.filename and allowed_file(file.filename): feature_dict["contact_list"]["icon"] = file if "gridicon_secure_folder" in request.files: file = request.files['gridicon_secure_folder'] if file and file.filename and allowed_file(file.filename): feature_dict["secure_folder"]["icon"] = file 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) save_icons(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!" @app.route("/security_shield", methods=["GET", "POST"]) def build_shield(): vprint('==============================================================') if request.method == 'POST': app_id = "" account = "" try: if "app_id" in request.form: app_id = request.form["app_id"] if "account" in request.form: account = request.form["account"] 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("security_shield", uu_id) change_security_shield(app_id, account, path_dest) 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 "Security Shield 222" if __name__ == '__main__': app.run(host='0.0.0.0', port=8056, debug=app.verbose, ssl_context=app.ssl)