git_pull request 추가

This commit is contained in:
2019-09-22 22:45:06 +09:00
parent 100a0cb9be
commit 09052ec21d
3 changed files with 84 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
/hook/gogs_key.php /hook/gogs_key.php
/hook/logs.txt /hook/logs.txt
/hook/list.json /hook/list.json
/hook/HashKey.php
+7
View File
@@ -0,0 +1,7 @@
<?php
namespace sammo\img_service;
class HashKey{
const KEY = '=HashKey=';
}
+76
View File
@@ -0,0 +1,76 @@
<?php
namespace sammo\img_service;
include(__DIR__.'/gogs_key.php');
header('Content-Type: application/json');
function hashPassword($salt, $password)
{
return hash('sha512', $salt.$password.$salt);
}
$req_hash = $_REQUEST['req']??'';
$req_time = $_REQUEST['time']??0;
$json_response = [
'result'=>false,
'reason'=>'Unknown'
];
if(!$req_hash){
$json_response['reason'] = 'no req';
die(json_encode($json_response));
}
if(!$req_time || !is_numeric($req_time)){
$json_response['reason'] = 'invalid time';
die(json_encode($json_response));
}
$key = HashKey::KEY;
if(strlen($key)<16){
$json_response['reason'] = 'key is too short';
die(json_encode($json_response));
}
$timestamp = time();
if(abs($timestamp - $req_time) > 300){
$json_response['reason'] = 'time difference';
die(json_encode($json_response));
}
$ans_hash = hashPassword(sprintf("%016x", $req_time), $key);
if($ans_hash != $req_hash){
$json_response['reason'] = 'hash mismatch';
die(json_encode($json_response));
}
exec("git pull -q 2>&1", $output);
exec("git ls-files -z ../icons", $raw_img_list);
$raw_img_list = explode("\x00", $raw_img_list[0]);
$img_list = [];
foreach ($raw_img_list as $path) {
$pos = strpos($path, '../icons/');
if($pos === false){
continue;
}
$path = substr($path, $pos + 9);
$pathinfo = pathinfo($path);
$dpath = $pathinfo['dirname'];
$basename = $pathinfo['basename'];
$filename = $pathinfo['filename'];
if(!\key_exists($dpath, $img_list)){
$img_list[$dpath] = [];
}
$img_list[$dpath][$filename] = $basename;
}
file_put_contents('list.json', json_encode($img_list));