natsio/client/supplier.go

40 lines
762 B
Go
Raw Normal View History

2022-08-26 10:15:49 +00:00
package client
import (
"encoding/json"
"errors"
"github.com/Selly-Modules/natsio"
"github.com/Selly-Modules/natsio/model"
"github.com/Selly-Modules/natsio/subject"
)
// Supplier ...
type Supplier struct{}
2022-08-26 16:37:01 +00:00
// GetSupplier ...
func GetSupplier() Supplier {
return Supplier{}
}
2022-08-31 07:18:04 +00:00
func (s Supplier) FindAll(supplierID model.GetSupplierRequest) (*model.SupplierAll, error) {
msg, err := natsio.GetServer().Request(subject.Supplier.FindAll, toBytes(supplierID))
2022-08-26 10:15:49 +00:00
if err != nil {
return nil, err
}
var r struct {
2022-08-31 07:18:04 +00:00
Data *model.SupplierAll `json:"data"`
Error string `json:"error"`
2022-08-26 10:15:49 +00:00
}
2022-08-31 07:18:04 +00:00
if err = json.Unmarshal(msg.Data, &r); err != nil {
2022-08-26 10:15:49 +00:00
return nil, err
}
if r.Error != "" {
return nil, errors.New(r.Error)
}
return r.Data, nil
}