利用WebHook实现自动部署Git代码

目录

类型

coding 钩子
github 钩子

环境

服务端:阿里云虚拟主机(Ubuntu16.04)
coding 自动部署 WebHook3.0
Windows 10 开发环境

部署

服务器虚拟主机配置
coding 代码托管配置
本地代码提交

服务端配置

1、创建web服务器用户目录

这里以www用户为例,不同的环境请根据自己环境自行修改

 sudo mkdir /var/www/.ssh
 sudo chown -R www:www /var/www/.ssh/

2、生成公钥(两个)

git用户公钥(个人公钥通用)
部署公钥(部署公钥用以部署项目, 只针对项目)

其实配置一个个人公钥就可以,也就是通用公钥了

3、用户公钥(

用于git clone时认证权限

 ssh-keygen -t rsa -C "Tinywan@gmail.com"
 # 然后一直回车就行
 # 生成的文件通常是 /root/.ssh/id_rsa,如果非root用户

请查看提示上的路径
4、部署公钥(非必需)

 sudo -Hu www ssh-keygen -t rsa # 请选择 "no passphrase",一直回车下去
 #sudo cat /var/www/.ssh/id_rsa.pub # 这个只是针对单个项目的
 sudo cat /home/www/.ssh/id_rsa.pub # 查看生成的密钥内容,复制全部
-Hu www 命令:	
-u 代表切换到哪一个用户,这里说的是www
-H 代表切换HOME环境变量的值,也就是password文件中www用户对应的home目录

5、准备钩子文件

在你的站点目录建立一个目录hook,我这里站点目录为:/home/www/web/,所有hook文件路径为:/home/www/web/hook,在hook目录新建index.php文件

参考demo

<?phperror_reporting(1);// 生产环境web目录$web_path = '/home/www/web/hook/auto-test';
$user = 'www';
$group = 'www';//作为接口传输的时候认证的密钥$valid_token = '1954FD0D6';//调用接口被允许的ip地址$valid_ip = array('192.168.14.2','192.168.14.1','192.168.14.128');
$client_ip = $_SERVER['REMOTE_ADDR'];

$fs = fopen('./auto_hook.log', 'a');
fwrite($fs, 'Request on ['.date("Y-m-d H:i:s").'] from ['.$client_ip.']'.PHP_EOL);

$json_content = file_get_contents('php://input');
$data = json_decode($json_content, true);

fwrite($fs, 'Data: '.json_encode($data).PHP_EOL);
fwrite($fs, '======================================================================='.PHP_EOL);
$fs and fclose($fs);if (empty($data['token']) || $data['token'] !== $valid_token) {    exit('aInvalid token request');
}

$repo = $data['repository']['name'];

$cmd = "cd $web_path && git pull";
shell_exec($cmd);
在hook目录下建立一个自己coding 项目名(只是为了统一,你可以新建一个其他的):auto-test

最后的目录结构为:

├── hook
│   ├── auto-test
│   │   
│   └── index.php

6、修改目录权限

chmod -R u+x /home/www/web/hook

7、域名解析

解析一个域名到Linux系统,使用Nginx做一个代理,nginx虚拟主机配置信息如下:

server {    
server_name  auto.tinywan.com;    
set $root_path /home/www/web/hook;   
 root $root_path;    
 location / {            
     if (!-e $request_filename) {                    
         rewrite  ^(.*)$  /index.php?s=/$1  last;
      }
 }    
 location ~ \.php$ {        
 fastcgi_pass   unix:/var/run/php7.1.9-fpm.sock;        
 fastcgi_index  index.php;        
 fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;   include        fastcgi_params;       
 fastcgi_buffer_size 128k;        
 fastcgi_buffers 4 256k;        
 fastcgi_busy_buffers_size 256k;        
 fastcgi_connect_timeout 10000;       
 fastcgi_send_timeout 6000;        
 fastcgi_read_timeout 6000;
    }
}

以上域名 auto.tinywan.com已经被A记录到Linux外网IP了,阿里云域名解析

8、验证的hook钩子目录的index.php文件可以访问

访问:http://auto.tinywan.com/index.php输出:error request // 表示可以正常访问
9、配置git

 git config --global user.name "Tinywan"
 git config --global user.email "Tinywan@gmail.com" # 邮箱请与conding上一致

10、配置公钥

复制:/home/www.ssh/id_rsa.pub内容到个人设置页https://coding.net/user/account/setting/keys,【新增公钥】添加即可

id_rsa.pub 文件内容

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABBBABAQChrujULy3U56wS5jLJ0rAJMtv2MNABhbqU1kaiiiyUGFz9+Ndwel8o4dW4whmFRWBodDppc2gpDcF/UM6v7DLzHYOd/38BDp0vRz+zhgZ0BCfyeUV958tpTI6uQyjFil3jwDrKvDqeS4eVnb1fJZfnk/utcFCkVSjhae1sBqM10bkaQmsmwLKr7fN6DeUox9nYkknDqaD645wYplW/qFAXItHOaaZzgTpbAuEb4uss0BCtiutsDFsJwcuXlAsvg4xwsTmagdlz+FhTksCnGALcB10kaz0EY2g9NOHVCqQ4QU4TyNmUVwBHYfj6LAGALO4NAHfwErzKgqfRhBLzDsKB www@Tinywan

11、配置 WebHook

选择项目(auto-test) > 设置 > 【WebHook】 > 【新建 WebHook】 > 粘贴你的hook/index.php所在的网址:http://auto.tinywan.com/index.php, 令牌可选,但是建议写上。

稍过几秒刷新页面查看hook状态,显示为绿色勾就OK了

12、服务端初始化项目

我们需要先在服务器上clone一次,以后都可以实现自动部署了

sudo -Hu www git clone https://git.coding.net/Tinywan/auto-test.git /home/www/web/hook/auto-test/ --depth=1

13、Windows客户端

(1)开发端也克隆一份代码

$ git clone https://git.coding.net/Tinywan/auto-test.gitCloning into 'auto-test'...
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.Checking connectivity... done.

(2)新建文件index.php

<?phpecho "Hell Coding";

(3)提交本地的代码

$ git add ./$ git commit -m "test hook"$ git push -u origin master

(4)查看服务端文件是否已经更新

├── auto-test
└── index.php

发现目标目录里就刚才提交的index.php文件了

立即访问:http://auto.tinywan.com/auto-test/index.php

钩子file_get_contents(‘php://input’)接受的文件内容

{"ref": "refs/heads/master",
"before": "90d67c99a3077a7a6823c50a95275812471ecf47",
"commits": [
{"committer": 
{"name": "Tinywan","email": "756684177@qq.com"},
"web_url": "https://coding.net/u/Tinywan/p/auto-test/git/commit/3e55e1c6aa0d064ba4fede1556f0e2bb14c0bed3",
"short_message": "json_encode($_SERVER)\n",
"sha": "3e55e1c6aa0d064ba4fede1556f0e2bb14c0bed3"}
],
"after": "3e55e1c6aa0d064ba4fede1556f0e2bb14c0bed3","event": "push","repository": {"owner": 
{"path": "/u/Tinywan","web_url": "https://coding.net/u/Tinywan","global_key": "Tinywan","name": "Tinywan","avatar": "/static/fruit_avatar/Fruit-14.png"},"https_url": "https://git.coding.net/Tinywan/auto-test.git","web_url": "https://coding.net/u/Tinywan/p/auto-test","project_id": "3351025","ssh_url": "git@git.coding.net:Tinywan/auto-test.git","name": "auto-test","description": "auto-test"},"user": {"path": "/u/Tinywan","web_url": "https://coding.net/u/Tinywan","global_key": "Tinywan","name": "Tinywan",
"avatar": "/static/fruit_avatar/Fruit-14.png"},
"token": "1954FD0D6"
}

可能会遇到的问题

1、在网上按照步骤一步一步将公钥和部署公钥配置完成点击跳转参考地址
2、coding上可以成功ping的通,可是阿里云Linux服务器上面没有反应(文件没有自动部署呀)
首先判断hook脚本有没有执行。所以将脚本换成简单的脚本测试
看看是不是文件没有权限或者钩子文件有问题

token 配置无效问题
我已经在这里讨论了配置了token,但是接受不到

token 生成技巧

如:https://www.tinywan.com/进行md5加密:1989BC88338CB4DABEF20BD7C54FD0D6

配置一个共有的webhooks

为了不让每个项目都新建一个钩子

web目录结构

.
├── webhooks-test
│   └── index.php├── hook
│   └── auto_hook.log

nginx 配置
在这里插入图片描述
coding设置任何一个项目(webhooks-test)的hook地址为

http://webhook.tinywan.com/index.php

本地提交代码即可测试

Github自动部署

对于个人项目而言,有的人项目托管在github上,线上访问地址放在自有服务器上。平时自己开发的话,要先push到github,在到自己服务器上pull下来(服务器上装了git),特别麻烦。

github有个webhook,可以在push之后触发,这样我们就可以利用钩子出发服务器脚本,执行pull命令拉取最新代码了。

配置这个钩子,有几点坑需要提一下

1、我们服务器上的web文件,大多是用户和用户组都是www,所以平时运行那些PHP文件,也都是www用户运行的。那么我们就必须以www用户来吧代码仓库clone下来,
然后以www的身份去生成ssh密钥

ssh-keygen -t rsa -C "your_email@youremail.com"

生成之后记得把公钥放在github里的项目配置里。

2、github里有两种请求方式可供选择,一种是表单式post,我们可以正常用$_POST接收,还有一种是json式post,PHP只能用php://input去接收了,每次调取url都是带着密钥的,你需要判断密钥对,在pull,否则任何人都可以pull了
下面是github密钥的算法PHP版本

钩子代码
在这里插入图片描述
3、由于执行shell命令涉及到 php的exec方法,默认是不开启这个方法的,需要你去php.ini开启它
下图是钩子访问url的时候的返回数据

Headers

Connection: keep-alive
Content-Length: 22Content-Type: text/html; charset=UTF-8Date: Sun, 22 Jul 2018 02:26:23 GMTServer: Tinywan-server/1.0Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
Transfer-Encoding: chunkedVary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: deny
X-XSS-Protection: 1; mode=block
Body

aInvalid token request

为什么我的提交记录不被github记录呢,为什么无法点亮小绿点?

git config --global user.name "your name" //配置用户名和github名称一致 否则不计入提交次数
git config --global user.email "your email" //配置emai
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值