2021-10-15 10:34:19 +02:00
|
|
|
package statuskeycardgo
|
2021-10-14 13:14:43 +03:00
|
|
|
|
|
|
|
type FlowType int
|
2021-10-18 10:19:09 +03:00
|
|
|
type FlowParams map[string]interface{}
|
|
|
|
type FlowStatus map[string]interface{}
|
2021-10-15 10:35:01 +03:00
|
|
|
type runState int
|
2021-10-14 13:14:43 +03:00
|
|
|
|
|
|
|
const (
|
2021-10-15 12:38:06 +03:00
|
|
|
GetAppInfo FlowType = iota
|
2021-10-15 10:35:01 +03:00
|
|
|
RecoverAccount
|
|
|
|
LoadAccount
|
|
|
|
Login
|
|
|
|
Sign
|
|
|
|
ChangeCredentials
|
|
|
|
UnpairThis
|
|
|
|
UnpairOthers
|
|
|
|
DeleteAccountAndUnpair
|
2021-10-14 13:14:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-10-15 10:35:01 +03:00
|
|
|
Idle runState = iota
|
|
|
|
Running
|
|
|
|
Paused
|
|
|
|
Resuming
|
|
|
|
Cancelling
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
FlowResult = "keycard.flow-result"
|
|
|
|
InsertCard = "keycard.action.insert-card"
|
|
|
|
CardInserted = "keycard.action.card-inserted"
|
2021-10-15 12:38:06 +03:00
|
|
|
SwapCard = "keycard.action.swap-card"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ErrorKey = "error"
|
|
|
|
ErrorOK = "ok"
|
|
|
|
ErrorCancel = "cancel"
|
|
|
|
ErrorConnection = "connection-error"
|
|
|
|
ErrorUnknownFlow = "unknown-flow"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
AppInfo = "application-info"
|
|
|
|
InstanceUID = "instance-uid"
|
|
|
|
KeyUID = "key-uid"
|
2021-10-14 13:14:43 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type keycardFlow struct {
|
|
|
|
flowType FlowType
|
2021-10-15 10:35:01 +03:00
|
|
|
state runState
|
2021-10-18 10:19:09 +03:00
|
|
|
active chan (struct{})
|
2021-10-14 13:14:43 +03:00
|
|
|
wakeUp chan (struct{})
|
|
|
|
storage string
|
2021-10-15 12:38:06 +03:00
|
|
|
params map[string]interface{}
|
2021-10-14 13:14:43 +03:00
|
|
|
}
|