-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add kli import command for importing dot CESR file, add gateway role (#…
…921) * Import command for loading KEL from a dot cesr file Signed-off-by: pfeairheller <[email protected]> * Add Revery to Parser for import command Signed-off-by: pfeairheller <[email protected]> * Fix essr to encrypt sender. Signed-off-by: pfeairheller <[email protected]> --------- Signed-off-by: pfeairheller <[email protected]>
- Loading branch information
1 parent
0a6fb32
commit b932c8d
Showing
4 changed files
with
84 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# -*- encoding: utf-8 -*- | ||
""" | ||
KERI | ||
keri.kli.commands module | ||
""" | ||
import argparse | ||
import sys | ||
|
||
from hio import help | ||
from hio.base import doing | ||
|
||
from keri.app import habbing | ||
from keri.app.cli.common import existing | ||
from keri.core import coring, serdering, parsing | ||
|
||
logger = help.ogler.getLogger() | ||
|
||
parser = argparse.ArgumentParser(description='Import key events in CESR stream format') | ||
parser.set_defaults(handler=lambda args: export(args), | ||
transferable=True) | ||
parser.add_argument('--name', '-n', help='keystore name and file location of KERI keystore', required=True) | ||
parser.add_argument('--base', '-b', help='additional optional prefix to file location of KERI keystore', | ||
required=False, default="") | ||
parser.add_argument('--passcode', '-p', help='21 character encryption passcode for keystore (is not saved)', | ||
dest="bran", default=None) # passcode => bran | ||
parser.add_argument("--file", help="File of streamed CESR events to import", required=True) | ||
|
||
|
||
def export(args): | ||
""" Command line list credential registries handler | ||
""" | ||
|
||
ed = ImportDoer(name=args.name, | ||
base=args.base, | ||
bran=args.bran, | ||
file=args.file) | ||
return [ed] | ||
|
||
|
||
class ImportDoer(doing.DoDoer): | ||
|
||
def __init__(self, name, base, bran, file): | ||
self.file = file | ||
|
||
self.hby = existing.setupHby(name=name, base=base, bran=bran) | ||
|
||
doers = [doing.doify(self.exportDo), habbing.HaberyDoer(self.hby)] | ||
|
||
super(ImportDoer, self).__init__(doers=doers) | ||
|
||
def exportDo(self, tymth, tock=0.0): | ||
""" Export credential from store and any related material | ||
Parameters: | ||
tymth (function): injected function wrapper closure returned by .tymen() of | ||
Tymist instance. Calling tymth() returns associated Tymist .tyme. | ||
tock (float): injected initial tock value | ||
Returns: doifiable Doist compatible generator method | ||
""" | ||
# enter context | ||
self.wind(tymth) | ||
self.tock = tock | ||
_ = (yield self.tock) | ||
|
||
with open(self.file, 'rb') as f: | ||
ims = f.read() | ||
parsing.Parser(kvy=self.hby.kvy, rvy=self.hby.rvy, local=False).parse(ims=ims) | ||
self.hby.kvy.processEscrows() | ||
|
||
self.exit() | ||
return True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters