1 Star 0 Fork 0

xiaoxuan/webhook

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hook.php 2.63 KB
一键复制 编辑 原始数据 按行查看 历史
james.xue 提交于 2019-11-21 19:30 . 'pull'
<?php
//git webhook 自动部署脚本
//项目存放物理路径,第一次clone时,必须保证该目录为空
//$savePath = "/data/wwwroot/webhook/";
//$gitPath = "https://gitee.com/XiaoXue6/webhook.git";//代码仓库
//$email = "[email protected]";//用户仓库邮箱
//$name = "james.xue";//仓库用户名,一般和邮箱一致即可
$isClone = true;//设置是否已经Clone到本地,true:已经clone,直接pull,false:先clone.
//如果已经clone过,则直接拉去代码
if ($isClone) {
$requestBody = file_get_contents("php://input");
file_put_contents('git_log.txt', json_encode($requestBody), JSON_UNESCAPED_UNICODE);
if (empty($requestBody)) {
die('send fail');
}
//解析Git服务器通知过来的JSON信息
$content = json_decode($requestBody, true);
//若是主分支且提交数大于0
if ($content['ref']=='refs/heads/master' && $content['total_commits_count']>0) {
if(function_exists("shell_exec")){
$res = PHP_EOL."-------- pull start --------".PHP_EOL;
$git = "cd /data/wwwroot/webhook/ && git pull origin https://gitee.com/XiaoXue6/webhook.git";
$shell = exec("{$git}");
// $shell = exec("{$git}");
// $shell = shell_exec("{$git}");
// $res .= $shell;//拉去代码
$res_log = '-------------------------'.PHP_EOL;
$res_log .= $content['user_name'] . ' 在 ' . date('Y-m-d H:i:s') . ' 向 ' . $content['repository']['name'] . ' 项目的 ' . $content['ref'] . ' 分支push了 ' . $content['total_commits_count'] . ' 个commit:'.$content['after'];
$res_log .= $res;
$res_log .= "command :".$git.PHP_EOL;
// $res_log .= "result :".var_dump($shell).PHP_EOL;
$res_log .= "-------- pull end --------".PHP_EOL;
$res_log .= "下拉完成".PHP_EOL;
}else{
$res_log = '系统配置:shell_exec函数不可用';
}
file_put_contents("git-webhook_log.txt", $res_log, FILE_APPEND);//写入日志到log文件中
}else{
file_put_contents("webhook_log.txt", "没有改动文件", FILE_APPEND);//写入日志到log文件中
}
}else {
$res = "clone start --------".PHP_EOL;
//注:在这里需要设置用户邮箱和用户名,不然后面无法拉去代码
// $res .= shell_exec("git config --global user.email {$email}}").PHP_EOL;
// $res .= shell_exec("git config --global user.name {$name}}").PHP_EOL;
$res .= exec("cd /data/wwwroot && git clone {$gitPath}").PHP_EOL;
$res .= "clone end --------".PHP_EOL;
file_put_contents("git-webhook_log.txt", $res, FILE_APPEND);//写入日志到log文件中
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/XiaoXue6/webhook.git
[email protected]:XiaoXue6/webhook.git
XiaoXue6
webhook
webhook
master

搜索帮助