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

55 lines
1.8 KiB
Python
Raw Normal View History

2020-09-06 06:50:23 +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 *
2020-09-06 19:59:14 +00:00
# from komrade.backend.the_telephone import *
# from komrade.backend.the_telephone import *
2020-09-06 06:50:23 +00:00
class Caller(Operator):
"""
Variant of an Operator which handles local keys and keymaking.
"""
2020-09-08 07:20:42 +00:00
def get_new_keys(self, name = None, passphrase = DEBUG_DEFAULT_PASSPHRASE, is_group=None):
2020-09-06 19:54:00 +00:00
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 06:58:54 +00:00
# form request
req_json = {
'_route':'forge_new_keys',
'name':name,
'passphrase':hashish(passphrase.encode())
}
2020-09-08 06:58:54 +00:00
# ask operator
2020-09-07 21:29:02 +00:00
phone_res = self.phone.ring_ring(json_phone2phone=req_json)
2020-09-08 06:58:54 +00:00
# URI id
2020-09-08 07:01:35 +00:00
uri_id = phone_res.get('uri_id')
returned_keys = phone_res.get('_keychain')
2020-09-08 06:58:54 +00:00
self.log('got URI from Op:',uri_id)
self.log('got returnd keys from Op:',returned_keys)
2020-09-08 06:58:54 +00:00
stop
# better have the right keys
2020-09-08 09:17:09 +00:00
assert set(KEYMAKER_DEFAULT_KEYS_TO_SAVE_ON_CLIENT) == set(returned_keys.keys())
# now save these keys!
2020-09-08 06:58:54 +00:00
saved_keys = self.save_keychain(name,returned_keys,uri_id=uri_id)
self.log('saved keys!',saved_keys)
# better have the right keys
2020-09-07 23:34:27 +00:00
# assert set(KEYMAKER_DEFAULT_KEYS_TO_SAVE) == set(saved_keys.keys())
# success!
self.log('yay!!!!')
return saved_keys