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_android_menu_item(f, menu_id: str, n: int, label:str, is_active:bool):
f.write(indented_str(1, "%s %s' % ("" if is_active else " -->")))
def write_android_menu(xml_menu_path: str, features: dict, security: dict):
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
write_android_menu_item(f, "action_nc", n, "Notification Center", features["nc"]["status"])
n = n + 1
write_android_menu_item(f, "action_cc", n, "Contact Center", features["cc"]["status"])
n = n + 1
write_android_menu_item(f, "action_ls", n, "Live Streaming", features["ls"]["status"])
n = n + 1
write_android_menu_item(f, "action_chats", n, "Unified Messaging", features["im"]["status"])
n = n + 1
write_android_menu_item(f, "action_audio_call", n, "VoIP Call", features["ac"]["status"])
n = n + 1
write_android_menu_item(f, "action_video_call", n, "Video Call", features["vc"]["status"])
n = n + 1
write_android_menu_item(f, "action_call", n, "Call", features["call"]["status"])
n = n + 1
write_android_menu_item(f, "action_sf", n, "Secure Folder", features["secure_folder"]["status"])
n = n + 1
write_android_menu_item(f, "action_conpost", n, "Social Hub", features["conpost"]["status"])
n = n + 1
write_android_menu_item(f, "action_news_update", n, "News and Update", features["news_update"]["status"])
n = n + 1
write_android_menu_item(f, "action_custom_url", n, "Custom URL", features["custom_url"]["status"])
n = n + 1
write_android_menu_item(f, "action_xapps", n, "External Apps", features["xapps"]["status"])
n = n + 1
write_android_menu_item(f, "action_conference_room", n, "Conference Room", features["conference_room"]["status"])
n = n + 1
write_android_menu_item(f, "action_community", n, "Community", features["community"]["status"])
n = n + 1
write_android_menu_item(f, "action_status_update", n, "Status Updates", features["status_update"]["status"])
n = n + 1
write_android_menu_item(f, "action_call_log", n, "Call Log", features["call_log"]["status"])
n = n + 1
write_android_menu_item(f, "action_create_channel", n, "Create Channel", features["create_channel"]["status"])
n = n + 1
write_android_menu_item(f, "action_ppob", n, "PPOB Agent", features["ppob"]["status"])
n = n + 1
write_android_menu_item(f, "action_wallet", n, "Wallet", features["wallet"]["status"])
n = n + 1
write_android_menu_item(f, "action_social_commerce", n, "Social Commerce", features["social_commerce"]["status"])
n = n + 1
write_android_menu_item(f, "action_contact_list", n, "Contact List", features["contact_list"]["status"])
n = n + 1
write_android_menu_item(f, "action_settings", n, "Settings", True)
n = n + 1
write_android_menu_item(f, "action_profile", n, "Profile", True)
n = n + 1
else:
f.write(line)
def write_android_menu_item_onselect(f, menu_id: str, function_call: str, is_active: bool):
f.write(indented_str(2, "%sif (id == R.id.%s) {" % ("" if is_active else "// ", menu_id)))
f.write(indented_str(3, "%s%s;" % ("" if is_active else "// ", function_call)))
f.write(indented_str(3, "%sreturn true;" % ("" if is_active else "// ")))
f.write(indented_str(2, "%s}" % ("" if is_active else "// ")))
def write_android_grid_item_onclick(f, var_name: str, button_id: str, function_call: str, is_active: bool):
f.write(indented_str(2, "%sImageView %s = findViewById(R.id.%s);" % ("" if is_active else "// ", var_name, button_id)))
f.write(indented_str(2, "%s%s.setOnClickListener(v -> {" % ("" if is_active else "// ", var_name)))
f.write(indented_str(3, "%s%s;" % ("" if is_active else "// ", function_call)))
f.write(indented_str(2, "%s});" % ("" if is_active else "// ")))
f.write(indented_str(0, ""))
def write_android_grid_item_layout(f, item_id: str, src_id:str, is_active: bool):
line_start = "" if is_active else ""
f.write(indented_str(1, f'{line_start}{line_end}'))
def write_floating_button(f, features: dict, security: dict, spaces=4):
f.write(indented_str(6, ""))
def write_flutter_menu_item_invoke(f, label: str, function_call: str, is_active: bool):
line_start = "" if is_active else "// "
f.write(indented_str(3, f'{line_start}case "{label}":', spaces=2))
f.write(indented_str(4, f'{line_start}nativeChannel.invokeMethod("{function_call}");', spaces=2))
f.write(indented_str(4, f'{line_start}break;', spaces=2))
def write_flutter_main(main_act_path, features: dict, security: dict):
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("%s'Notification Center'" % ("" if features["nc"]["status"] else "// "))
features_str.append("%s'Contact Center'" % ("" if features["cc"]["status"] else "// "))
features_str.append("%s'Live Streaming'" % ("" if features["ls"]["status"] else "// "))
features_str.append("%s'Unified Messaging'" % ("" if features["im"]["status"] else "// "))
features_str.append("%s'VoIP Call'" % ("" if features["ac"]["status"] else "// "))
features_str.append("%s'Video Call'" % ("" if features["vc"]["status"] else "// "))
features_str.append("%s'Call'" % ("" if features["call"]["status"] else "// "))
features_str.append("%s'Secure Folder'" % ("" if features["secure_folder"]["status"] else "// "))
features_str.append("%s'Social Hub'" % ("" if features["conpost"]["status"] else "// "))
features_str.append("%s'News and Update'" % ("" if features["news_update"]["status"] else "// "))
features_str.append("%s'Custom URL'" % ("" if features["custom_url"]["status"] else "// "))
features_str.append("%s'External Apps'" % ("" if features["xapps"]["status"] else "// "))
features_str.append("%s'Conference Room'" % ("" if features["conference_room"]["status"] else "// "))
features_str.append("%s'Community'" % ("" if features["community"]["status"] else "// "))
features_str.append("%s'Status Updates'" % ("" if features["status_update"]["status"] else "// "))
features_str.append("%s'Call Log'" % ("" if features["call_log"]["status"] else "// "))
features_str.append("%s'Create Channel'" % ("" if features["create_channel"]["status"] else "// "))
features_str.append("%s'PPOB Agent'" % ("" if features["ppob"]["status"] else "// "))
features_str.append("%s'Wallet'" % ("" if features["wallet"]["status"] else "// "))
features_str.append("%s'Social Commerce'" % ("" if features["social_commerce"]["status"] else "// "))
features_str.append("%s'Contact List'" % ("" if features["contact_list"]["status"] else "// "))
features_str.append("'Settings'")
features_str.append("'Profile'")
for feature_str in features_str:
f.write(indented_str(8, f"{feature_str},", spaces=2))
elif "//FEATURES" in line:
write_flutter_menu_item_invoke(f, "Settings", "openSettings", True)
write_flutter_menu_item_invoke(f, "Profile", "openProfile", True)
write_flutter_menu_item_invoke(f, "Contact Center", "openContactCenter", features["cc"]["status"])
write_flutter_menu_item_invoke(f, "Notification Center", "openNotificationCenter", features["nc"]["status"])
write_flutter_menu_item_invoke(f, "Unified Messaging", "openInstantMessaging", features["im"]["status"])
write_flutter_menu_item_invoke(f, "VoIP Call", "openAudioCall", features["ac"]["status"])
write_flutter_menu_item_invoke(f, "Video Call", "openVideoCall", features["vc"]["status"])
write_flutter_menu_item_invoke(f, "Call", "openCall", features["call"]["status"])
write_flutter_menu_item_invoke(f, "Live Streaming", "openStreaming", features["ls"]["status"])
write_flutter_menu_item_invoke(f, "Secure Folder", "openSecureFolder", features["secure_folder"]["status"])
write_flutter_menu_item_invoke(f, "Custom URL", "openCustomURL", features["custom_url"]["status"])
write_flutter_menu_item_invoke(f, "External Apps", "openExternalApps", features["xapps"]["status"])
write_flutter_menu_item_invoke(f, "Social Hub", "openUserGeneratedContent", features["conpost"]["status"])
write_flutter_menu_item_invoke(f, "PPOB Agent", "openPPOB", features["ppob"]["status"])
write_flutter_menu_item_invoke(f, "Wallet", "openWallet", features["wallet"]["status"])
write_flutter_menu_item_invoke(f, "Social Commerce", "openSocialCommerce", features["social_commerce"]["status"])
write_flutter_menu_item_invoke(f, "News and Update", "openNewsUpdate", features["news_update"]["status"])
write_flutter_menu_item_invoke(f, "Contact List", "openConversation", features["contact_list"]["status"])
write_flutter_menu_item_invoke(f, "Community", "openCommunity", features["community"]["status"])
write_flutter_menu_item_invoke(f, "Conference Room", "openConferenceRoom", features["conference_room"]["status"])
write_flutter_menu_item_invoke(f, "Status Updates", "openStatusUpdates", features["status_update"]["status"])
write_flutter_menu_item_invoke(f, "Call Log", "openCallLog", features["call_log"]["status"])
write_flutter_menu_item_invoke(f, "Create Channel", "createChannel", features["create_channel"]["status"])
else:
f.write(line)
def change(app_id: str, platform: str, mode: str, path_dest: str, features: dict, security: dict):
if platform == "android":
main_act_path = os.path.join(path_dest,
"app/src/main/java/com/example/nexilissamplecodeburger/MainActivity.java")
xml_menu_path = os.path.join(path_dest, "app/src/main/res/menu/menu_main.xml")
manifest_path = os.path.join(path_dest, "app/src/main/AndroidManifest.xml")
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:
write_android_menu_item_onselect(f, "action_settings", "API.openSettings()", True)
write_android_menu_item_onselect(f, "action_profile", "API.openProfile()", True)
write_android_menu_item_onselect(f, "action_nc", "API.openNotificationCenter()", features["nc"]["status"])
write_android_menu_item_onselect(f, "action_cc", "API.openContactCenter()", features["cc"]["status"])
write_android_menu_item_onselect(f, "action_ls", "API.openOptionsStreaming()", features["ls"]["status"])
write_android_menu_item_onselect(f, "action_chats", "API.openChat()", features["im"]["status"])
write_android_menu_item_onselect(f, "action_audio_call", "API.openAudioCall()", features["ac"]["status"])
write_android_menu_item_onselect(f, "action_video_call", "API.openVideoCall()", features["vc"]["status"])
write_android_menu_item_onselect(f, "action_call", "API.openCall()", features["call"]["status"])
write_android_menu_item_onselect(f, "action_sf", "API.openSecureFolder()", features["secure_folder"]["status"])
write_android_menu_item_onselect(f, "action_conpost", "API.openUserGeneratedContent()", features["conpost"]["status"])
write_android_menu_item_onselect(f, "action_news_update", "API.openNewsUpdate()", features["news_update"]["status"])
write_android_menu_item_onselect(f, "action_custom_url", "API.openCustomURL()", features["custom_url"]["status"])
write_android_menu_item_onselect(f, "action_xapps", "API.openExternalApps()", features["xapps"]["status"])
write_android_menu_item_onselect(f, "action_conference_room", "API.openConferenceRoom()", features["conference_room"]["status"])
write_android_menu_item_onselect(f, "action_community", "API.openCommunity()", features["community"]["status"])
write_android_menu_item_onselect(f, "action_status_update", "Toast.makeText(getBaseContext(), \"Coming Soon\", Toast.LENGTH_LONG).show()", features["status_update"]["status"])
write_android_menu_item_onselect(f, "action_call_log", "API.openCallLog()", features["call_log"]["status"])
write_android_menu_item_onselect(f, "action_create_channel", "API.createChannel()", features["create_channel"]["status"])
write_android_menu_item_onselect(f, "action_ppob", "API.openPPOB()", features["ppob"]["status"])
write_android_menu_item_onselect(f, "action_wallet", "API.openWallet()", features["wallet"]["status"])
write_android_menu_item_onselect(f, "action_social_commerce", "API.openSocialCommerce()", features["social_commerce"]["status"])
write_android_menu_item_onselect(f, "action_contact_list", "API.openConversation()", features["contact_list"]["status"])
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, ""))
write_android_grid_item_onclick(f, "imageViewSetting", "btn_setting", "API.openSettings()", True)
write_android_grid_item_onclick(f, "imageViewProfile", "btn_profile", "API.openProfile()", True)
write_android_grid_item_onclick(f, "imageViewNC", "btn_nc", "API.openNotificationCenter()", features["nc"]["status"])
write_android_grid_item_onclick(f, "imageViewCC", "btn_cc", "API.openContactCenter()", features["cc"]["status"])
write_android_grid_item_onclick(f, "imageViewStream", "btn_stream", "API.openLiveStreaming()", features["ls"]["status"])
write_android_grid_item_onclick(f, "imageViewChat", "btn_chat", "API.openChat()", features["im"]["status"])
write_android_grid_item_onclick(f, "imageViewAudioCall", "btn_audio_call", "API.openAudioCall()", features["ac"]["status"])
write_android_grid_item_onclick(f, "imageViewVideoCall", "btn_video_call", "API.openVideoCall()", features["vc"]["status"])
write_android_grid_item_onclick(f, "imageViewCall", "btn_call", "API.openCall()", features["call"]["status"])
write_android_grid_item_onclick(f, "imageViewSF", "btn_sf", "API.openSecureFolder()", features["secure_folder"]["status"])
write_android_grid_item_onclick(f, "imageViewContentPosting", "btn_contentpost", "API.openUserGeneratedContent()", features["conpost"]["status"])
write_android_grid_item_onclick(f, "imageViewNews", "btn_news", "API.openNewsUpdate()", features["news_update"]["status"])
write_android_grid_item_onclick(f, "imageViewCustomURL", "btn_custom_url", "API.openCustomURL()", features["custom_url"]["status"])
write_android_grid_item_onclick(f, "imageViewExternalApps", "btn_xapps", "API.openExternalApps()", features["xapps"]["status"])
write_android_grid_item_onclick(f, "imageViewConferenceRoom", "btn_conference_room", "API.openConferenceRoom()", features["conference_room"]["status"])
write_android_grid_item_onclick(f, "imageViewCommunity", "btn_community", "API.openCommunity()", features["community"]["status"])
write_android_grid_item_onclick(f, "imageViewStatusUpdates", "btn_status_updates", "Toast.makeText(getBaseContext(), \"Coming Soon\", Toast.LENGTH_LONG).show()", features["status_update"]["status"])
write_android_grid_item_onclick(f, "imageViewCallLog", "btn_call_log", "API.openCallLog()", features["call_log"]["status"])
write_android_grid_item_onclick(f, "imageViewCreateChannel", "btn_create_channel", "API.createChannel()", features["create_channel"]["status"])
write_android_grid_item_onclick(f, "imageViewPPOB", "btn_ppob", "API.openPPOB()", features["ppob"]["status"])
write_android_grid_item_onclick(f, "imageViewWallet", "btn_wallet", "API.openWallet()", features["wallet"]["status"])
write_android_grid_item_onclick(f, "imageViewSocialCommerce", "btn_social_commerce", "API.openSocialCommerce()", features["social_commerce"]["status"])
write_android_grid_item_onclick(f, "imageViewContactList", "btn_contact_list", "API.openConversation()", features["contact_list"]["status"])
f.write(indented_str(0, ""))
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)
write_android_menu(xml_menu_path,features,security)
l_features = [x for x in list(features.keys()) if features[x]["status"] and x != "smartbot" and x != "sms" and x != "email"]
# if features["secure_folder"]["status"]:
# 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:
write_android_grid_item_layout(f, "btn_nc", "pb_button_notif_center", (mode == "grid" and "nc" in l_features))
write_android_grid_item_layout(f, "btn_cc", "pb_button_cc", (mode == "grid" and "cc" in l_features))
write_android_grid_item_layout(f, "btn_stream", "pb_button_stream", (mode == "grid" and "ls" in l_features))
write_android_grid_item_layout(f, "btn_chat", "pb_button_chat", (mode == "grid" and "im" in l_features))
write_android_grid_item_layout(f, "btn_audio_call", "pb_button_audio_call", (mode == "grid" and "ac" in l_features))
write_android_grid_item_layout(f, "btn_video_call", "pb_button_video_call", (mode == "grid" and "vc" in l_features))
write_android_grid_item_layout(f, "btn_call", "pb_button_call", (mode == "grid" and "call" in l_features))
write_android_grid_item_layout(f, "btn_sf", "pb_button_secure_folder", (mode == "grid" and "secure_folder" in l_features))
write_android_grid_item_layout(f, "btn_contentpost", "pb_button_user_content", (mode == "grid" and "conpost" in l_features))
write_android_grid_item_layout(f, "btn_news", "pb_button_news", (mode == "grid" and "news_update" in l_features))
write_android_grid_item_layout(f, "btn_custom_url", "pb_button_custom_url", (mode == "grid" and "custom_url" in l_features))
write_android_grid_item_layout(f, "btn_xapps", "pb_button_external_apps", (mode == "grid" and "xapps" in l_features))
write_android_grid_item_layout(f, "btn_conference_room", "pb_button_conference_room", (mode == "grid" and "conference_room" in l_features))
write_android_grid_item_layout(f, "btn_community", "pb_button_community", (mode == "grid" and "community" in l_features))
write_android_grid_item_layout(f, "btn_status_update", "pb_button_status_update", (mode == "grid" and "status_update" in l_features))
write_android_grid_item_layout(f, "btn_call_log", "pb_button_call_log", (mode == "grid" and "call_log" in l_features))
write_android_grid_item_layout(f, "btn_create_channel", "pb_button_create_channel", (mode == "grid" and "create_channel" in l_features))
write_android_grid_item_layout(f, "btn_ppob", "pb_button_ppob", (mode == "grid" and "ppob" in l_features))
write_android_grid_item_layout(f, "btn_wallet", "pb_button_wallet", (mode == "grid" and "wallet" in l_features))
write_android_grid_item_layout(f, "btn_social_commerce", "btn_social_commerce", (mode == "grid" and "social_commerce" in l_features))
write_android_grid_item_layout(f, "btn_contact_list", "pb_button_contact_list", (mode == "grid" and "contact_list" in l_features))
write_android_grid_item_layout(f, "btn_setting", "pb_cuc_menu_item_setting", mode == "grid")
write_android_grid_item_layout(f, "btn_profile", "pb_ic_person_boy", mode == "grid")
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")
write_flutter_main(main_act_path, features, security)
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:
f.write(indented_str(2, "%sAPI.setShowSecurityShieldDialog(true);" % ("" if security["show_security"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckEmulator(true);" % ("" if security["emulator"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckAdb(true);" % ("" if security["debug"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckSimSwap(true);" % ("" if security["sim_swap"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckMalware(true);" % ("" if security["malware"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setPreventScreenCapture(true);" % ("" if security["capture"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckCallForwarding(true);" % ("" if security["call_forwarding"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckScreenCasting(true);" % ("" if security["screen_share"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setCheckSideLoadedApp(true);" % ("" if security["side_load"] else "// ")))
f.write(os.linesep)
f.write(indented_str(2, "%sAPI.setPreventKeylogger(true);" % ("" if security["key_logger"] else "// ")))
f.write(os.linesep)
elif "//SMS" in line:
f.write(indented_str(2, "%sAPI.setEnabledSMS(true);" % ("" if features["sms"]["status"] else "// ")))
elif "//EMAIL" in line:
f.write(indented_str(2, "%sAPI.setEnabledEmail(true);" % ("" if features["email"]["status"] else "// ")))
elif "//SMARTBOT" in line:
f.write(indented_str(2, "%sAPI.setEnabledSmartBot(true);" % ("" if features["smartbot"]["status"] else "// ")))
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: 'Unified 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: 'Unified 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["ac"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'VoIP Call',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openAudioCall();", 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: 'VoIP Call',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openAudioCall();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["vc"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Video Call',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openVideoCall();", 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: 'Video Call',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openVideoCall();", 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 features["secure_folder"]["status"]:
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))
if features["custom_url"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Custom URL',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openCustomURL();", 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: 'Custom URL',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openCustomURL();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["xapps"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'External Apps',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openExternalApps();", 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: 'External Apps',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openExternalApps();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["conpost"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Social Hub',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openUserGeneratedContent();", 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: 'Social Hub',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openUserGeneratedContent();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["ppob"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'PPOB Agent',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openPPOB();", 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: 'PPOB Agent',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openPPOB();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["wallet"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Wallet',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openWallet();", 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: 'Wallet',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openWallet();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["social_commerce"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Social Commerce',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openSocialCommerce();", 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: 'Social Commerce',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openSocialCommerce();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["news_update"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'News and Update',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openNewsUpdate();", 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: 'News and Update',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openNewsUpdate();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["contact_list"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Contact List',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openConversation();", 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 List',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openConversation();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["community"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Community',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openCommunity();", 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: 'Community',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openCommunity();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["conference_room"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Conference Room',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openConferenceRoom();", 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: 'Conference Room',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openConferenceRoom();", spaces=2))
f.write(indented_str(5, "// },", spaces=2))
f.write(indented_str(4, "// },", spaces=2))
if features["call_log"]["status"]:
f.write(indented_str(4, '{', spaces=2))
f.write(indented_str(5, "text: 'Call Log',", spaces=2))
f.write(indented_str(5, "handler: () => {", spaces=2))
f.write(indented_str(6, "this.openCallLog();", 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 Log',", spaces=2))
f.write(indented_str(5, "// handler: () => {", spaces=2))
f.write(indented_str(6, "// this.openCallLog();", 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/nxsample/MainActivity.kt")
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["ac"]["status"]:
f.write(indented_str(4, "'VoIP Call',", spaces=2))
else:
f.write(indented_str(4, "// 'VoIP Call',", spaces=2))
if features["vc"]["status"]:
f.write(indented_str(4, "'Video Call',", spaces=2))
else:
f.write(indented_str(4, "// 'Video Call',", 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 features["secure_folder"]["status"]:
f.write(indented_str(4, "'Secure Folder',", spaces=2))
else:
f.write(indented_str(4, "// 'Secure Folder',", spaces=2))
if features["custom_url"]["status"]:
f.write(indented_str(4, "'Custom URL',", spaces=2))
else:
f.write(indented_str(4, "// 'Custom URL',", spaces=2))
if features["xapps"]["status"]:
f.write(indented_str(4, "'External Apps',", spaces=2))
else:
f.write(indented_str(4, "// 'External Apps',", spaces=2))
if features["conpost"]["status"]:
f.write(indented_str(4, "'Social Hub',", spaces=2))
else:
f.write(indented_str(4, "// 'Social Hub',", spaces=2))
if features["ppob"]["status"]:
f.write(indented_str(4, "'PPOB Agent',", spaces=2))
else:
f.write(indented_str(4, "// 'PPOB Agent',", spaces=2))
if features["wallet"]["status"]:
f.write(indented_str(4, "'Wallet',", spaces=2))
else:
f.write(indented_str(4, "// 'Wallet',", spaces=2))
if features["social_commerce"]["status"]:
f.write(indented_str(4, "'Social Commerce',", spaces=2))
else:
f.write(indented_str(4, "// 'Social Commerce',", spaces=2))
if features["news_update"]["status"]:
f.write(indented_str(4, "'News and Update',", spaces=2))
else:
f.write(indented_str(4, "// 'News and Update',", spaces=2))
if features["contact_list"]["status"]:
f.write(indented_str(4, "'Contact List',", spaces=2))
else:
f.write(indented_str(4, "// 'Contact List',", spaces=2))
if features["community"]["status"]:
f.write(indented_str(4, "'Community',", spaces=2))
else:
f.write(indented_str(4, "// 'Community',", spaces=2))
if features["conference_room"]["status"]:
f.write(indented_str(4, "'Conference Room',", spaces=2))
else:
f.write(indented_str(4, "// 'Conference Room',", spaces=2))
if features["call_log"]["status"]:
f.write(indented_str(4, "'Call Log',", spaces=2))
else:
f.write(indented_str(4, "// 'Call Log',", 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["ac"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openAudioCall();", 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.openAudioCall();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["vc"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openVideoCall();", 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.openVideoCall();", 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 === 7) {", 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 === 8) {", spaces=2))
f.write(indented_str(6, "// CallNative.openStreaming();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["secure_folder"]["status"]:
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 === 9) {", spaces=2))
f.write(indented_str(6, "// CallNative.openSecureFolder();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["custom_url"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openCustomURL();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 10) {", spaces=2))
f.write(indented_str(6, "// CallNative.openCustomURL();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["xapps"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openExternalApps();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 11) {", spaces=2))
f.write(indented_str(6, "// CallNative.openExternalApps();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["conpost"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openUserGeneratedContent();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 12) {", spaces=2))
f.write(indented_str(6, "// CallNative.openUserGeneratedContent();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["ppob"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openPPOB();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 13) {", spaces=2))
f.write(indented_str(6, "// CallNative.openPPOB();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["wallet"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openWallet();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 14) {", spaces=2))
f.write(indented_str(6, "// CallNative.openWallet();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["social_commerce"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openSocialCommerce();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 15) {", spaces=2))
f.write(indented_str(6, "// CallNative.openSocialCommerce();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["news_update"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openNewsUpdate();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 16) {", spaces=2))
f.write(indented_str(6, "// CallNative.openNewsUpdate();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["contact_list"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openConversation();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 17) {", spaces=2))
f.write(indented_str(6, "// CallNative.openConversation();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["community"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openCommunity();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 18) {", spaces=2))
f.write(indented_str(6, "// CallNative.openCommunity();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["conference_room"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openConferenceRoom();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 19) {", spaces=2))
f.write(indented_str(6, "// CallNative.openConferenceRoom();", spaces=2))
f.write(indented_str(5, "// }", spaces=2))
if features["call_log"]["status"]:
f.write(indented_str(5, f"if (buttonIndex === {n}) {{", spaces=2))
f.write(indented_str(6, "CallNative.openCallLog();", spaces=2))
f.write(indented_str(5, "}", spaces=2))
n = n + 1
else:
f.write(indented_str(5, "// if (buttonIndex === 20) {", spaces=2))
f.write(indented_str(6, "// CallNative.openCallLog();", 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["ac"]["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.openAudioCall();", 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.openAudioCall();", 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["vc"]["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.openVideoCall();", 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.openVideoCall();", 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 === 7) {", 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 === 8) {", 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 features["secure_folder"]["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.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 === 9) {", 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))
if features["custom_url"]["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.openCustomURL();", 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 === 10) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openCustomURL();", 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["xapps"]["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.openExternalApps();", 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 === 11) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openExternalApps();", 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["conpost"]["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.openUserGeneratedContent();", 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 === 12) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openUserGeneratedContent();", 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["ppob"]["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.openPPOB();", 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 === 13) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openPPOB();", 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["wallet"]["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.openWallet();", 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 === 14) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openWallet();", 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["social_commerce"]["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.openSocialCommerce();", 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 === 15) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openSocialCommerce();", 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["news_update"]["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.openNewsUpdate();", 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 === 16) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openNewsUpdate();", 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["contact_list"]["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.openConversation();", 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 === 17) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openConversation();", 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["community"]["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.openCommunity();", 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 === 18) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openCommunity();", 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["conference_room"]["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.openConferenceRoom();", 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 === 19) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openConferenceRoom();", 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_log"]["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.openCallLog();", 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 === 20) {", spaces=2))
f.write(indented_str(3, "// try {", spaces=2))
f.write(indented_str(4, "// CallNative.openCallLog();", 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, "