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

77 lines
2.4 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-08 15:14:48 +00:00
from komrade.backend.phonelines 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-07 17:27:46 +00:00
def __init__(self, caller=None):
2020-09-09 14:38:37 +00:00
super().__init__(name=TELEPHONE_NAME)
self.caller=caller
2020-09-09 14:38:37 +00:00
self._keychain = self.telephone_keychain
def find_pubkey(self):
return self.telephone_keychain.get('pubkey')
2020-09-06 06:50:23 +00:00
2020-09-09 19:15:35 +00:00
def send_and_receive(self,msg_d):
2020-09-09 18:31:36 +00:00
# seal for transport
2020-09-09 19:15:35 +00:00
msg_b_sealed = self.seal_msg(msg_d)
2020-09-09 18:31:36 +00:00
2020-09-09 15:21:13 +00:00
# prepare for transmission across net
2020-09-09 18:31:36 +00:00
msg_b64 = b64encode(msg_b_sealed)
2020-09-09 15:21:13 +00:00
msg_b64_str = msg_b64.decode()
2020-09-08 15:36:01 +00:00
msg_b64_str_esc = msg_b64_str.replace('/','_')
self.log('msg_b64_str_esc',type(msg_b64_str_esc),msg_b64_str_esc)
2020-09-09 15:21:13 +00:00
# dial the operator
2020-09-08 15:36:01 +00:00
URL = OPERATOR_API_URL + msg_b64_str_esc + '/'
2020-09-06 06:50:23 +00:00
self.log("DIALING THE OPERATOR:",URL)
2020-09-09 15:21:13 +00:00
phonecall=komrade_request(URL)
if phonecall.status_code!=200:
self.log('!! error in request',phonecall.status_code,phonecall.text)
return
# response back from Operator!
2020-09-09 20:25:13 +00:00
resp_msg_b64_str = phonecall.text
self.log('resp_msg_b64_str',resp_msg_b64_str)
resp_msg_b64 = resp_msg_b64_str.encode()
resp_msg_b = b64decode(resp_msg_b64)
2020-09-09 18:31:36 +00:00
# unseal
resp_msg_b_unsealed = self.unseal_msg(resp_msg_b)
return resp_msg_b_unsealed
2020-09-09 15:21:13 +00:00
2020-09-09 14:38:37 +00:00
def ring_ring(self,msg):
return super().ring_ring(
msg,
to_whom=self.op,
get_resp_from=self.send_and_receive
2020-09-08 11:23:41 +00:00
)
2020-09-09 14:38:37 +00:00
2020-09-06 06:50:23 +00:00
def test_call():
2020-09-08 15:14:48 +00:00
phone = TheTelephone()
pprint(phone.keychain())
# 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-09 18:31:36 +00:00
# req_json = {'_route':'forge_new_keys','name':name, 'pubkey_is_public':pubkey_is_public}}
2020-09-06 08:39:31 +00:00
# req_json_s = jsonify(req_json)
# res = phone.req({'forge_new_keys':{'name':'marx', 'pubkey_is_public':True}})
# print(res)
# asyncio.run(caller.get_new_keys())
2020-09-08 15:14:48 +00:00
# x=caller.get_new_keys(passphrase='1869')
2020-09-06 06:50:23 +00:00
2020-09-08 15:14:48 +00:00
# print('YEAH COOL',x)
2020-09-06 11:48:35 +00:00
2020-09-06 06:50:23 +00:00
## main
if __name__=='__main__': test_call()