1 Star 1 Fork 0

coldlook/webhooks

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
coldlook 提交于 2018-03-09 10:47 . readme
<?php
ini_set("display_errors", "On");
error_reporting(E_ALL | E_STRICT);
const PASSWORD='webhooks';
$name = addslashes($_REQUEST['name']);
$password = addslashes($_REQUEST['password']);
if ($password!=PASSWORD) {
echo false;
exit;
}
if(!$name){
echo 'no project name';
exit;
}
file_put_contents("/tmp/webhooks.log", date("Y-m-d H:i:s",time())." ".$name."\n",FILE_APPEND);
#执行部署版本仓库脚本(简单sh基本不会报错)
$result = exec("/usr/bin/sudo ".dirname(__FILE__)."/git.sh $name",$out,$status);
print_r($status);
exit;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/coldlook/webhooks.git
git@gitee.com:coldlook/webhooks.git
coldlook
webhooks
webhooks
master

搜索帮助