Working with pow Files

Starting Kapow! using a pow file

A pow file is just a bash script, where you make calls to the kapow route command.

1
$ kapow server example.pow

With the example.pow:

1
2
3
4
5
6
7
8
9
$ cat example.pow
#
# This is a simple example of a pow file
#
echo '[*] Starting my script'

# We add 2 Kapow! routes
kapow route add /my/route -c 'echo hello world | kapow set /response/body'
kapow route add -X POST /echo -c 'kapow get /request/body | kapow set /response/body'

Note

Kapow! can be fully configured using just pow files

Load More Than One pow File

You can load more than one pow file at time. This can help you keep your pow files tidy.

1
2
3
$ ls pow-files/
example-1.pow   example-2.pow
$ kapow server <(cat pow-files/*.pow)

Writing Multiline pow Files

If you need to write more complex actions, you can leverage multiline commands:

1
2
3
4
5
$ cat multiline.pow
kapow route add /log_and_stuff - <<-'EOF'
     echo this is a quite long sentence and other stuff | tee log.txt | kapow set /response/body
     cat log.txt | kapow set /response/body
EOF

Warning

Be aware of the “-“ at the end of the kapow route add command. It tells kapow route add to read commands from stdin.

Warning

If you want to learn more about multiline usage, see: Here Doc

Keeping Things Tidy

Sometimes things grow, and keeping things tidy is the only way to mantain the whole thing.

You can distribute your endpoints in several pow files. And you can keep the whole thing documented in one html file, served with Kapow!.

1
2
3
4
5
6
7
8
9
$ cat index.pow
#!/usr/bin/env bash

kapow route add / - <<-'EOF'
    cat howto.html | kapow set /response/body
EOF

source ./info_stuff.pow
source ./other_endpoints.pow

As you can see, the pow files can be imported into another pow file using source. In fact, a pow file is just a regular shell script.

Debugging scripts

Kapow! redirect standard output and standard error of the pow file given on server startup to its own standard output and error, so you can use set -x at the beginning of the script in order to be able to see all the commands expanded and usethat information for debugging.

In order to be able to debug user request executions, the server subcommand has a --debug option flag that redirects the script standard output and standard error to Kapow! standard output, so you can use set -x at the beginning of the script the same way as in pow files.

$ cat withdebug.pow
#!/usr/bin/env bash

kapow route add / - <<-'EOF'
    set -x
    echo "This will be seen in the log"
    echo "Hi HTTP" | kapow set /response/body
EOF

$ kapow server --debug withdebug.pow