2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-01 21:40:32 +00:00
Comrad/komrade/backend/the_telephone.py

94 lines
3.2 KiB
Python
Raw Normal View History

2020-09-06 06:50:23 +00:00
# internal imports
import os,sys; sys.path.append(os.path.abspath(os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__),'..')),'..')))
from komrade import *
2020-09-06 19:41:17 +00:00
from komrade.backend import *
2020-09-06 06:50:23 +00:00
### ACTUAL PHONE CONNECTIONS
2020-09-06 19:24:36 +00:00
class TheTelephone(Operator):
2020-09-06 06:50:23 +00:00
"""
API client class for Caller to interact with The Operator.
"""
2020-09-06 19:54:00 +00:00
def __init__(self, caller=None):
2020-09-06 19:24:36 +00:00
super().__init__(
name=TELEPHONE_NAME,
path_crypt_keys=PATH_CRYPT_CA_KEYS,
path_crypt_data=PATH_CRYPT_CA_KEYS
)
2020-09-06 06:50:23 +00:00
2020-09-06 20:17:47 +00:00
@property
2020-09-06 20:25:18 +00:00
def op(self):
global OPERATOR
if not OPERATOR: Operator=TheOperator()
return OPERATOR
2020-09-06 20:17:47 +00:00
2020-09-06 11:40:18 +00:00
async def dial_operator(self,msg):
2020-09-06 06:50:23 +00:00
msg=msg.replace('/','_')
URL = OPERATOR_API_URL + msg + '/'
self.log("DIALING THE OPERATOR:",URL)
2020-09-06 11:56:47 +00:00
try:
r=await tor_request_async(URL)
except TypeError:
return r
2020-09-06 06:50:23 +00:00
return r
2020-09-06 19:39:44 +00:00
async def req(self,json_coming_from_phone={},json_coming_from_caller={},caller=None):
2020-09-06 19:54:00 +00:00
if not caller: caller=self.caller
2020-09-06 06:50:23 +00:00
# Two parts of every request:
# 1) only overall encryption layer E2EE Telephone -> Operator:
req_data = []
if json_coming_from_phone:
json_coming_from_phone_s = json.dumps(json_coming_from_phone)
json_coming_from_phone_b = json_coming_from_phone_s.encode()
2020-09-06 19:54:00 +00:00
json_coming_from_phone_b_encr = SMessage(self.privkey_,self.op.pubkey_).wrap(json_coming_from_phone_b)
2020-09-06 06:50:23 +00:00
else:
json_coming_from_phone_b=b''
# 2) (optional) extra E2EE encrypted layer Caller -> Operator
2020-09-06 19:39:44 +00:00
if json_coming_from_caller and caller:
2020-09-06 06:50:23 +00:00
json_coming_from_caller_s = json.dumps(json_coming_from_caller)
json_coming_from_caller_b = json_coming_from_caller_s.encode()
2020-09-06 19:54:00 +00:00
json_coming_from_caller_b_encr = SMessage(caller.privkey_,self.op.pubkey_).wrap(json_coming_from_caller_b)
2020-09-06 06:50:23 +00:00
else:
json_coming_from_caller_b_encr = b''
# encrypt whole package E2EE, Telephone to Operator
2020-09-06 19:54:00 +00:00
req_data_encr = json_coming_from_phone_b_encr + BSEP + json_coming_from_caller_b_encr
# req_data_encr = SMessage(self.privkey_,self.op.pubkey_).wrap(req_data)
2020-09-06 06:50:23 +00:00
req_data_encr_b64 = b64encode(req_data_encr)
self.log('req_data_encr_b64 <--',req_data_encr_b64)
# send!
req_data_encr_b64_str = req_data_encr_b64.decode('utf-8')
# escape slashes
req_data_encr_b64_str_esc = req_data_encr_b64_str.replace('/','_')
2020-09-06 11:56:47 +00:00
try:
2020-09-06 19:59:14 +00:00
res = await self.dial_operator(req_data_encr_b64_str)
2020-09-06 11:56:47 +00:00
except TypeError:
res = None
2020-09-06 06:50:23 +00:00
self.log('result from operator?',res)
return res
2020-09-06 19:54:00 +00:00
2020-09-06 06:50:23 +00:00
def test_call():
2020-09-06 19:59:14 +00:00
caller = Caller('marx33') #Caller('marx')
2020-09-06 06:50:23 +00:00
# caller.boot(create=True)
# print(caller.keychain())
2020-09-06 19:59:14 +00:00
# phone = TheTelephone()
2020-09-06 08:39:31 +00:00
# req_json = {'_route':'forge_new_keys','name':name, 'pubkey_is_public':pubkey_is_public}}
# req_json_s = jsonify(req_json)
# res = phone.req({'forge_new_keys':{'name':'marx', 'pubkey_is_public':True}})
# print(res)
2020-09-06 19:59:14 +00:00
asyncio.run(caller.forge_new_keys())
2020-09-06 06:50:23 +00:00
2020-09-06 11:48:35 +00:00
print('YEAH COOL')
2020-09-06 06:50:23 +00:00
## main
if __name__=='__main__': test_call()