Git操作自動觸發企業微信機器人webhook


[本文出自天外歸雲的博客園]

背景

在git做一些merge或push的操作,我們希望可以自動在企業微信群發送自定義的通知。

服務代碼

這里選用php作為網絡服務的開發語言,關鍵的代碼如下(githook函數就是對應webhook的服務函數):

<?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配置

在git項目Setting-Advanced Settings-Web Hooks中勾選Trigger(觸發條件)-Add Web Hook(把自己的網絡服務請求地址填上去,也就是上面的githook函數的請求地址):

請求url帶的參數key為企業微信機器人的webhook地址(在企業微信群創建企業微信機器人后即可看到該地址)。

至此就可以在指定trigger被觸發(比如有人進行了push操作)時,自動發送你服務函數中自定義的消息體到指定webhook的企業微信群。

注意:git操作觸發的消息內容在請求的post body中,而我們自己傳的key在請求的get參數中。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM