-
Notifications
You must be signed in to change notification settings - Fork 5
Sdk 1988 go add support for fetching session configuration #315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mehmet-yoti
wants to merge
2
commits into
development
Choose a base branch
from
SDK-1988-go-add-support-for-fetching-session-configuration
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+144
−0
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to add filters for returning Document, Liveness and Face capture resource requirements similar to the Node SDK. |
This file contains hidden or 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,78 @@ | ||
package config | ||
|
||
// SessionConfigurationResponse represents the configuration of a Doc Scan session. | ||
type SessionConfigurationResponse struct { | ||
ClientSessionTokenTTL int `json:"client_session_token_ttl"` | ||
SessionID string `json:"session_id"` | ||
RequestedChecks []string `json:"requested_checks"` | ||
Capture *CaptureResponse `json:"capture"` | ||
} | ||
|
||
// GetClientSessionTokenTTL returns the amount of time remaining in seconds until the session expires. | ||
func (s *SessionConfigurationResponse) GetClientSessionTokenTTL() int { | ||
return s.ClientSessionTokenTTL | ||
} | ||
|
||
// GetSessionID returns the session ID that the configuration belongs to. | ||
func (s *SessionConfigurationResponse) GetSessionID() string { | ||
return s.SessionID | ||
} | ||
|
||
// GetRequestedChecks returns a list of strings, signifying the checks that have been requested in the session. | ||
func (s *SessionConfigurationResponse) GetRequestedChecks() []string { | ||
return s.RequestedChecks | ||
} | ||
|
||
// GetCapture returns information about what needs to be captured to fulfil the session's requirements. | ||
func (s *SessionConfigurationResponse) GetCapture() *CaptureResponse { | ||
return s.Capture | ||
} | ||
|
||
// CaptureResponse represents the capture requirements for the session. | ||
type CaptureResponse struct { | ||
BiometricConsent string `json:"biometric_consent"` | ||
RequiredResources []*RequiredResource `json:"required_resources"` | ||
} | ||
|
||
// RequiredResource represents a resource that needs to be captured. | ||
type RequiredResource struct { | ||
Type string `json:"type"` | ||
ID string `json:"id,omitempty"` | ||
State string `json:"state,omitempty"` | ||
AllowedSources []*AllowedSource `json:"allowed_sources,omitempty"` | ||
SupportedCountries []*SupportedCountry `json:"supported_countries,omitempty"` | ||
AllowedCaptureMethods string `json:"allowed_capture_methods,omitempty"` | ||
RequestedTasks []*RequestedTask `json:"requested_tasks,omitempty"` | ||
AttemptsRemaining map[string]int `json:"attempts_remaining,omitempty"` | ||
DocumentTypes []string `json:"document_types,omitempty"` | ||
CountryCodes []string `json:"country_codes,omitempty"` | ||
Objective *Objective `json:"objective,omitempty"` | ||
LivenessType string `json:"liveness_type,omitempty"` | ||
} | ||
|
||
// AllowedSource represents a source that is allowed for a resource. | ||
type AllowedSource struct { | ||
Type string `json:"type"` | ||
} | ||
|
||
// SupportedCountry represents a country and its supported documents. | ||
type SupportedCountry struct { | ||
Code string `json:"code"` | ||
SupportedDocuments []*SupportedDocument `json:"supported_documents"` | ||
} | ||
|
||
// SupportedDocument represents a document type supported for a country. | ||
type SupportedDocument struct { | ||
Type string `json:"type"` | ||
} | ||
|
||
// RequestedTask represents a task that has been requested for a resource. | ||
type RequestedTask struct { | ||
Type string `json:"type"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
// Objective represents the objective for a supplementary document. | ||
type Objective struct { | ||
Type string `json:"type"` | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move this to docscan/endpoint.go for consistency.