A really simple webhook receiver.
Go to file
2023-10-28 21:17:22 +01:00
config don't remember what this does lol 2023-10-28 21:17:22 +01:00
.gitignore closes #1, closes #3 update readme 2022-02-12 13:28:28 +00:00
config.json Add support for individually disabling signature verification 2021-08-14 01:02:36 +01:00
config.yml don't remember what this does lol 2023-10-28 21:17:22 +01:00
Dockerfile Add Dockerfile 2021-07-29 08:09:04 +01:00
example.sh don't remember what this does lol 2023-10-28 21:17:22 +01:00
go.mod don't remember what this does lol 2023-10-28 21:17:22 +01:00
go.sum don't remember what this does lol 2023-10-28 21:17:22 +01:00
gohookr.service Update service file to restart on app crash 2021-07-29 09:46:33 +01:00
main.go don't remember what this does lol 2023-10-28 21:17:22 +01:00
Makefile reload config on new webhook request 2022-02-12 14:07:11 +00:00
readme.md reload config on new webhook request 2022-02-12 14:07:11 +00:00

gohookr

A really simple webhook receiver, which listens at /webhooks/<webhook-name>.

Installation

After you install go:

make

Configuration

Default config path is /etc/gohookr.json. It can be overriden by setting environment variable CONFIG.

The config file will be re-read every request so service configs can be changed without restarting the service (unless you want to change the listening port).

Check below for an example configuration, which should tell you most of the things you need to know to configure gohookr.

You can test your config file by running

gohookr checkConfig

Signature Verification

Signature verificaiton is done using SHA256 HMACs. You must set which HTTP header gohookr will receive a signature from using the SignatureHeader key for each service. You should also specify a shared secret in the Secret key.

You may also need to specify a SignaturePrefix. For GitHub it would be sha256=.

Disable Signature Verification

You can disable signature verification by setting DisableSignatureVerification for a service to true.

You can disable signature verification for all services by setting environment variable NO_SIGNATURE_VERIFICATION to true.

Writing Commands

gohookr doesn't care what the command is as long as the Program is executable. You can specify extra arguments with the Arguments field. You can ask it to put the payload as the last argument by setting AppendPayload to true.

Writing Tests

gohookr can run test before running your script. Tests must be in the form of bash scripts. A non-zero return code is considered a fail and gohookr will run no further tests and will not deploy.

Tests are run in the order they're listed so any actions that need to be done before tests are run can simply be put in this section before the tests.

Example Config

Required config keys are ListenAddress and Services.

Requried keys per service are Script.Program, Secret, SignatureHeader.

An example config file can be found here but also below:

{
  "ListenAddress": "127.0.0.1:8654",
  "Services": {
    "test": {
      "Script": {
          "Program": "./example.sh",
          "AppendPayload": true
      },
      "DisableSignatureVerification": true,
      "Tests": [
        {
          "Program": "echo",
          "Arguments": [ "test" ]
        }
      ]
    },
    "fails_tests": {
      "Script": {
          "Program": "./example.sh",
          "AppendPayload": true
      },
      "Secret": "who_cares",
      "SignatureHeader": "X-Hub-Signature-256",
      "SignaturePrefix": "sha256=",
      "Tests": [
        {
          "Program": "false",
          "Arguments": []
        }
      ]
    }
  }
}