-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add raw query and custom command functionality
- Loading branch information
1 parent
d37f1b2
commit e350aea
Showing
8 changed files
with
467 additions
and
1 deletion.
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
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,47 @@ | ||
## lagoon custom | ||
|
||
Run a custom command | ||
|
||
### Synopsis | ||
|
||
Run a custom command. | ||
This command alone does nothing, but you can create custom commands and put them into the custom commands directory, | ||
these commands will then be available to use. | ||
The directory for custom commands uses ${XDG_DATA_HOME}/lagoon-commands. | ||
If XDG_DATA_HOME is not defined, a directory will be created with the defaults, this command will output the location at the end. | ||
|
||
|
||
``` | ||
lagoon custom [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for custom | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--config-file string Path to the config file to use (must be *.yml or *.yaml) | ||
--debug Enable debugging output (if supported) | ||
-e, --environment string Specify an environment to use | ||
--force Force yes on prompts (if supported) | ||
-l, --lagoon string The Lagoon instance to interact with | ||
--no-header No header on table (if supported) | ||
--output-csv Output as CSV (if supported) | ||
--output-json Output as JSON (if supported) | ||
--pretty Make JSON pretty (if supported) | ||
-p, --project string Specify a project to use | ||
--skip-update-check Skip checking for updates | ||
-i, --ssh-key string Specify path to a specific SSH key to use for lagoon authentication | ||
--ssh-publickey string Specify path to a specific SSH public key to use for lagoon authentication using ssh-agent. | ||
This will override any public key identities defined in configuration | ||
-v, --verbose Enable verbose output to stderr (if supported) | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lagoon](lagoon.md) - Command line integration for Lagoon | ||
|
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,116 @@ | ||
# Introduction | ||
|
||
Lagoon allows users to create simple custom commands that can execute raw graphql queries or mutations. The response of these commands will be the JSON response from the API, so tools like `jq` can be used to parse the response. | ||
|
||
These commands are meant for simple tasks, and may not perform complex things very well. In some cases, the defaults of a flag may not work as you intend them to. | ||
|
||
> **_NOTE:_** as always, be careful with creating your own commands, especially mutations, as you must be 100% aware of the implications. | ||
## Location | ||
|
||
Custom commands must be saved to `${HOME}/.lagoon-cli/commands/${COMMAND_NAME}.yml` | ||
|
||
## Layout of a command file | ||
|
||
An example of the command file structure is as follows | ||
```yaml | ||
name: project-by-name | ||
description: Query a project by name | ||
query: | | ||
query projectByName($name: String!) { | ||
projectByName(name: $name) { | ||
id | ||
name | ||
organization | ||
openshift{ | ||
name | ||
} | ||
environments{ | ||
name | ||
openshift{ | ||
name | ||
} | ||
} | ||
} | ||
} | ||
flags: | ||
- name: name | ||
description: Project name to check | ||
variable: name | ||
type: String | ||
required: true | ||
``` | ||
* `name` is the name of the command that the user must enter, this should be unique | ||
* `description` is some helpful information about this command | ||
* `query` is the query or mutation that is run | ||
* `flags` allows you to define your own flags | ||
* `name` is the name of the flag, eg `--name` | ||
* `description` is some helpful information about the flag | ||
* `variable` is the name of the variable that will be passed to the graphql query of the same name | ||
* `type` is the type, currently only `String`, `Int`, `Boolean` are supported | ||
* `required` is if this flag is required or not | ||
* `default` is the default value of the flag if defined | ||
* `String` defaults to "" | ||
* `Int` defaults to 0 | ||
* `Boolean` defaults to false. | ||
|
||
# Usage | ||
|
||
Once a command file has been created, they will appear as `Available Commands` of the top level `custom` command, similarly to below | ||
|
||
``` | ||
$ lagoon custom | ||
Usage: | ||
lagoon custom [flags] | ||
lagoon custom [command] | ||
|
||
Aliases: | ||
custom, cus, cust | ||
|
||
Available Commands: | ||
project-by-name Query a project by name | ||
|
||
``` | ||
You can then call this command like so, and see the output of the command is the API JSON response | ||
``` | ||
$ lagoon custom project-by-name --name lagoon-demo-org | jq | ||
{ | ||
"projectByName": { | ||
"environments": [ | ||
{ | ||
"name": "development", | ||
"openshift": { | ||
"name": "ui-kubernetes-2" | ||
} | ||
}, | ||
{ | ||
"name": "main", | ||
"openshift": { | ||
"name": "ui-kubernetes-2" | ||
} | ||
}, | ||
{ | ||
"name": "pr-15", | ||
"openshift": { | ||
"name": "ui-kubernetes-2" | ||
} | ||
}, | ||
{ | ||
"name": "staging", | ||
"openshift": { | ||
"name": "ui-kubernetes-2" | ||
} | ||
} | ||
], | ||
"id": 180, | ||
"name": "lagoon-demo-org", | ||
"openshift": { | ||
"name": "ui-kubernetes-2" | ||
}, | ||
"organization": 1 | ||
} | ||
} | ||
|
||
``` |
Oops, something went wrong.