[本文出自天外歸雲的博客園]php
在git作一些merge或push的操做,咱們但願能夠自動在企業微信羣發送自定義的通知。git
這裏選用php做爲網絡服務的開發語言,關鍵的代碼以下(githook函數就是對應webhook的服務函數):web
<?php class tools extends CI_Controller { function __construct() { parent::__construct(false); $this->load->helper('url'); $dir = APPPATH . "config/conf"; $confFile = "{$dir}/autotestconf.json"; $this->load->library('conffile'); $this->confData = $this->conffile->getConfData($confFile); $this->nav_top = $this->conffile->get_nav_top($this->confData); $this->load->database(); $this->load->model("tools/tools_model"); } // 代碼CodeReview自動企業微信報告服務等githook服務 // 請求路徑:http://localhost/cloud/tools/githook function githook() { $key = $this->input->get('key'); $post_data = file_get_contents("php://input"); $post_data_std_class = json_decode($post_data); $curl = curl_init(); if ($post_data_std_class->object_kind == "merge_request") { if ($post_data_std_class->object_attributes->target_branch != "master") { return; } $commitUrl = $post_data_std_class->object_attributes->url; $postFields = "{\r\n \"msgtype\": \"text\",\r\n \"text\": {\r\n \"content\": \"" . $post_data_std_class->user->username . " " . $post_data_std_class->object_attributes->action . " Merge Request " . $commitUrl . "\n\nFrom " . $post_data_std_class->object_attributes->source_branch . " To " . $post_data_std_class->object_attributes->target_branch . "\nTitle: " . $post_data_std_class->object_attributes->title . "\nDescription:\n" . $post_data_std_class->object_attributes->description . "\"\r\n }\r\n}"; } else if ($post_data_std_class->object_kind == "push") { $branch = substr($post_data_std_class->ref, 11); if ($branch != "master") { return; } $commitMessage = "【".$post_data_std_class->commits[0]->message."】"; $http_url = substr($post_data_std_class->repository->git_http_url, 0, -4); $commitUrl = $http_url . "/commits/" . $branch; $postFields = "{\r\n \"msgtype\": \"text\",\r\n \"text\": {\r\n \"content\": \"" . $post_data_std_class->user_name . " Push To " . $commitUrl . "\n\n" . $commitMessage . " \"\r\n }\r\n}"; } curl_setopt_array($curl, array( CURLOPT_URL => "http://in.qyapi.weixin.qq.com/cgi-bin/webhook/send?key=" . $key, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => $postFields, CURLOPT_HTTPHEADER => array( "Cache-Control: no-cache", ), CURLOPT_SSL_VERIFYHOST => 0, CURLOPT_SSL_VERIFYPEER => 0, )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; } } }
在git項目Setting-Advanced Settings-Web Hooks中勾選Trigger(觸發條件)-Add Web Hook(把本身的網絡服務請求地址填上去,也就是上面的githook函數的請求地址):json
請求url帶的參數key爲企業微信機器人的webhook地址(在企業微信羣建立企業微信機器人後便可看到該地址)。api
至此就能夠在指定trigger被觸發(好比有人進行了push操做)時,自動發送你服務函數中自定義的消息體到指定webhook的企業微信羣。微信
注意:git操做觸發的消息內容在請求的post body中,而咱們本身傳的key在請求的get參數中。網絡