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-07 07:46:58 +00:00
|
|
|
def get_new_keys(self, name = None, passphrase = None, is_group=None):
|
2020-09-06 19:54:00 +00:00
|
|
|
if not name: name=self.name
|
2020-09-07 07:26:32 +00:00
|
|
|
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'
|
|
|
|
|
|
|
|
req_json = {
|
|
|
|
'_route':'forge_new_keys',
|
|
|
|
'name':name,
|
2020-09-07 07:29:50 +00:00
|
|
|
'passphrase':hashish(passphrase.encode())
|
2020-09-07 07:26:32 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 11:23:10 +00:00
|
|
|
phone_res = self.phone.ask_operator(json_phone = req_json, caller=self)
|
2020-09-07 08:50:06 +00:00
|
|
|
name = phone_res.get('name')
|
|
|
|
returned_keys = phone_res.get('_keychain')
|
2020-09-07 08:13:08 +00:00
|
|
|
self.log('got returnd keys from Op:',returned_keys)
|
|
|
|
|
|
|
|
# better have the right keys
|
|
|
|
assert set(req_json['keys_to_return']) == set(returned_keys.keys())
|
|
|
|
|
|
|
|
# now save these keys!
|
2020-09-07 08:16:21 +00:00
|
|
|
saved_keys = self.save_keychain(name,returned_keys)
|
2020-09-07 08:13:08 +00:00
|
|
|
self.log('saved keys!',saved_keys)
|
|
|
|
|
|
|
|
# better have the right keys
|
|
|
|
assert set(req_json['keys_to_return']) == set(saved_keys.keys())
|
|
|
|
|
|
|
|
# success!
|
|
|
|
self.log('yay!!!!')
|
|
|
|
return saved_keys
|