Matt Gifford aka coldfumonkeh | Consultant Developer
View Github Profile


Github Post-Receive Custom ColdFusion Hook

Aug 17, 2011

I love writing open source ColdFusion apps.. it helps to grow the community, possibly fill some gaps or requirements, and allows me to keep learning and experimenting with code and processes.

All of my open-source releases are pushed to riaforge.org (which should be EVERY ColdFusion developer's first place to look when searching for code. I've also been pushing the releases to Github for a number of reasons, but primarily to help raise the general public's awareness of ColdFusion (if they see projects actively being developed and pushed out, they know it's still very much alive and kicking) and for any developers who prefer to pull from the Git repository (should they wish to amend/edit/revise code and push back to me, that's always a bonus too!).

One thing I discovered when working on monkehTweet was that Github.com had a number of built in post-commit hooks - the list of available services looks quite extensive and seems to cover most common ticketing and project management tools.

You can access these hooks by clicking the admin button on the top header of your Github repos and selecting Service Hooks from the next menu.

Github Admin button

One of the options was to hook the account into Twitter, and following any updates or pushes to the repository, Github would post a status update through via the authenticated Twitter account.

Pretty impressive stuff, really easy to integrate and great for rapid updates and notifications. However, the status updates were quite generic:

Github Service Hook Twitter updates

You can see here that the name of the committer (pusher/updater) takes up a lot of space. Sure, my online handle is longer than others, but what if you could customise the messages posted out via the hook?

Well, it turns out you can do that too!

Payload

From the Service Hook menu, you can select the first option 'Post-Receive URLs' which allows you to specify your own endpoint to receive the commit information. Github deploys the data through an HTTP POST submission with the form name of 'payload', which submits a JSON value containing a whole load of details relating to not only the last commit but the repository in general.

Github Service Hooks

The returned JSON response looks like this:

{
  "after": "d1ba8626485e26bf87275de1aa3ff2a62a2e096d",
  "base_ref": null,
  "before": "3af75e4d216593e5b456e959559daaa5c138f315",
  "commits": [
    {
      "added": [
        "com\/coldfumonkeh\/githubPostReceive\/commit.cfc",
        "com\/coldfumonkeh\/githubPostReceive\/githubPayload.cfc",
        "com\/coldfumonkeh\/githubPostReceive\/payload.cfc",
        "com\/coldfumonkeh\/githubPostReceive\/repository.cfc"
      ],
      "author": {
        "email": "[email protected]",
        "name": "Matt Gifford aka coldfumonkeh",
        "username": "coldfumonkeh"
      },
      "distinct": true,
      "id": "d1ba8626485e26bf87275de1aa3ff2a62a2e096d",
      "message": "Components added to repos",
      "modified": [],
      "removed": [],
      "timestamp": "2011-08-17T05:11:30-07:00",
      "url": "https:\/\/github.com\/coldfumonkeh\/Github-Post-Receive-Hook\/commit\/d1ba8626485e26bf87275de1aa3ff2a62a2e096d"
    }
  ],
  "compare": "https:\/\/github.com\/coldfumonkeh\/Github-Post-Receive-Hook\/compare\/3af75e4...d1ba862",
  "created": false,
  "deleted": false,
  "forced": false,
  "pusher": {
    "name": "none"
  },
  "ref": "refs\/heads\/master",
  "repository": {
    "created_at": "2011\/08\/17 05:01:37 -0700",
    "description": "This ColdFusion component will read in your Github commit payload information and provide you with a detailed CFC or JSON string to work with to create custom hook information",
    "fork": false,
    "forks": 1,
    "has_downloads": true,
    "has_issues": true,
    "has_wiki": true,
    "homepage": "http:\/\/www.mattgifford.co.uk\/",
    "name": "Github-Post-Receive-Hook",
    "open_issues": 0,
    "owner": {
      "email": "[email protected]",
      "name": "coldfumonkeh"
    },
    "private": false,
    "pushed_at": "2011\/08\/17 05:11:53 -0700",
    "size": 96,
    "url": "https:\/\/github.com\/coldfumonkeh\/Github-Post-Receive-Hook",
    "watchers": 1
  }
}

This is superb, but I wanted a simple way of using this data to customise and use any way I wanted, so I created a ColdFusion component package to do just that!

Useage

In the page you saved as your custom service hook url, instantiate the component like so:


<cfset objPayload = createObject(
			'component',
			'com.coldfumonkeh.githubPostReceive.githubPayload'
		) />

<cfset payloadinfo = objPayload.receive(
			payloadSubmission	=	FORM,
			asObject		=	false,
			parseResults		=	true
		) />

The payloadSubmission argument is required and accepts the entire FORM structure from the submission. Setting asObject to true will generate the full payload information as a fully populated CFC for you:

Github Service Hook CFC Response

If asObject is set to false (default), you will simply receive the original JSON response as a string:

Github Service Hook JSON Response

You can set the third parameter (parseResults) to true, which will deserialize the JSON and return a structural representation of the output:

Github Service Hook Structural Response

So, with this custom hook feature in place, you can create bespoke emails to notify you of updates. You can store your commit details into a database. You can also use my monkehTweet Twitter wrapper to post your custom message to Twitter. The possibilities are endless.

Download It

You can download the Github Post-Receive Hook ColdFusion package from githubhook.riaforge.org or from the Github repository.

Happy customising!


Latest Blog Posts

Jul 16, 2020
Github Actions with CommandBox and TestBox
Read More
Jul 9, 2020
Azure pipelines with CommandBox and TestBox
Read More
Dec 23, 2019
CFML content moderation detection component library
Read More