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

104 lines
3.2 KiB
Python
Raw Normal View History

2020-09-08 11:23:41 +00:00
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 *
from komrade.backend import *
class Person(Caller):
2020-09-08 12:11:13 +00:00
def ring_ring(self,with_msg,to_whom = None):
# if no one intended, call the operator
2020-09-08 15:49:17 +00:00
#return super().ring_ring(with_msg,to_phone=self.op)
if not to_whom: to_whom = self.op
2020-09-08 12:11:13 +00:00
# msg should be unencrypted
msg_unencr = with_msg
2020-09-08 16:09:51 +00:00
self.log('msg_unencr',msg_unencr)
2020-09-08 12:11:13 +00:00
2020-09-08 11:23:41 +00:00
# ring 1: encrypt caller2phone
msg_encr_caller2caller = self.package_msg_to(
msg_unencr,
2020-09-08 12:11:13 +00:00
to_whom
2020-09-08 11:23:41 +00:00
)
2020-09-08 16:09:51 +00:00
self.log('msg_encr_caller2caller!',msg_encr_caller2caller)
2020-09-08 11:23:41 +00:00
# ring 2: use 'Caller' class to dial and get response
resp_msg_encr_caller2caller = super().ring_ring(
msg_encr_caller2caller
)
self.log('resp_msg_encr_caller2caller',resp_msg_encr_caller2caller)
# ring 3: decrypt and send back
resp_msg_unencr = self.unpackage_msg_from(
msg_encr_caller2caller,
2020-09-08 12:11:13 +00:00
to_whom
2020-09-08 11:23:41 +00:00
)
self.log('resp_msg_unencr',resp_msg_encr_caller2caller)
return resp_msg_unencr
2020-09-08 15:14:48 +00:00
def register(self,name=None,passphrase=DEBUG_DEFAULT_PASSPHRASE, is_group=None):
2020-09-08 11:23:41 +00:00
# get needed metadata
if not name: name=self.name
if name is None:
name = input('\nWhat is the name for this account? ')
if passphrase is None:
passphrase = getpass.getpass('\nEnter a memborable password: ')
# if is_group is None:
# is_group = input('\nIs this a group account? [y/N]').strip().lower() == 'y'
# form request to operator
msg_to_op = {'_please':'forge_new_keys'}
# call and ask operator to register us
2020-09-08 15:14:48 +00:00
# for only this one! we skip to Caller
2020-09-08 16:09:51 +00:00
resp = self.phone.ring_ring(msg_to_op)
2020-09-08 15:14:48 +00:00
return resp
2020-09-08 11:23:41 +00:00
def get_new_keys(self, name = None, passphrase = DEBUG_DEFAULT_PASSPHRASE, is_group=None):
# get needed metadata
if not name: name=self.name
if name is None:
name = input('\nWhat is the name for this account? ')
if passphrase is None:
passphrase = getpass.getpass('\nEnter a memborable password: ')
# if is_group is None:
# is_group = input('\nIs this a group account? [y/N]').strip().lower() == 'y'
2020-09-08 12:11:13 +00:00
phone_res = self.phone.ring(msg_to_op)
2020-09-08 11:23:41 +00:00
# URI id
uri_id = phone_res.get('uri_id')
returned_keys = phone_res.get('_keychain')
self.log('got URI from Op:',uri_id)
self.log('got returnd keys from Op:',returned_keys)
stop
# better have the right keys
assert set(KEYMAKER_DEFAULT_KEYS_TO_SAVE_ON_CLIENT) == set(returned_keys.keys())
# now save these keys!
saved_keys = self.save_keychain(name,returned_keys,uri_id=uri_id)
self.log('saved keys!',saved_keys)
# better have the right keys
# assert set(KEYMAKER_DEFAULT_KEYS_TO_SAVE) == set(saved_keys.keys())
# success!
self.log('yay!!!!')
return saved_keys
2020-09-08 15:14:48 +00:00
if __name__=='__main__':
person = Person('marx')
person.register()