-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from circleci/logger
CIRCLE-11151: CLI can accept a GQL query from stdin and call api-service
- Loading branch information
Showing
8 changed files
with
211 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package client | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/circleci/circleci-cli/logger" | ||
"github.com/machinebox/graphql" | ||
) | ||
|
||
// Client wraps a graphql.Client and other fields for making API calls. | ||
type Client struct { | ||
endpoint string | ||
token string | ||
client *graphql.Client | ||
logger *logger.Logger | ||
} | ||
|
||
// NewClient returns a reference to a Client. | ||
// We also call graphql.NewClient to initialize a new GraphQL Client. | ||
// Then we pass the Logger originally constructed as cmd.Logger. | ||
func NewClient(endpoint string, token string, logger *logger.Logger) *Client { | ||
return &Client{ | ||
endpoint, | ||
token, | ||
graphql.NewClient(endpoint), | ||
logger, | ||
} | ||
} | ||
|
||
// Run will construct a request using graphql.NewRequest. | ||
// Then it will execute the given query using graphql.Client.Run. | ||
// This function will return the unmarshalled response as JSON. | ||
func (c *Client) Run(query string) (map[string]interface{}, error) { | ||
req := graphql.NewRequest(query) | ||
req.Header.Set("Authorization", c.token) | ||
|
||
ctx := context.Background() | ||
var resp map[string]interface{} | ||
|
||
c.logger.Debug("Querying %s with:\n\n%s\n\n", c.endpoint, query) | ||
err := c.client.Run(ctx, req, &resp) | ||
return resp, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.