| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package dapr_client
- import (
- "context"
- dapr "github.com/dapr/go-sdk/client"
- "time"
- )
- type Client struct {
- client dapr.Client
- timeoutSec int64
- }
- func newClient(timeoutSec int64) (*Client, error) {
- client, err := dapr.NewClient()
- if err != nil {
- return nil, err
- }
- c := new(Client)
- c.client = client
- c.timeoutSec = timeoutSec
- return c, nil
- }
- func destroyClient(client *Client) {
- if client == nil {
- return
- }
- client.client.Close()
- client.client = nil
- client = nil
- }
- func (client *Client) InvokeGetMethod(appID string, methodName string) ([]byte, error) {
- return client.invokeMethod(appID, methodName, "get")
- }
- func (client *Client) InvokePostMethodJson(appID string, methodName string, jsonData []byte) ([]byte, error) {
- return client.invokeMethodJson(appID, methodName, "post", jsonData)
- }
- func (client *Client) InvokePutMethodJson(appID string, methodName string, jsonData []byte) ([]byte, error) {
- return client.invokeMethodJson(appID, methodName, "put", jsonData)
- }
- func (client *Client) InvokeDeleteMethod(appID string, methodName string) ([]byte, error) {
- return client.invokeMethod(appID, methodName, "delete")
- }
- func (client *Client) Publish(pubsubName string, topic string, content []byte) error {
- ctx, cancel := context.WithTimeout(context.Background(), time.Duration(client.timeoutSec)*time.Second)
- defer cancel()
- return client.client.PublishEvent(ctx, pubsubName, topic, content)
- }
- func (client *Client) invokeMethod(appID string, methodName string, verb string) ([]byte, error) {
- ctx, cancel := context.WithTimeout(context.Background(), time.Duration(client.timeoutSec)*time.Second)
- defer cancel()
- return client.client.InvokeMethod(ctx, appID, methodName, verb)
- }
- func (client *Client) invokeMethodJson(appID string, methodName string, verb string, jsonData []byte) ([]byte, error) {
- ctx, cancel := context.WithTimeout(context.Background(), time.Duration(client.timeoutSec)*time.Second)
- defer cancel()
- return client.client.InvokeMethodWithContent(ctx, appID, methodName, verb,
- &dapr.DataContent{
- Data: jsonData,
- ContentType: "application/json",
- })
- }
|