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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def phone(self):
|
2020-09-06 20:25:18 +00:00
|
|
|
global TELEPHONE
|
2020-09-06 20:30:36 +00:00
|
|
|
from komrade.backend.the_telephone import TheTelephone
|
2020-09-06 20:25:18 +00:00
|
|
|
if not TELEPHONE: TELEPHONE=TheTelephone()
|
2020-09-06 20:17:47 +00:00
|
|
|
return TELEPHONE
|
|
|
|
@property
|
2020-09-06 20:25:18 +00:00
|
|
|
def op(self):
|
|
|
|
global OPERATOR
|
2020-09-06 20:30:36 +00:00
|
|
|
from komrade.backend.the_operator import TheOperator
|
|
|
|
if not OPERATOR: OPERATOR=TheOperator()
|
2020-09-06 20:25:18 +00:00
|
|
|
return OPERATOR
|
2020-09-06 06:50:23 +00:00
|
|
|
|
2020-09-07 07:26:32 +00:00
|
|
|
async 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,
|
|
|
|
'passphrase':hashish(passphrase)
|
|
|
|
}
|
|
|
|
|
|
|
|
req_json['key_types'] = {**KEYMAKER_DEFAULT_KEY_TYPES}
|
2020-09-06 19:54:00 +00:00
|
|
|
req_json['keys_to_save']=['pubkey_encr','privkey_encr','adminkey_encr']
|
|
|
|
req_json['keys_to_return']=['pubkey_decr',
|
|
|
|
'privkey_decr_encr', 'privkey_decr_decr',
|
|
|
|
'adminkey_decr_encr', 'adminkey_decr_decr']
|
|
|
|
|
|
|
|
try:
|
2020-09-06 20:17:47 +00:00
|
|
|
return await self.phone.req(json_coming_from_phone = req_json, caller=self)
|
2020-09-06 19:54:00 +00:00
|
|
|
except TypeError:
|
|
|
|
return None
|