Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package state
import (
"database/sql/driver"
"encoding/json"
log "github.com/sirupsen/logrus"
"github.com/zachmann/mytoken/internal/config"
"github.com/zachmann/mytoken/internal/db"
"github.com/zachmann/mytoken/internal/utils/hashUtils"
)
type State struct {
state string
hash string
pollingCode string
}
func NewState(state string) *State {
return &State{
state: state,
}
}
func (s *State) Hash() string {
if len(s.hash) == 0 {
s.hash = hashUtils.SHA512Str([]byte(s.state))
}
return s.hash
}
func (s *State) PollingCode() string {
if len(s.pollingCode) == 0 {
s.pollingCode = hashUtils.HMACSHA512Str([]byte(s.state), []byte("polling_code"))[:config.Get().Features.Polling.Len]
log.WithField("state", s.state).WithField("polling_code", s.pollingCode).Debug("Created polling_code for state")
}
return s.pollingCode
}
func (s State) State() string {
return s.state
}
// Value implements the driver.Valuer interface
func (s State) Value() (driver.Value, error) {
return s.Hash(), nil
}
// Scan implements the sql.Scanner interface
func (s *State) Scan(src interface{}) error {
if src == nil {
return nil
}
ns := db.NewNullString("")
if err := ns.Scan(src); err != nil {
return err
}
s.hash = ns.String
return nil
}
// UnmarshalJSON implements the json.Unmarshaler interface
func (s *State) UnmarshalJSON(data []byte) error {
err := json.Unmarshal(data, &s.state)
return err
}
// MarshalJSON implements the json.Marshaler interface
func (s State) MarshalJSON() ([]byte, error) {
return json.Marshal(s.state)
}