-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from iden3/chore/singer
refactor
- Loading branch information
Showing
13 changed files
with
325 additions
and
323 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package services | ||
|
||
import ( | ||
"github.com/iden3/driver-did-iden3/pkg/document" | ||
"github.com/iden3/go-iden3-core/v2/w3c" | ||
"github.com/iden3/go-schema-processor/v2/verifiable" | ||
) | ||
|
||
type StateType int32 | ||
|
||
const ( | ||
IdentityStateType StateType = 0 | ||
GlobalStateType StateType = 1 | ||
) | ||
|
||
type DIDResolutionProver interface { | ||
Prove(did w3c.DID, info IdentityState, dataType StateType) (document.DidResolutionProof, error) | ||
} | ||
|
||
type DIDResolutionProverRegistry map[verifiable.ProofType]DIDResolutionProver | ||
|
||
func NewDIDResolutionProverRegistry() *DIDResolutionProverRegistry { | ||
return &DIDResolutionProverRegistry{} | ||
} | ||
|
||
func (ch *DIDResolutionProverRegistry) Add(proofType verifiable.ProofType, prover DIDResolutionProver) { | ||
(*ch)[proofType] = prover | ||
} | ||
|
||
func (ch *DIDResolutionProverRegistry) Append(proofType verifiable.ProofType, prover DIDResolutionProver) error { | ||
_, ok := (*ch)[proofType] | ||
if ok { | ||
return ErrResolverAlreadyExists | ||
} | ||
(*ch)[proofType] = prover | ||
return nil | ||
} | ||
|
||
func (ch *DIDResolutionProverRegistry) GetDIDResolutionProverByProofType(proofType verifiable.ProofType) (DIDResolutionProver, error) { | ||
signer, ok := (*ch)[proofType] | ||
if !ok { | ||
return nil, ErrProofTypeIsNotSupported | ||
} | ||
|
||
return signer, nil | ||
} |
Oops, something went wrong.