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)
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)
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, "