28 lines
575 B
Go
28 lines
575 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"forge.cadoles.com/Cadoles/emissary/internal/datastore"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func (c *Client) GetAgent(ctx context.Context, agentID datastore.AgentID) (*datastore.Agent, error) {
|
||
|
response := withResponse[struct {
|
||
|
Agent *datastore.Agent `json:"agent"`
|
||
|
}]()
|
||
|
|
||
|
path := fmt.Sprintf("/api/v1/agents/%d", agentID)
|
||
|
|
||
|
if err := c.apiGet(ctx, path, &response); err != nil {
|
||
|
return nil, errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
if response.Error != nil {
|
||
|
return nil, errors.WithStack(response.Error)
|
||
|
}
|
||
|
|
||
|
return response.Data.Agent, nil
|
||
|
}
|