import os
import random
import string
import traceback
import shutil
import uuid
from flask import Flask, request
app = Flask(__name__)
app.base_project = {
"android": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCode",
"android_flutter": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCodeFlutter-Android",
"android_ionic": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCodeIonic-Android",
"android_react": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCodeReact-Android",
"ios": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCode-iOS",
"ios_flutter": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCodeFlutter-iOS",
"ios_ionic": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCodeIonic-iOS",
"ios_react": "/Users/maronakins/Documents/EmbedFeatures/NexilisSampleCodeReact-iOS"
}
app.temp_folder = "/Users/maronakins/Documents/EmbedFeatures/BuildExample"
app.zip_folder = "/Users/maronakins/Documents/EmbedFeatures/uploads"
# app.ssl = ('/usr/src/app/ssl/STAR_newuniverse_io.crt', '/usr/src/app/ssl/STAR_newuniverse.io.key')
app.ssl = None
app.verbose = True
def vprint(*data):
if app.verbose:
print(*data)
def indented_str(n, s, line=True, spaces=4) -> str:
return " " * n * spaces + s + os.linesep if line else ""
def create_folder(platform, uid):
path = os.path.join(app.temp_folder, uid)
if not os.path.exists(path):
os.mkdir(path)
else:
shutil.rmtree(path)
os.mkdir(path)
vprint(path)
base_project = app.base_project[platform]
base_project_name = os.path.basename(base_project)
path_dest = os.path.join(path, base_project_name)
if not os.path.exists(path_dest):
shutil.copytree(base_project, path_dest)
return path_dest
def change(platform: 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")
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, "}"))
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, "}"))
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, "}"))
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, "}"))
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, "}"))
elif "//SECURITY" in line:
if security["show_security"]:
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)
if security["debug"]:
f.write(indented_str(2, "API.setCheckAdb(true);"))
f.write(os.linesep)
if security["sim_swap"]:
f.write(indented_str(2,
"API.setCheckSimCardSwapListener(MainActivity.this, new SimCardDetectionCallback() {"))
f.write(os.linesep)
f.write(indented_str(3, "@Override"))
f.write(indented_str(3, "public boolean onSimCardChange() {"))
f.write(indented_str(4, "return false;"))
f.write(indented_str(3, "}"))
f.write(os.linesep)
f.write(indented_str(3, "@Override"))
f.write(indented_str(3, "public boolean onError(String s) {"))
f.write(os.linesep)
f.write(indented_str(3, "}"))
f.write(indented_str(2, "});"))
f.write(os.linesep)
if security["malware"]:
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)
if security["call_forwarding"]:
f.write(indented_str(2, "API.setCheckCallForwarding(true);"))
f.write(os.linesep)
if security["secure_folder"]:
f.write(indented_str(2, "API.openSecureFolder();"))
f.write(os.linesep)
elif "//SMS" in line and features["sms"]["status"]:
f.write(indented_str(2, "API.setEnabledSMS(true);"))
elif "//EMAIL" in line and features["email"]["status"]:
f.write(indented_str(2, "API.setEnabledEmail(true);"))
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
if features["nc"]["status"]:
f.write(indented_str(1, " '))
n = n + 1
if features["im"]["status"]:
f.write(indented_str(1, " '))
n = n + 1
if features["call"]["status"]:
f.write(indented_str(1, " '))
n = n + 1
if features["ls"]["status"]:
f.write(indented_str(1, " '))
n = n + 1
else:
f.write(line)
elif platform == "android_flutter":
main_act_path = os.path.join(path_dest, "lib/main.dart")
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")
if features["nc"]["status"]:
features_str.append("Notification Center")
if features["im"]["status"]:
features_str.append("Instant Messaging")
if features["call"]["status"]:
features_str.append("Call")
if features["ls"]["status"]:
features_str.append("Streaming")
result_str = ", ".join([f"'{n}'" for n in features_str])
replaced = line.replace("'Features List'", result_str)
f.write(replaced)
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))
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))
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))
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))
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(line)
elif platform == "android_ionic":
main_act_path = os.path.join(path_dest,"src/app/app.component.ts")
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))
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))
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))
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))
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(line)
elif platform == "android_react":
pass
elif platform == "ios":
main_act_path = os.path.join(path_dest,
"ExampleCode/ViewController.swift")
with open(main_act_path, "r") as f:
lines = f.readlines()
with open(main_act_path, "w") as f:
for line in lines:
if "//FEATURES" in line:
f.write(indented_str(3, 'UIAction(title: "Setting".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openSetting();"))
f.write(indented_str(3, "}),"))
f.write(indented_str(3, 'UIAction(title: "Profile".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openProfile();"))
f.write(indented_str(3, "}),"))
if features["cc"]["status"]:
f.write(indented_str(3, 'UIAction(title: "Contact Center".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openContactCenter();"))
f.write(indented_str(3, "}),"))
if features["nc"]["status"]:
f.write(indented_str(3, 'UIAction(title: "Notification Center".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openNotificationCenter();"))
f.write(indented_str(3, "}),"))
if features["im"]["status"]:
f.write(indented_str(3, 'UIAction(title: "Chat".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openChat();"))
f.write(indented_str(3, "}),"))
if features["call"]["status"]:
f.write(indented_str(3, 'UIAction(title: "Call".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openCall();"))
f.write(indented_str(3, "}),"))
if features["ls"]["status"]:
f.write(indented_str(3, 'UIAction(title: "Live Streaming".localized(), handler: {(_) in'))
f.write(indented_str(4, "APIS.openStreaming();"))
f.write(indented_str(3, "}),"))
else:
f.write(line)
elif platform == "ios_flutter":
main_act_path = os.path.join(path_dest, "lib/main.dart")
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")
if features["nc"]["status"]:
features_str.append("Notification Center")
if features["im"]["status"]:
features_str.append("Instant Messaging")
if features["call"]["status"]:
features_str.append("Call")
if features["ls"]["status"]:
features_str.append("Streaming")
result_str = ", ".join([f"'{n}'" for n in features_str])
replaced = line.replace("'Features List'", result_str)
f.write(replaced)
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))
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))
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))
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))
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(line)
elif platform == "ios_ionic":
main_act_path = os.path.join(path_dest, "src/app/app.component.ts")
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))
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))
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))
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))
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(line)
elif platform == "ios_react":
pass
def deliver_zip(path_dest, uid):
rand_name = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(32))
zip_name = f"{rand_name}"
new_dir = os.path.join(app.zip_folder, zip_name)
try:
shutil.make_archive(new_dir, 'zip', path_dest)
project_path = os.path.join(app.temp_folder, uid)
shutil.rmtree(project_path)
return {"status": "0", "name": zip_name + ".zip"}
except Exception as e:
return {"status": "4", "message": "Deliver ZIP failed"}
@app.route('/', methods=["GET", "POST"])
def build_project():
vprint('==============================================================')
if request.method == 'POST':
platform = "ios_ionic"
feature_dict = {
"im": {
"android_name": "action_chats",
"status": True
},
"cc": {
"android_name": "action_cc",
"status": False
},
"call": {
"android_name": "action_call",
"status": True
},
"ls": {
"android_name": "action_ls",
"status": True
},
"settings": {
"android_name": "action_settings",
"status": False
},
"nc": {
"android_name": "action_nc",
"status": False
},
"sms": {
"status": False
},
"email": {
"status": False
},
}
security_dict = {
"malware": False,
"clone": False,
"emulator": False,
"debug": False,
"sim_swap": False,
"capture": False,
"call_forwarding": False,
"secure_folder": False,
"show_security": False,
}
try:
if "feature_im" in request.form:
feature_dict["im"]["status"] = request.form["feature_im"] == "1"
if "feature_cc" in request.form:
feature_dict["cc"]["status"] = request.form["feature_cc"] == "1"
if "feature_vc" in request.form:
feature_dict["call"]["status"] = request.form["feature_vc"] == "1"
if "feature_ac" in request.form:
feature_dict["call"]["status"] = request.form["feature_ac"] == "1"
if "feature_ls" in request.form:
feature_dict["ls"]["status"] = request.form["feature_ls"] == "1"
if "feature_nc" in request.form:
feature_dict["nc"]["status"] = request.form["feature_nc"] == "1"
if "feature_sms" in request.form:
feature_dict["sms"]["status"] = request.form["feature_sms"] == "1"
if "feature_email" in request.form:
feature_dict["email"]["status"] = request.form["feature_email"] == "1"
if "feature_settings" in request.form:
feature_dict["settings"]["status"] = request.form["feature_settings"] == "1"
if "security_malware" in request.form:
security_dict["malware"] = request.form["security_malware"] == "1"
if "security_clone" in request.form:
security_dict["clone"] = request.form["security_clone"] == "1"
if "security_emulator" in request.form:
security_dict["emulator"] = request.form["security_emulator"] == "1"
if "security_debug" in request.form:
security_dict["debug"] = request.form["security_debug"] == "1"
if "security_sim_swap" in request.form:
security_dict["sim_swap"] = request.form["security_sim_swap"] == "1"
if "security_capture" in request.form:
security_dict["capture"] = request.form["security_capture"] == "1"
if "security_call_forwarding" in request.form:
security_dict["call_forwarding"] = request.form["security_call_forwarding"] == "1"
if "security_secure_folder" in request.form:
security_dict["secure_folder"] = request.form["security_secure_folder"] == "1"
if "show_security" in request.form:
security_dict["show_security"] = request.form["show_security"] == "1"
else:
security_dict["show_security"] = (security_dict["malware"] or security_dict["clone"]
or security_dict["emulator"] or security_dict["debug"]
or security_dict["sim_swap"] or security_dict["capture"]
or security_dict["call_forwarding"]
or security_dict["secure_folder"])
if "platform" in request.form:
platform = request.form["platform"]
except BaseException as e:
vprint(traceback.format_exc())
return {"status": "1", "message": "Parameter mismatch\n{}\n".format(str(e))}, 400
try:
uu_id = str(uuid.uuid4())
path_dest = create_folder(platform, uu_id)
change(platform, path_dest, feature_dict, security_dict)
return deliver_zip(path_dest, uu_id)
except BaseException as e:
vprint(traceback.format_exc())
return {"status": "2", "message": "Process failure\n{}\n".format(str(e))}, 200
else:
if 'e' in request.args:
return request.args['e']
return "Hello World!"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8056, debug=app.verbose, ssl_context=app.ssl)