forked from Naruno/Messaging-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessaging_app_main.py
58 lines (50 loc) · 2.16 KB
/
messaging_app_main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from wallet.wallet import Wallet_Import
def messaging_app_main_tx(tx):
tx_pubkey = tx.toUser
tx_pubkey_fromUser = tx.fromUser
my_pubkey = "".join([
l.strip() for l in Wallet_Import(0,0).splitlines()
if l and not l.startswith("-----")
])
print("\n")
print("\n\n"+tx_pubkey)
print(my_pubkey+"\n\n")
print(tx_pubkey == my_pubkey or tx_pubkey in my_pubkey or my_pubkey in tx_pubkey)
print(tx.__dict__)
print(tx.data)
print(type(tx.data))
print("\n")
control = False
to_User = False
from_User = False
if tx_pubkey == my_pubkey or tx_pubkey in my_pubkey or my_pubkey in tx_pubkey:
control = True
to_User = True
elif tx_pubkey_fromUser == my_pubkey or tx_pubkey_fromUser in my_pubkey or my_pubkey in tx_pubkey_fromUser:
control = True
from_User = True
if control:
if tx.data != None:
print("\n not none \n")
if "app" in tx.data:
print("\n app in data \n")
if tx.data["app"] == "messagingapp":
print("""\n tx.data["app"] == "messagingapp" \n""")
if tx.data["command"] == "addnewuser" and to_User:
print("""\n tx.data["command"] == "addnewuser" \n""")
from apps.Messaging_App.func.create_new_user import create_new_user
create_new_user("unknow", tx.fromUser, tx.data["n"],tx.data["e"])
elif tx.data["command"] == "newmessage" and to_User:
from apps.Messaging_App.func.decrypt import decrypt_text
decrypt_text(tx.data["message"],tx_pubkey_fromUser)
def messaging_app_main_cli():
return None
import tkinter as tk
import tkinter.ttk as ttk
def messaging_app_main_gui(main_gui,column,row):
main_gui.example_button = ttk.Button(main_gui.frame)
main_gui.example_button.configure(text='Run Messaging App')
main_gui.example_button.grid(column=str(column), padx='25', pady='20', row=str(row), sticky='n')
import_arguments = f"from apps.Messaging_App.web.chat import start_app"
func_name = "start_app()"
main_gui.example_button.configure(command= lambda: main_gui.apps_func(import_arguments,func_name))