mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
lint fixes
This commit is contained in:
parent
6559a02f98
commit
591456fa3c
3 changed files with 8 additions and 6 deletions
|
@ -248,8 +248,8 @@ func (r ConnectRequest) SystemURL() string {
|
|||
// Verify returns true if connection request is legitimate. Application secret should be provided to this method.
|
||||
func (r ConnectRequest) Verify(secret string) bool {
|
||||
mac := hmac.New(sha256.New, []byte(secret))
|
||||
mac.Write([]byte(r.APIKey))
|
||||
expected := mac.Sum(nil)
|
||||
|
||||
return hmac.Equal([]byte(r.Token), []byte(hex.EncodeToString(expected)))
|
||||
if _, err := mac.Write([]byte(r.APIKey)); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return hmac.Equal([]byte(r.Token), []byte(hex.EncodeToString(mac.Sum(nil))))
|
||||
}
|
||||
|
|
|
@ -36,6 +36,8 @@ func (t *ConnectRequestTest) Test_Verify() {
|
|||
|
||||
func createConnectToken(apiKey, secret string) string {
|
||||
mac := hmac.New(sha256.New, []byte(secret))
|
||||
mac.Write([]byte(apiKey))
|
||||
if _, err := mac.Write([]byte(apiKey)); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return hex.EncodeToString(mac.Sum(nil))
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
|
||||
func TestNewConnectResponse(t *testing.T) {
|
||||
assert.Equal(t, ConnectResponse{
|
||||
Response: Response{
|
||||
SuccessfulResponse: SuccessfulResponse{
|
||||
Success: true,
|
||||
},
|
||||
AccountURL: "https://example.com",
|
||||
|
|
Loading…
Add table
Reference in a new issue