什么時候檢測的hook默認(rèn)有三個:post-用于代碼進(jìn)行檢測
2021-10-15
我們都知道有一種世界上最好的語言。
但是在實(shí)際項(xiàng)目中php代碼在線測試,還要考慮歷史過程php代碼在線測試,避免出現(xiàn)一些導(dǎo)致程序無法運(yùn)行的錯誤,比如語法錯誤,所以需要對代碼進(jìn)行檢查。要實(shí)現(xiàn)這個目標(biāo),需要解決幾個問題:
什么時候檢測代碼,并拒絕異常代碼的提交
以什么做標(biāo)準(zhǔn)
通過什么工具來檢測
何時檢測
默認(rèn)有三個鉤子:post-pre-
其中:post-用于代碼提交完成后的操作,比如提交完成后發(fā)布代碼,或者做一些通知
pre-在代碼提交時使用,可以用來檢測代碼,如果有異常,可以阻止代碼提交
類似于 pre-,但它可以檢測多個分支。
這次使用前。有關(guān)它們的更多信息,請參閱:
什么標(biāo)準(zhǔn)
使用這個時間,詳細(xì)參考
部署步驟如下:
1. 服務(wù)端需要對應(yīng)的php版本,舉例
安裝php5.6
sudo apt-get purge `dpkg -l | grep php| awk '{print $2}' |tr "\n" " "`
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php5.6
sudo apt-get install php5.6-mbstring php5.6-mcrypt php5.6-mysql php5.6-xml
安裝composer
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
2.通過安裝
切換到git用戶安裝
su git
composer require overtrue/phplint -vvv
用什么工具檢測
Git hook支持任何可執(zhí)行語言,php、ruby、perl等,以這個為例
1. 進(jìn)入對應(yīng)項(xiàng)目的倉庫。默認(rèn)是軟連接。刪除它并重新創(chuàng)建它。注意,不要直接去刪除原來的hook。
rm hooks
mkdir hooks
chown git:git hooks
建個臨時文件夾
mkdir /tmp/gits
chmod 777 /tmp/gits
2.添加pre-,內(nèi)容如下,注意執(zhí)行權(quán)限
#!/usr/bin/env python
#coding:utf8
import re
import os
import sys
import fileinput
import subprocess
def checkphp(filename):
files = '/tmp/hooks/%s' % filename
cmd = '/home/git/vendor/bin/phplint %s' % files
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
status = p.wait()
result = p.stdout.read().split('\n\n')[-1]
info = re.sub("/tmp/hooks/","", result)
return status,info
def main():
tmp = []
for line in fileinput.input():
tmp.append(line.strip('\n'))
data = tmp[0].split()
old = data[0]
new = data[1]
state = 0
staged_cmd = 'git diff --name-status %s %s' % (old,new)
proc = subprocess.Popen(staged_cmd, shell=True, stdout=subprocess.PIPE)
with proc.stdout as std_out:
for staged in std_out.readlines():
staged = staged.split()
staged_file = staged[1]
tag = staged[0]
directory = os.path.dirname('/tmp/hooks/%s' % staged_file)
if not os.path.exists(directory):
os.makedirs(directory)
if tag != 'D' and re.match('.*.php', staged_file):
content = os.popen('git show %s:%s' % (new,staged_file)).read()
openfile = open('/tmp/hooks/%s' % staged_file, 'w')
openfile.write(content)
openfile.close()
status,info = checkphp(staged_file)
if status == 1:
print '=================== error ======================='
print info
state = 1
sys.exit(state)
if __name__ == '__main__':
main()
以上步驟完成后,就可以查看php的語法了