BARB ==== ![Barb logo](doc/logo-readme.png) Barb is a file-based API query tool that works nicely with version control and fits into UNIX terminal usage. ## Installation Barb is only available through `Cargo` at this time. To install the default version with JSONPath only, [install rust with rustup](https://rustup.rs).do like so: ``` cargo install barb ``` If you'd like to have JQ filtering; ensure the `libjq` is installed on your machine, then run: ``` cargo install barb --features jq ``` ## Example usage ``` barb [options] ... ``` ### CLI options - `-a, --all-headers`: Print all headers, request and response - `-b, --body`: Only print the response body - `-h, --headers`: Only print the response headers - `-r, --raw`: Don't format the response body - `-V, --version`: Print the software version - `-n, --no-color`: Don't use color output - `-f, --filter`: A JSON path to override any filters defined in the barb file - `--help`: Displays the help page ## Barb format Barb uses a custom file format to perform requests. Each file contains _one_ request and is started by a request preamble. Example: ``` #POST^http://my-blog.com/posts #Authorization: TOKEN {API_TOKEN} #$$.filter { "title": "A post", "content": "My pretty blog post" } ``` The preamble contains the directives relevant to performing the request, such as the method, URL and headers. The preamble _must end with an empty line_. ### Verb line The verb line indicates to _barb_ what sort of request to perform and where to. It follows this rigid format: ``` #^ ``` The `URL` supports variable substitution, but `METHOD` does not. Supported methods are: - GET - POST - PUT - DELETE - PATCH ### Headers Headers are formatted as follows: ``` #
:
``` The `HEADER VALUE` supports variable substitution, `HEADER NAME` does not. There can be none or many headers. ### Filter Barb supports [JSONPath](https://goessner.net/articles/JsonPath/) filtering by default, and optionally JQ. #### JSONPath Barb supports filtering of the response body with JSONPath. This has the following format: ``` #$ ``` The `PATH` supports variable substitution. Refer to the [JSONPath](https://goessner.net/articles/JsonPath/) for more information on the filters and their syntax. Filters can be named to populate execution variables by extracting values. Consider the following that will set the value of variable FOOBAR: ``` #FOOBAR$ ``` #### JQ Barb supports JQ filtering of the response body. This has the following format: ``` #| ``` The `JQ FILTER` supports variable substitution. Refer to the [JQ manual](https://stedolan.github.io/jq/manual/#Basicfilters) for more information on the filters and their syntax. Filters can be named to populate execution variables by extracting values. Consider the following that will set the value of variable FOOBAR: ``` #FOOBAR| ``` ### Body Anything after the preamble is considered as a body and will be send in the request for the following methods: - PUT - POST - PATCH Body does not support variable substitution. ### Variable substitution Barb can include environment variable values and variables defined in `.env` into the requests with the following placeholder format: ``` {VARIABLE NAME} ``` This allows to do the following: ``` $ export BASE_URL="http://127.0.0.1:8000" $ cat api-status.barb #GET^{BASE_URL}/api/v1/status $ barb api-status.barb 200 OK GET http://127.0.0.1:8000/api/v1/status { "status": "OK" } ``` ## Credits - Code: [Guillaume Pasquet](https://gitlab.com/guillaume54/) - Logo: [Harpoon Chain Icon](https://game-icons.net/1x1/lorc/harpoon-chain.html) by Lorc under CC By 3.0