feat(onpoint): get inventories #17

Merged
sinhluu merged 8 commits from onpoint-stock-update into master 2024-05-08 07:26:17 +00:00
1 changed files with 12 additions and 7 deletions
Showing only changes of commit 2bf7ef6e8a - Show all commits

View File

@ -4,6 +4,7 @@ import (
"errors"
"fmt"
"net/http"
"net/url"
"strconv"
"strings"
"time"
@ -209,17 +210,20 @@ func (c *Client) requestHttpViaNats(data model.CommunicationRequestHttp, res int
if err != nil {
return fmt.Errorf("onpoint: request via nats %v", err)
}
qs := ""
u, err := url.ParseRequestURI(data.Payload.URL)
if err != nil {
return fmt.Errorf("onpoint: request via nats %v", err)
}
q := u.Query()
for k, v := range data.Payload.Query {
if qs != "" {
qs += "&"
}
qs += k + "=" + v
q.Set(k, v)
}
u.RawQuery = q.Encode()
now := time.Now().Unix()
ts := strconv.FormatInt(now, 10)
arr := []string{
qs,
u.RawQuery,
data.Payload.Data,
ts,
}
@ -232,6 +236,7 @@ func (c *Client) requestHttpViaNats(data model.CommunicationRequestHttp, res int
headerXTimestamp: ts,
httputil.HeaderKeyContentType: httputil.HeaderValueApplicationJSON,
}
data.Payload.Query = map[string]string{}
return ec.Request(subject.Communication.RequestHTTP, data, res)
}