forked from kwangchin/GitHubHook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.GitHubHook.php
245 lines (205 loc) · 6.44 KB
/
class.GitHubHook.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
// error_reporting(0);
error_reporting(E_ALL);
class IP4Filter {
private static $_IP_TYPE_SINGLE = 'single';
private static $_IP_TYPE_WILDCARD = 'wildcard';
private static $_IP_TYPE_MASK = 'mask';
private static $_IP_TYPE_CIDR = 'CIDR';
private static $_IP_TYPE_SECTION = 'section';
private $_allowed_ips = array();
public function __construct($allowed_ips) {
$this->_allowed_ips = $allowed_ips;
}
public function check($ip, $allowed_ips = null) {
$allowed_ips = $allowed_ips ? $allowed_ips : $this->_allowed_ips;
foreach ($allowed_ips as $allowed_ip) {
$type = $this->_judge_ip_type($allowed_ip);
$sub_rst = call_user_func(array($this, '_sub_checker_' . $type), $allowed_ip, $ip);
if ($sub_rst) {
return true;
}
}
return false;
}
private function _judge_ip_type($ip) {
if (strpos($ip, '*')) {
return self :: $_IP_TYPE_WILDCARD;
}
if (strpos($ip, '/')) {
$tmp = explode('/', $ip);
if (strpos($tmp[1], '.')) {
return self :: $_IP_TYPE_MASK;
} else {
return self :: $_IP_TYPE_CIDR;
}
}
if (strpos($ip, '-')) {
return self :: $_IP_TYPE_SECTION;
}
if (ip2long($ip)) {
return self :: $_IP_TYPE_SINGLE;
}
return false;
}
private function _sub_checker_single($allowed_ip, $ip) {
return (ip2long($allowed_ip) == ip2long($ip));
}
private function _sub_checker_wildcard($allowed_ip, $ip) {
$allowed_ip_arr = explode('.', $allowed_ip);
$ip_arr = explode('.', $ip);
for ($i = 0; $i < count($allowed_ip_arr); $i++) {
if ($allowed_ip_arr[$i] == '*') {
return true;
} else {
if (false == ($allowed_ip_arr[$i] == $ip_arr[$i])) {
return false;
}
}
}
}
private function _sub_checker_mask($allowed_ip, $ip) {
list($allowed_ip_ip, $allowed_ip_mask) = explode('/', $allowed_ip);
$begin = (ip2long($allowed_ip_ip) & ip2long($allowed_ip_mask)) + 1;
$end = (ip2long($allowed_ip_ip) | (~ ip2long($allowed_ip_mask))) + 1;
$ip = ip2long($ip);
return ($ip >= $begin && $ip <= $end);
}
private function _sub_checker_section($allowed_ip, $ip) {
list($begin, $end) = explode('-', $allowed_ip);
$begin = ip2long($begin);
$end = ip2long($end);
$ip = ip2long($ip);
return ($ip >= $begin && $ip <= $end);
}
private function _sub_checker_CIDR($CIDR, $IP) {
list ($net, $mask) = explode('/', $CIDR);
return ( ip2long($IP) & ~((1 << (32 - $mask)) - 1) ) == ip2long($net);
}
}
/**
* GitHub Post-Receive Deployment Hook.
*
* @author Chin Lee <kwangchin@gmail.com>
* @copyright Copyright (C) 2012 Chin Lee
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
* @version 1.0
*/
class GitHubHook
{
/**
* @var string Remote IP of the person.
* @since 1.0
*/
private $_remoteIp = '';
// Tony patch
// public $log_file = '/var/log/github_hook.log';
public $log_file = 'e:/tmp/log.log';
/**
* @var object Payload from GitHub.
* @since 1.0
*/
private $_payload = '';
/**
* @var boolean Log debug messages.
* @since 1.0
*/
private $_debug = TRUE;
/**
* @var array Branches.
* @since 1.0
*/
private $_branches = array();
/**
* @var array GitHub's IP addresses for hooks.
* @since 1.1
*/
private $_ips = array('207.97.227.253', '50.57.128.197', '108.171.174.178', '50.57.231.61', '204.232.175.64/27', '192.30.252.0/22', '127.0.0.1');
/**
* Constructor.
* @since 1.0
*/
function __construct() {
/* Support for EC2 load balancers */
if (
isset($_SERVER['HTTP_X_FORWARDED_FOR']) &&
filter_var($_SERVER['HTTP_X_FORWARDED_FOR'], FILTER_VALIDATE_IP)
) {
$this->_remoteIp = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$this->_remoteIp = $_SERVER['REMOTE_ADDR'];
}
if (isset($_POST['payload'])) {
$this->_payload = json_decode($_POST['payload']);
} else {
$this->_notFound('Payload not available from: ' . $this->_remoteIp);
}
}
/**
* Centralize our 404.
* @param string $reason Reason of 404 Not Found.
* @since 1.1
*/
private function _notFound($reason = NULL) {
if ($reason !== NULL) {
$this->log($reason);
}
header('HTTP/1.1 404 Not Found');
echo '404 Not Found.';
// print "<br>Reason => $reason<br>Debug: ".print_r($this->_debug)."<br>Log file => $this->log_file";
exit;
}
/**
* Enable log of debug messages.
* @since 1.0
*/
public function enableDebug() {
$this->_debug = TRUE;
}
/**
* Add a branch.
* @param string $name Branch name, defaults to 'master'.
* @param string $title Branch title, defaults to 'development'.
* @param string $path Relative path to development directory, defaults to '/var/www/'.
* @param array $author Contains authorized users' email addresses, defaults to everyone.
* @since 1.0
*/
public function addBranch($name = 'master', $title = 'development', $path = '/var/www/', $author = array()) {
$this->_branches[] = array(
'name' => $name,
'title' => $title,
'path' => $path,
'author' => $author
);
}
/**
* Log a message.
* @param string $message Message to log.
* @since 1.0
*/
public function log($message) {
if ($this->_debug) {
file_put_contents($this->log_file, '[' . date('Y-m-d H:i:s') . '] - ' . $message . PHP_EOL, FILE_APPEND);
// print "<br>Result from fps is: $i<br>";
}
}
/**
* Deploys.
* @since 1.0
*/
public function deploy() {
$IPfilter = New IP4Filter($this->_ips);
// if (in_array($this->_remoteIp, $this->_ips)) {
if ($IPfilter->check($this->_remoteIp)) {
foreach ($this->_branches as $branch) {
if ($this->_payload->ref == 'refs/heads/' . $branch['name']) {
$this->log('Deploying to ' . $branch['title'] . ' server');
$_output = shell_exec('./deploy.sh ' . $branch['path'] . ' ' . $branch['name'] . ' 2>&1');
$this->log($_output);
}
}
} else {
$this->_notFound('IP address not recognized: ' . $this->_remoteIp);
}
}
}