在運維管理中搭建一個可視化的版本控制和程式碼提交上線部署的平台是非常必要的。在這種情況下運維人員在linux的terminal中使用命令列或git工具來不是很方便。我們需要的方式是使用webhook自動部署或一個網頁介面化的操作面板來控制。
注意這個只是一個簡單demo不可作為生產環節使用
//读取webhookpost提交的数据$data = input('post.');$wdata = [ 'ref' => $data['ref'], 'before' => $data['before'], 'after' => $data['after'], 'compare_url' => $data['before'] ];//取出需要写入日志的数据if (isset($data['commits'][0])) { $wdata['commits_id'] = $data['commits'][0]['id']; $wdata['commits_message'] = $data['commits'][0]['message']; $wdata['commits_url'] = $data['commits'][0]['url']; $wdata['commits_author_name'] = $data['commits'][0]['author']['name']; $wdata['commits_author_email'] = $data['commits'][0]['author']['email']; $wdata['commits_author_username'] = $data['commits'][0]['author']['username']; $wdata['commits_committer_name'] = $data['commits'][0]['committer']['name']; $wdata['commits_committer_email'] = $data['commits'][0]['committer']['email']; $wdata['commits_committer_username'] = $data['commits'][0]['committer']['username']; }//如果日志目录不存在则创建这个是为了后期分析日志还是很有必要的//创建目录if (!is_dir("../logs/".$data['repository']['name'])) { shell_exec("mkdir ../logs/{$data['repository']['name']}"); }//创建文件if (!file_exists("../logs/{$data['repository']['name']}/".date("Y-m-d").".txt")) { shell_exec("touch ../logs/{$data['repository']['name']}/".date("Y-m-d").".txt"); }//写日志文件file_put_contents("../logs/{$data['repository']['name']}/".date("Y-m-d").".txt", implode("|||", $wdata), 2);//看我们的wwwroot目录有没有该项目我的wwwroot目录就是web应用的目录$path = "/data/wwwroot/".$data['repository']['name'];if (!is_dir($path)) { $commandStr = "cd /data/wwwroot/ && sudo /usr/bin/git clone http://[你自己的git账号]:[你自己的git密码]@git.sikukeji.com/".$data['repository']['full_name']; $outPut = shell_exec($commandStr); return Json::create($outPut); }else{ $commandStr = "cd /data/wwwroot/{$data['repository']['name']} && sudo /usr/bin/git pull"; $outPut = shell_exec($commandStr); return Json::create($outPut); }
$commandStr = "cd /data/wwwroot/ && sudo /usr/bin/git clone http://[你自己的git账号]:[你自己的git密码]@git.sikukeji.com/".$data['repository']['full_name'];
以上這句指令首先是切換工作目錄到/data/wwwroot 目錄下,這個就是我的web目錄。第二個指令sudo /usr/bin/git clone http://[你自己的git帳號]:[你自己的git密碼]@git.sikukeji.com/”.$data['repository']['full_name '];其實是執行了常規的git指令只。的webhook是沒有執行的,為什麼呢? 我們執行git時前面加了sudo。我們使用PHP的shell_exec執行時並沒有辦法輸入密碼。輸入密碼使用sudo
#因為我們的PHP執行其實是使用的www用戶。的語句是圖中www ALL=NOPASSWD:/usr/bin/git
這句話就是授權www使用者在所有電腦上以管理員身分執行git而不需要輸入密碼。
相關推薦:
以上是PHP寫webhook無法執行git的詳細內容。更多資訊請關注PHP中文網其他相關文章!