一個簡單的例子學會github repository的webhook

github的webhook是個有用的功能,容許開發人員指定一個服務器的url。當開發者對github倉庫施加操做,好比提交代碼,建立issue時,github網站會自動向該url指定的服務器推送事件。藉助webhook,咱們能夠實現不少自動化流程。好比部署一個應用在AWS上,本地提交代碼後,github網站自動觸發webhook,調用AWS上應用的邏輯,在AWS上將本地提交的最新代碼用git pull抓取到AWS上並從新部署。node

下面咱們經過一個具體的例子來學習github webhook的用法。git

新建一個github倉庫,點擊Settings連接:github

在Payload url裏指定一個應用的url,該url對應的應用監聽github網站推送的事件。web

Content Type指定成application/json便於咱們在nodejs應用裏解析payload。 json

建立後點Add webhook保存,github會發送一個json paload到這個url指定的應用上。 服務器

在Recent Deliveries裏查看負載明細: app

負載明細以下:框架

咱們如今來作個實驗,把webhook指定的url對應的應用設置一個斷點,而後在github倉庫裏新建一個issue:frontend

斷點當即觸發了。學習

從調試器裏能觀察到這個create issue事件的全部負載。

我部署在AWS上監聽github webhook框架推送github repository發生變化的事件的應用源代碼,能夠從個人github上獲取: https://github.com/i042416/webhookstudy

代碼很短,個人同事Haytham寫的:

var http = require('http')
var createHandler = require('github-webhook-handler')
var handler = createHandler({ path: '/push', secret: 'dis-koi' })
 
function run_cmd(cmd, args, callback) {
    var spawn = require('child_process').spawn;
    var child = spawn(cmd, args);
    var resp = "";

    child.stdout.on('data', function(buffer) { resp += buffer.toString(); });
    child.stdout.on('end', function() { callback (resp) });
}

http.createServer(function (req, res) {
    handler(req, res, function (err) {
        res.statusCode = 404
        res.end('no such location')
    })
}).listen(8083)
 
handler.on('error', function (err) {
    console.error('Error:', err.message);
})
 
handler.on('push', function (event) {
    switch(event.payload.repository.name)
    {
        case 'githubHook':
            //this push event is from my persional github account, as SAP github.tool's github hook do not work, so I use this one to test push event
            console.log("reveive a push event from githubHook");
            run_cmd('sh', ['./webshop.sh'], function(text){ console.log(text) });
            break;
        case 'frontend-web':
            //push event from frontend-web
            console.log("reveive a push event from frontend-web");
            run_cmd('sh', ['./webshop.sh'], function(text){ console.log(text) });
            break;
        case 'backend-ms':
            //push event from backenf-ms
            console.log("reveive a push event from backend-ms");
            run_cmd('sh', ['./backend_ms.sh'], function(text){ console.log(text) });
            break;
    }
})
 
handler.on('issues', function (event) {
    console.log('Received an issue event for %s action=%s: #%d %s',
        event.payload.repository.name,
        event.payload.action,
        event.payload.issue.number,
        event.payload.issue.title);
})

要獲取更多Jerry的原創文章,請關注公衆號"汪子熙":

相關文章
相關標籤/搜索