forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(connector-fabric): identity json signing credentials hyperledger…
…-cacti#1130 Introduces a new, optional (for now) parameter on the run tx endpoint's request object called gatewayOptions which is capable of including everything that one needs to instantiate a gateway object of the underlying Fabric Node SDK. This change makes it possible to not need the keychain plugin at all when someone does not need/want it. Fixes hyperledger-cacti#1130 Depends on hyperledger-cacti#1124 Signed-off-by: Peter Somogyvari <[email protected]>
- Loading branch information
Showing
5 changed files
with
315 additions
and
41 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
92 changes: 92 additions & 0 deletions
92
packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/common/create-gateway.ts
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,92 @@ | ||
import { DefaultEventHandlerOptions } from "fabric-network"; | ||
import { DefaultEventHandlerStrategies, Wallets } from "fabric-network"; | ||
import { Gateway } from "fabric-network"; | ||
import { GatewayOptions as FabricGatewayOptions } from "fabric-network"; | ||
import { Checks, LoggerProvider } from "@hyperledger/cactus-common"; | ||
import { LogLevelDesc } from "@hyperledger/cactus-common"; | ||
import { PluginRegistry } from "@hyperledger/cactus-core"; | ||
import { ConnectionProfile } from "../generated/openapi/typescript-axios/index"; | ||
import { GatewayDiscoveryOptions } from "../generated/openapi/typescript-axios/index"; | ||
import { GatewayEventHandlerOptions } from "../generated/openapi/typescript-axios/index"; | ||
import { GatewayOptions } from "../generated/openapi/typescript-axios/index"; | ||
|
||
export interface ICreateGatewayContext { | ||
readonly logLevel?: LogLevelDesc; | ||
readonly pluginRegistry: PluginRegistry; | ||
readonly defaultConnectionProfile: ConnectionProfile; | ||
readonly defaultDiscoveryOptions: GatewayDiscoveryOptions; | ||
readonly defaultEventHandlerOptions: GatewayEventHandlerOptions; | ||
readonly gatewayOptions: GatewayOptions; | ||
} | ||
|
||
export const E_CREATE_GATEWAY_WALLET = | ||
"Invalid opts.gatewayOptions.wallet. Need json or keychain, none provided."; | ||
|
||
export async function createGateway( | ||
ctx: ICreateGatewayContext, | ||
): Promise<Gateway> { | ||
const log = LoggerProvider.getOrCreate({ | ||
label: "create-gateway", | ||
level: ctx?.logLevel || "INFO", | ||
}); | ||
log.debug("Creating Fabric Node SDK Gateway object..."); | ||
|
||
Checks.truthy(ctx, "createGateway#ctx"); | ||
Checks.truthy(ctx.gatewayOptions, "createGateway#ctx.gatewayOptions"); | ||
|
||
const { defaultConnectionProfile } = ctx; | ||
const cp = ctx.gatewayOptions.connectionProfile || defaultConnectionProfile; | ||
|
||
const wallet = await Wallets.newInMemoryWallet(); | ||
|
||
let identity; | ||
if (ctx.gatewayOptions.wallet.json) { | ||
log.debug("Parsing wallet from JSON representation..."); | ||
identity = JSON.parse(ctx.gatewayOptions.wallet.json); | ||
} else if (ctx.gatewayOptions.wallet.keychain) { | ||
log.debug("Fetching wallet from JSON keychain..."); | ||
const keychain = ctx.pluginRegistry.findOneByKeychainId( | ||
ctx.gatewayOptions.wallet.keychain.keychainId, | ||
); | ||
identity = await keychain.get<string>( | ||
ctx.gatewayOptions.wallet.keychain.keychainRef, | ||
); | ||
} else { | ||
throw new Error(E_CREATE_GATEWAY_WALLET); | ||
} | ||
|
||
await wallet.put(ctx.gatewayOptions.identity, identity); | ||
log.debug(`Imported identity ${ctx.gatewayOptions.identity} to wallet OK`); | ||
|
||
const eventHandlerOptions: DefaultEventHandlerOptions = { | ||
commitTimeout: ctx.gatewayOptions.eventHandlerOptions?.commitTimeout || 300, | ||
endorseTimeout: | ||
ctx.gatewayOptions.eventHandlerOptions?.endorseTimeout || 300, | ||
}; | ||
|
||
const strategy = | ||
ctx.gatewayOptions.eventHandlerOptions?.strategy || | ||
ctx.defaultEventHandlerOptions.strategy; | ||
|
||
if (strategy) { | ||
eventHandlerOptions.strategy = DefaultEventHandlerStrategies[strategy]; | ||
} | ||
|
||
log.debug(`Gateway EventHandlerOptions: `, eventHandlerOptions); | ||
|
||
const gatewayOptions: FabricGatewayOptions = { | ||
discovery: ctx.gatewayOptions.discovery || ctx.defaultDiscoveryOptions, | ||
eventHandlerOptions, | ||
identity: ctx.gatewayOptions.identity, | ||
wallet, | ||
}; | ||
|
||
log.debug("Instantiating and connecting gateway..."); | ||
|
||
const gateway = new Gateway(); | ||
await gateway.connect(cp, gatewayOptions); | ||
|
||
log.debug("Connection established by gateway OK"); | ||
|
||
return gateway; | ||
} |
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
Oops, something went wrong.