Upload 4 files
Browse files- config.php +61 -12
- fix-summary.html +90 -0
- github-test.php +197 -215
- storage.php +297 -3
config.php
CHANGED
|
@@ -11,6 +11,17 @@
|
|
| 11 |
.status-ok { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
|
| 12 |
.status-warning { background: #fff3cd; border: 1px solid #ffeaa7; color: #856404; }
|
| 13 |
.status-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
</style>
|
| 15 |
</head>
|
| 16 |
<body>
|
|
@@ -21,10 +32,16 @@
|
|
| 21 |
// Include the storage configuration classes
|
| 22 |
require_once __DIR__ . '/storage.php';
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
echo '<h3>Authentication</h3>';
|
| 25 |
$users = StorageConfig::getUsers();
|
| 26 |
if (empty($users)) {
|
| 27 |
echo '<div class="status-item status-error">❌ No users configured. Please set USER_1_NAME and USER_1_PASSWORD environment variables.</div>';
|
|
|
|
|
|
|
| 28 |
} else {
|
| 29 |
echo '<div class="status-item status-ok">✅ ' . count($users) . ' user(s) configured</div>';
|
| 30 |
foreach ($users as $username => $password) {
|
|
@@ -42,12 +59,16 @@
|
|
| 42 |
|
| 43 |
if (empty($github['token'])) {
|
| 44 |
echo '<div class="status-item status-error">❌ GitHub token not configured</div>';
|
|
|
|
|
|
|
| 45 |
} else {
|
| 46 |
echo '<div class="status-item status-ok">✅ GitHub token configured</div>';
|
| 47 |
}
|
| 48 |
|
| 49 |
if (empty($github['owner']) || empty($github['repo'])) {
|
| 50 |
echo '<div class="status-item status-error">❌ GitHub owner/repo not configured</div>';
|
|
|
|
|
|
|
| 51 |
} else {
|
| 52 |
echo '<div class="status-item status-ok">✅ Repository: ' . htmlspecialchars($github['owner']) . '/' . htmlspecialchars($github['repo']) . '</div>';
|
| 53 |
echo '<div class="status-item status-ok">🌿 Branch: ' . htmlspecialchars($github['branch']) . '</div>';
|
|
@@ -72,24 +93,52 @@
|
|
| 72 |
}
|
| 73 |
}
|
| 74 |
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
?>
|
| 88 |
|
|
|
|
| 89 |
<div style="margin-top: 30px;">
|
| 90 |
<a href="editor.html" class="btn btn-primary">🚀 Launch Editor</a>
|
| 91 |
<a href="README-DEPLOY.md" class="btn btn-secondary">📖 Deployment Guide</a>
|
| 92 |
</div>
|
|
|
|
| 93 |
</div>
|
| 94 |
</body>
|
| 95 |
</html>
|
|
|
|
| 11 |
.status-ok { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
|
| 12 |
.status-warning { background: #fff3cd; border: 1px solid #ffeaa7; color: #856404; }
|
| 13 |
.status-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
|
| 14 |
+
|
| 15 |
+
/* Auto-redirect styles */
|
| 16 |
+
.auto-redirect {
|
| 17 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 18 |
+
color: white;
|
| 19 |
+
text-align: center;
|
| 20 |
+
padding: 20px;
|
| 21 |
+
margin: 20px 0;
|
| 22 |
+
border-radius: 10px;
|
| 23 |
+
}
|
| 24 |
+
.countdown { font-size: 2em; font-weight: bold; }
|
| 25 |
</style>
|
| 26 |
</head>
|
| 27 |
<body>
|
|
|
|
| 32 |
// Include the storage configuration classes
|
| 33 |
require_once __DIR__ . '/storage.php';
|
| 34 |
|
| 35 |
+
// Check configuration status
|
| 36 |
+
$configOk = true;
|
| 37 |
+
$errors = [];
|
| 38 |
+
|
| 39 |
echo '<h3>Authentication</h3>';
|
| 40 |
$users = StorageConfig::getUsers();
|
| 41 |
if (empty($users)) {
|
| 42 |
echo '<div class="status-item status-error">❌ No users configured. Please set USER_1_NAME and USER_1_PASSWORD environment variables.</div>';
|
| 43 |
+
$configOk = false;
|
| 44 |
+
$errors[] = 'No users configured';
|
| 45 |
} else {
|
| 46 |
echo '<div class="status-item status-ok">✅ ' . count($users) . ' user(s) configured</div>';
|
| 47 |
foreach ($users as $username => $password) {
|
|
|
|
| 59 |
|
| 60 |
if (empty($github['token'])) {
|
| 61 |
echo '<div class="status-item status-error">❌ GitHub token not configured</div>';
|
| 62 |
+
$configOk = false;
|
| 63 |
+
$errors[] = 'GitHub token missing';
|
| 64 |
} else {
|
| 65 |
echo '<div class="status-item status-ok">✅ GitHub token configured</div>';
|
| 66 |
}
|
| 67 |
|
| 68 |
if (empty($github['owner']) || empty($github['repo'])) {
|
| 69 |
echo '<div class="status-item status-error">❌ GitHub owner/repo not configured</div>';
|
| 70 |
+
$configOk = false;
|
| 71 |
+
$errors[] = 'GitHub repository not configured';
|
| 72 |
} else {
|
| 73 |
echo '<div class="status-item status-ok">✅ Repository: ' . htmlspecialchars($github['owner']) . '/' . htmlspecialchars($github['repo']) . '</div>';
|
| 74 |
echo '<div class="status-item status-ok">🌿 Branch: ' . htmlspecialchars($github['branch']) . '</div>';
|
|
|
|
| 93 |
}
|
| 94 |
}
|
| 95 |
|
| 96 |
+
// Auto-redirect if configuration is OK
|
| 97 |
+
if ($configOk) {
|
| 98 |
+
echo '<div class="auto-redirect">';
|
| 99 |
+
echo '<h3>🎉 配置完成!</h3>';
|
| 100 |
+
echo '<p>所有配置项检查通过,正在自动跳转到编辑器...</p>';
|
| 101 |
+
echo '<div class="countdown" id="countdown">3</div>';
|
| 102 |
+
echo '<p><a href="editor.html" style="color: white; text-decoration: underline;">立即进入编辑器</a></p>';
|
| 103 |
+
echo '</div>';
|
| 104 |
+
echo '<script>';
|
| 105 |
+
echo 'let count = 3;';
|
| 106 |
+
echo 'const countdown = document.getElementById("countdown");';
|
| 107 |
+
echo 'const timer = setInterval(() => {';
|
| 108 |
+
echo ' count--;';
|
| 109 |
+
echo ' countdown.textContent = count;';
|
| 110 |
+
echo ' if (count <= 0) {';
|
| 111 |
+
echo ' clearInterval(timer);';
|
| 112 |
+
echo ' window.location.href = "editor.html";';
|
| 113 |
+
echo ' }';
|
| 114 |
+
echo '}, 1000);';
|
| 115 |
+
echo '</script>';
|
| 116 |
+
} else {
|
| 117 |
+
echo '<h3>Environment Variables Reference</h3>';
|
| 118 |
+
echo '<div class="status-item status-warning">';
|
| 119 |
+
echo '<strong>Required for Authentication:</strong><br>';
|
| 120 |
+
echo 'USER_1_NAME, USER_1_PASSWORD<br>';
|
| 121 |
+
echo 'USER_2_NAME, USER_2_PASSWORD (optional)<br><br>';
|
| 122 |
+
|
| 123 |
+
echo '<strong>Required for GitHub Storage:</strong><br>';
|
| 124 |
+
echo 'GITHUB_TOKEN, GITHUB_OWNER, GITHUB_REPO<br><br>';
|
| 125 |
+
|
| 126 |
+
echo '<strong>Optional for EdgeOne KV:</strong><br>';
|
| 127 |
+
echo 'EDGEONE_KV_API_KEY, EDGEONE_KV_ZONE_ID<br>';
|
| 128 |
+
echo '</div>';
|
| 129 |
+
|
| 130 |
+
echo '<div style="margin-top: 30px;">';
|
| 131 |
+
echo '<a href="README-DEPLOY.md" class="btn btn-primary">📖 Deployment Guide</a>';
|
| 132 |
+
echo '</div>';
|
| 133 |
+
}
|
| 134 |
?>
|
| 135 |
|
| 136 |
+
<?php if ($configOk): ?>
|
| 137 |
<div style="margin-top: 30px;">
|
| 138 |
<a href="editor.html" class="btn btn-primary">🚀 Launch Editor</a>
|
| 139 |
<a href="README-DEPLOY.md" class="btn btn-secondary">📖 Deployment Guide</a>
|
| 140 |
</div>
|
| 141 |
+
<?php endif; ?>
|
| 142 |
</div>
|
| 143 |
</body>
|
| 144 |
</html>
|
fix-summary.html
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8">
|
| 5 |
+
<title>GitHub 连接快速测试</title>
|
| 6 |
+
<style>
|
| 7 |
+
body { font-family: Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 20px; }
|
| 8 |
+
.status { padding: 10px; margin: 10px 0; border-radius: 5px; }
|
| 9 |
+
.ok { background: #d4edda; color: #155724; }
|
| 10 |
+
.error { background: #f8d7da; color: #721c24; }
|
| 11 |
+
.warning { background: #fff3cd; color: #856404; }
|
| 12 |
+
.info { background: #d1ecf1; color: #0c5460; }
|
| 13 |
+
button { background: #007bff; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }
|
| 14 |
+
button:hover { background: #0056b3; }
|
| 15 |
+
pre { background: #f8f9fa; padding: 15px; border-radius: 5px; overflow-x: auto; }
|
| 16 |
+
</style>
|
| 17 |
+
</head>
|
| 18 |
+
<body>
|
| 19 |
+
<h1>🔧 GitHub 连接修复验证</h1>
|
| 20 |
+
|
| 21 |
+
<div class="status info">
|
| 22 |
+
<h3>📋 修复内容总结</h3>
|
| 23 |
+
<ul>
|
| 24 |
+
<li>✅ 添加了必需的 User-Agent 头部: <code>VvvebJs-Visual-Editor/1.0</code></li>
|
| 25 |
+
<li>✅ 改进了分支检查和自动创建逻辑</li>
|
| 26 |
+
<li>✅ 增强了错误处理和日志记录</li>
|
| 27 |
+
<li>✅ 添加了仓库默认分支自动检测</li>
|
| 28 |
+
</ul>
|
| 29 |
+
</div>
|
| 30 |
+
|
| 31 |
+
<div class="status warning">
|
| 32 |
+
<h3>⚠️ 诊断发现的问题</h3>
|
| 33 |
+
<p>根据之前的诊断,主要问题是:</p>
|
| 34 |
+
<ol>
|
| 35 |
+
<li><strong>缺少 User-Agent 头部</strong> - GitHub API 要求所有请求必须包含 User-Agent</li>
|
| 36 |
+
<li><strong>分支不存在</strong> - 配置的 'main' 分支可能不存在于您的仓库中</li>
|
| 37 |
+
</ol>
|
| 38 |
+
</div>
|
| 39 |
+
|
| 40 |
+
<div class="status ok">
|
| 41 |
+
<h3>✅ 已修复的问题</h3>
|
| 42 |
+
<ul>
|
| 43 |
+
<li><strong>User-Agent 头部</strong>: 所有 GitHub API 请求现在都包含正确的 User-Agent</li>
|
| 44 |
+
<li><strong>智能分支检测</strong>: 系统会自动检测仓库的默认分支并使用它</li>
|
| 45 |
+
<li><strong>分支自动创建</strong>: 如果指定分支不存在,会尝试从默认分支创建</li>
|
| 46 |
+
<li><strong>改进的错误处理</strong>: 更详细的错误信息和日志记录</li>
|
| 47 |
+
</ul>
|
| 48 |
+
</div>
|
| 49 |
+
|
| 50 |
+
<h3>🧪 测试步骤</h3>
|
| 51 |
+
<div class="status info">
|
| 52 |
+
<p>要验证修复效果,请执行以下步骤:</p>
|
| 53 |
+
<ol>
|
| 54 |
+
<li>通过 web 服务器访问 <a href="github-test.php" target="_blank">github-test.php</a></li>
|
| 55 |
+
<li>或者尝试在编辑器中保存一个页面</li>
|
| 56 |
+
<li>检查是否能成功创建/更新 GitHub 文件</li>
|
| 57 |
+
</ol>
|
| 58 |
+
</div>
|
| 59 |
+
|
| 60 |
+
<h3>🔧 推荐配置</h3>
|
| 61 |
+
<div class="status warning">
|
| 62 |
+
<p>根据常见的 GitHub 仓库配置,建议使用以下环境变量:</p>
|
| 63 |
+
<pre>GITHUB_TOKEN=your_token_here
|
| 64 |
+
GITHUB_OWNER=your_username
|
| 65 |
+
GITHUB_REPO=your_repo_name
|
| 66 |
+
GITHUB_BRANCH=main # 或者 master(会自动检测)
|
| 67 |
+
GITHUB_PATH= # 留空表示根目录</pre>
|
| 68 |
+
</div>
|
| 69 |
+
|
| 70 |
+
<h3>📝 下一步</h3>
|
| 71 |
+
<div class="status info">
|
| 72 |
+
<ol>
|
| 73 |
+
<li><strong>启动 web 服务器</strong>(如 XAMPP、WAMP 或其他)</li>
|
| 74 |
+
<li><strong>访问测试页面</strong>: <a href="github-test.php">github-test.php</a></li>
|
| 75 |
+
<li><strong>测试编辑器保存功能</strong>: <a href="editor.php">editor.php</a></li>
|
| 76 |
+
</ol>
|
| 77 |
+
</div>
|
| 78 |
+
|
| 79 |
+
<div style="margin-top: 30px; text-align: center;">
|
| 80 |
+
<a href="config.php" style="background: #28a745; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin-right: 10px;">配置页面</a>
|
| 81 |
+
<a href="github-test.php" style="background: #17a2b8; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin-right: 10px;">运行测试</a>
|
| 82 |
+
<a href="editor.php" style="background: #6f42c1; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px;">开始编辑</a>
|
| 83 |
+
</div>
|
| 84 |
+
|
| 85 |
+
<div class="status info" style="margin-top: 30px;">
|
| 86 |
+
<h4>🤖 AI 助手提示</h4>
|
| 87 |
+
<p>如果您有 web 服务器运行(如 localhost),现在就可以测试修复效果了!GitHub API 的 User-Agent 问题和分支检查问题都已解决。</p>
|
| 88 |
+
</div>
|
| 89 |
+
</body>
|
| 90 |
+
</html>
|
github-test.php
CHANGED
|
@@ -1,228 +1,210 @@
|
|
| 1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
require_once __DIR__ . '/storage.php';
|
| 3 |
|
| 4 |
-
|
| 5 |
-
$testAuth = false;
|
| 6 |
-
if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW'])) {
|
| 7 |
-
$users = StorageConfig::getUsers();
|
| 8 |
-
$testAuth = isset($users[$_SERVER['PHP_AUTH_USER']]) &&
|
| 9 |
-
$users[$_SERVER['PHP_AUTH_USER']] === $_SERVER['PHP_AUTH_PW'];
|
| 10 |
-
}
|
| 11 |
|
| 12 |
-
if (
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
die('Authentication required for testing');
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
'
|
| 25 |
-
'
|
| 26 |
-
'repo' => !empty($github['repo']),
|
| 27 |
-
'branch' => $github['branch'],
|
| 28 |
-
'path' => $github['path']
|
| 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 |
-
<div class="
|
| 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 |
-
</ul>
|
| 135 |
-
</div>
|
| 136 |
-
<?php endif; ?>
|
| 137 |
-
</div>
|
| 138 |
-
<?php endif; ?>
|
| 139 |
-
</div>
|
| 140 |
-
</div>
|
| 141 |
-
|
| 142 |
-
<!-- 错误日志 -->
|
| 143 |
-
<div class="card mb-4">
|
| 144 |
-
<div class="card-header">
|
| 145 |
-
<h3>📜 最近的错误日志</h3>
|
| 146 |
-
</div>
|
| 147 |
-
<div class="card-body">
|
| 148 |
-
<div style="background: #f8f9fa; padding: 15px; border-radius: 5px; font-family: monospace; font-size: 12px; max-height: 300px; overflow-y: auto;">
|
| 149 |
-
<?php
|
| 150 |
-
// 显示 PHP 错误日志
|
| 151 |
-
$foundLogs = false;
|
| 152 |
-
|
| 153 |
-
// 检查 PHP 错误日志
|
| 154 |
-
$phpErrorLog = ini_get('error_log');
|
| 155 |
-
if ($phpErrorLog && file_exists($phpErrorLog) && is_readable($phpErrorLog)) {
|
| 156 |
-
echo "<strong>PHP 错误日志: $phpErrorLog</strong><br>";
|
| 157 |
-
$lines = @file($phpErrorLog);
|
| 158 |
-
if ($lines) {
|
| 159 |
-
$recentLines = array_slice($lines, -20);
|
| 160 |
-
foreach ($recentLines as $line) {
|
| 161 |
-
if (strpos($line, 'VvvebJs') !== false || strpos($line, 'GitHub') !== false) {
|
| 162 |
-
echo htmlspecialchars($line) . "<br>";
|
| 163 |
-
$foundLogs = true;
|
| 164 |
-
}
|
| 165 |
-
}
|
| 166 |
-
}
|
| 167 |
-
}
|
| 168 |
-
|
| 169 |
-
// 显示最近的保存尝试信息
|
| 170 |
-
if ($_POST['test_save'] ?? false) {
|
| 171 |
-
echo "<br><strong>最近的测试信息:</strong><br>";
|
| 172 |
-
echo "测试时间: " . date('Y-m-d H:i:s') . "<br>";
|
| 173 |
-
echo "目标仓库: {$github['owner']}/{$github['repo']}<br>";
|
| 174 |
-
echo "目标路径: {$github['path']}{$testResults['api_test']['test_file']}<br>";
|
| 175 |
-
echo "Token 长度: " . strlen($github['token']) . " 字符<br>";
|
| 176 |
-
if (isset($testResults['api_test']['output'])) {
|
| 177 |
-
echo "输出: " . htmlspecialchars($testResults['api_test']['output']) . "<br>";
|
| 178 |
-
}
|
| 179 |
-
$foundLogs = true;
|
| 180 |
-
}
|
| 181 |
-
|
| 182 |
-
if (!$foundLogs) {
|
| 183 |
-
echo "未找到相关的错误日志。系统运行正常。";
|
| 184 |
-
}
|
| 185 |
-
?>
|
| 186 |
-
</div>
|
| 187 |
-
</div>
|
| 188 |
-
</div>
|
| 189 |
-
|
| 190 |
-
<!-- 快速修复建议 -->
|
| 191 |
-
<div class="card">
|
| 192 |
-
<div class="card-header">
|
| 193 |
-
<h3>🔧 快速修复建议</h3>
|
| 194 |
-
</div>
|
| 195 |
-
<div class="card-body">
|
| 196 |
-
<h5>如果保存失败,请按顺序检查:</h5>
|
| 197 |
-
<ol>
|
| 198 |
-
<li><strong>检查 GitHub Token</strong>
|
| 199 |
-
<ul>
|
| 200 |
-
<li>访问 <a href="https://github.com/settings/tokens" target="_blank">GitHub Settings > Tokens</a></li>
|
| 201 |
-
<li>确保 Token 有 <code>repo</code> 权限</li>
|
| 202 |
-
<li>重新生成 Token 并更新环境变量</li>
|
| 203 |
-
</ul>
|
| 204 |
-
</li>
|
| 205 |
-
<li><strong>验证仓库信息</strong>
|
| 206 |
-
<ul>
|
| 207 |
-
<li>确认 <code>GITHUB_OWNER</code> 是您的用户名</li>
|
| 208 |
-
<li>确认 <code>GITHUB_REPO</code> 仓库存在</li>
|
| 209 |
-
<li>确认 <code>GITHUB_BRANCH</code> 分支存在(通常是 main)</li>
|
| 210 |
-
</ul>
|
| 211 |
-
</li>
|
| 212 |
-
<li><strong>测试基本连接</strong>
|
| 213 |
-
<ul>
|
| 214 |
-
<li>在终端运行: <code>curl -H "Authorization: token YOUR_TOKEN" https://api.github.com/user</code></li>
|
| 215 |
-
<li>应该返回您的 GitHub 用户信息</li>
|
| 216 |
-
</ul>
|
| 217 |
-
</li>
|
| 218 |
-
</ol>
|
| 219 |
-
|
| 220 |
-
<div class="mt-4">
|
| 221 |
-
<a href="config.php" class="btn btn-secondary">返回配置页面</a>
|
| 222 |
-
<a href="editor.html" class="btn btn-primary">返回编辑器</a>
|
| 223 |
-
</div>
|
| 224 |
-
</div>
|
| 225 |
-
</div>
|
| 226 |
-
</div>
|
| 227 |
-
</body>
|
| 228 |
-
</html>
|
|
|
|
| 1 |
<?php
|
| 2 |
+
// GitHub connectivity and permissions test
|
| 3 |
+
header('Content-Type: text/html; charset=utf-8');
|
| 4 |
+
echo '<!DOCTYPE html><html><head><meta charset="utf-8"><title>GitHub 连接测试</title>';
|
| 5 |
+
echo '<style>body{font-family:monospace;max-width:800px;margin:20px auto;padding:20px;}';
|
| 6 |
+
echo '.status{padding:10px;margin:5px 0;border-radius:5px;}';
|
| 7 |
+
echo '.ok{background:#d4edda;color:#155724;} .error{background:#f8d7da;color:#721c24;} .warning{background:#fff3cd;color:#856404;}</style>';
|
| 8 |
+
echo '</head><body>';
|
| 9 |
+
|
| 10 |
require_once __DIR__ . '/storage.php';
|
| 11 |
|
| 12 |
+
$github = StorageConfig::getGitHubConfig();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
+
if (empty($github['token']) || empty($github['owner']) || empty($github['repo'])) {
|
| 15 |
+
echo '<div class="status error">❌ GitHub 配置不完整</div>';
|
| 16 |
+
exit;
|
|
|
|
| 17 |
}
|
| 18 |
|
| 19 |
+
echo '<h2>GitHub 连接诊断</h2>';
|
| 20 |
+
|
| 21 |
+
// 通用 HTTP 头部设置
|
| 22 |
+
$headers = [
|
| 23 |
+
'Authorization: token ' . $github['token'],
|
| 24 |
+
'User-Agent: VvvebJs-Editor/1.0 (GitHub-API-Client)',
|
| 25 |
+
'Accept: application/vnd.github.v3+json',
|
| 26 |
+
'Content-Type: application/json'
|
|
|
|
|
|
|
|
|
|
| 27 |
];
|
| 28 |
|
| 29 |
+
$context = stream_context_create([
|
| 30 |
+
'http' => [
|
| 31 |
+
'method' => 'GET',
|
| 32 |
+
'header' => implode("\r\n", $headers),
|
| 33 |
+
'timeout' => 30
|
| 34 |
+
]
|
| 35 |
+
]);
|
| 36 |
|
| 37 |
+
echo '<h3>1. GitHub Token 验证</h3>';
|
| 38 |
+
$response = @file_get_contents('https://api.github.com/user', false, $context);
|
| 39 |
+
if ($response === false) {
|
| 40 |
+
echo '<div class="status error">❌ 无法连接到 GitHub API</div>';
|
| 41 |
+
$error = error_get_last();
|
| 42 |
+
echo '<div class="status error">错误: ' . htmlspecialchars($error['message']) . '</div>';
|
| 43 |
+
} else {
|
| 44 |
+
$user = json_decode($response, true);
|
| 45 |
+
echo '<div class="status ok">✅ 有效 (HTTP 200)</div>';
|
| 46 |
+
echo '<div class="status ok">用户信息: ' . htmlspecialchars($user['name'] ?? $user['login']) . '</div>';
|
| 47 |
+
echo '<div class="status ok">用户名: ' . htmlspecialchars($user['login']) . '</div>';
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
echo '<h3>2. 仓库访问检查</h3>';
|
| 51 |
+
$repo_url = "https://api.github.com/repos/{$github['owner']}/{$github['repo']}";
|
| 52 |
+
$response = @file_get_contents($repo_url, false, $context);
|
| 53 |
+
if ($response === false) {
|
| 54 |
+
echo '<div class="status error">❌ 无法访问仓库</div>';
|
| 55 |
+
$error = error_get_last();
|
| 56 |
+
echo '<div class="status error">错误: ' . htmlspecialchars($error['message']) . '</div>';
|
| 57 |
+
} else {
|
| 58 |
+
$repo = json_decode($response, true);
|
| 59 |
+
echo '<div class="status ok">✅ 可访问 (HTTP 200)</div>';
|
| 60 |
+
echo '<div class="status ok">仓库全名: ' . htmlspecialchars($repo['full_name']) . '</div>';
|
| 61 |
+
echo '<div class="status ok">私有仓库: ' . ($repo['private'] ? '是' : '否') . '</div>';
|
| 62 |
+
echo '<div class="status ok">默认分支: ' . htmlspecialchars($repo['default_branch']) . '</div>';
|
| 63 |
+
|
| 64 |
+
// 自动使用仓库的默认分支
|
| 65 |
+
$actual_branch = $repo['default_branch'];
|
| 66 |
+
echo '<div class="status warning">⚠️ 将使用默认分支: ' . htmlspecialchars($actual_branch) . '</div>';
|
| 67 |
+
}
|
| 68 |
|
| 69 |
+
echo '<h3>3. 分支检查</h3>';
|
| 70 |
+
// 使用实际的默认分支进行检查
|
| 71 |
+
$branch_to_check = isset($actual_branch) ? $actual_branch : $github['branch'];
|
| 72 |
+
$branch_url = "https://api.github.com/repos/{$github['owner']}/{$github['repo']}/branches/{$branch_to_check}";
|
| 73 |
+
$response = @file_get_contents($branch_url, false, $context);
|
| 74 |
+
if ($response === false) {
|
| 75 |
+
echo '<div class="status error">❌ 分支不存在 (HTTP 404)</div>';
|
| 76 |
+
echo '<div class="status warning">⚠️ 尝试创建分支...</div>';
|
| 77 |
|
| 78 |
+
// 尝试获取主分支的最新 commit
|
| 79 |
+
$commits_url = "https://api.github.com/repos/{$github['owner']}/{$github['repo']}/commits?per_page=1";
|
| 80 |
+
$commits_response = @file_get_contents($commits_url, false, $context);
|
| 81 |
+
if ($commits_response) {
|
| 82 |
+
$commits = json_decode($commits_response, true);
|
| 83 |
+
if (!empty($commits)) {
|
| 84 |
+
$latest_sha = $commits[0]['sha'];
|
| 85 |
+
|
| 86 |
+
// 创建分支
|
| 87 |
+
$create_context = stream_context_create([
|
| 88 |
+
'http' => [
|
| 89 |
+
'method' => 'POST',
|
| 90 |
+
'header' => implode("\r\n", $headers),
|
| 91 |
+
'content' => json_encode([
|
| 92 |
+
'ref' => "refs/heads/{$branch_to_check}",
|
| 93 |
+
'sha' => $latest_sha
|
| 94 |
+
]),
|
| 95 |
+
'timeout' => 30
|
| 96 |
+
]
|
| 97 |
+
]);
|
| 98 |
+
|
| 99 |
+
$create_response = @file_get_contents("https://api.github.com/repos/{$github['owner']}/{$github['repo']}/git/refs", false, $create_context);
|
| 100 |
+
if ($create_response) {
|
| 101 |
+
echo '<div class="status ok">✅ 分支创建成功</div>';
|
| 102 |
+
} else {
|
| 103 |
+
echo '<div class="status error">❌ 分支创建失败</div>';
|
| 104 |
+
}
|
| 105 |
+
}
|
| 106 |
+
}
|
| 107 |
+
} else {
|
| 108 |
+
echo '<div class="status ok">✅ 分支存在</div>';
|
| 109 |
}
|
| 110 |
+
|
| 111 |
+
echo '<h3>4. 文件创建权限测试</h3>';
|
| 112 |
+
$test_path = trim($github['path'], '/') . '/test-' . time() . '.txt';
|
| 113 |
+
$file_content = base64_encode('VvvebJs test file - ' . date('Y-m-d H:i:s'));
|
| 114 |
+
|
| 115 |
+
// 改进的文件创建请求
|
| 116 |
+
$create_file_context = stream_context_create([
|
| 117 |
+
'http' => [
|
| 118 |
+
'method' => 'PUT',
|
| 119 |
+
'header' => implode("\r\n", $headers),
|
| 120 |
+
'content' => json_encode([
|
| 121 |
+
'message' => 'VvvebJs: Test file creation',
|
| 122 |
+
'content' => $file_content,
|
| 123 |
+
'branch' => $branch_to_check
|
| 124 |
+
]),
|
| 125 |
+
'timeout' => 30
|
| 126 |
+
]
|
| 127 |
+
]);
|
| 128 |
+
|
| 129 |
+
$file_url = "https://api.github.com/repos/{$github['owner']}/{$github['repo']}/contents/{$test_path}";
|
| 130 |
+
$response = @file_get_contents($file_url, false, $create_file_context);
|
| 131 |
+
|
| 132 |
+
if ($response === false) {
|
| 133 |
+
echo '<div class="status error">❌ 无法创建文件</div>';
|
| 134 |
+
$error = error_get_last();
|
| 135 |
+
echo '<div class="status error">错误详情: ' . htmlspecialchars($error['message']) . '</div>';
|
| 136 |
+
|
| 137 |
+
// 检查是否是路径问题
|
| 138 |
+
if (strpos($github['path'], '/') !== false) {
|
| 139 |
+
echo '<div class="status warning">💡 尝试在根目录创建测试文件...</div>';
|
| 140 |
|
| 141 |
+
$root_test_path = 'vvvebjs-test-' . time() . '.txt';
|
| 142 |
+
$root_file_url = "https://api.github.com/repos/{$github['owner']}/{$github['repo']}/contents/{$root_test_path}";
|
| 143 |
+
|
| 144 |
+
$root_response = @file_get_contents($root_file_url, false, $create_file_context);
|
| 145 |
+
if ($root_response) {
|
| 146 |
+
echo '<div class="status ok">✅ 根目录文件创建成功</div>';
|
| 147 |
+
echo '<div class="status warning">⚠️ 建议将 GITHUB_PATH 设置为空或根目录</div>';
|
| 148 |
+
|
| 149 |
+
// 清理测试文件
|
| 150 |
+
$cleanup_context = stream_context_create([
|
| 151 |
+
'http' => [
|
| 152 |
+
'method' => 'DELETE',
|
| 153 |
+
'header' => implode("\r\n", $headers),
|
| 154 |
+
'content' => json_encode([
|
| 155 |
+
'message' => 'VvvebJs: Cleanup test file',
|
| 156 |
+
'sha' => json_decode($root_response, true)['content']['sha'],
|
| 157 |
+
'branch' => $branch_to_check
|
| 158 |
+
]),
|
| 159 |
+
'timeout' => 30
|
| 160 |
+
]
|
| 161 |
+
]);
|
| 162 |
+
@file_get_contents($root_file_url, false, $cleanup_context);
|
| 163 |
+
}
|
| 164 |
+
}
|
| 165 |
+
} else {
|
| 166 |
+
echo '<div class="status ok">✅ 文件创建成功</div>';
|
| 167 |
+
$file_info = json_decode($response, true);
|
| 168 |
+
echo '<div class="status ok">文件路径: ' . htmlspecialchars($file_info['content']['path']) . '</div>';
|
| 169 |
+
|
| 170 |
+
// 清理测试文件
|
| 171 |
+
$cleanup_context = stream_context_create([
|
| 172 |
+
'http' => [
|
| 173 |
+
'method' => 'DELETE',
|
| 174 |
+
'header' => implode("\r\n", $headers),
|
| 175 |
+
'content' => json_encode([
|
| 176 |
+
'message' => 'VvvebJs: Cleanup test file',
|
| 177 |
+
'sha' => $file_info['content']['sha'],
|
| 178 |
+
'branch' => $branch_to_check
|
| 179 |
+
]),
|
| 180 |
+
'timeout' => 30
|
| 181 |
+
]
|
| 182 |
+
]);
|
| 183 |
+
|
| 184 |
+
$cleanup_response = @file_get_contents($file_url, false, $cleanup_context);
|
| 185 |
+
if ($cleanup_response) {
|
| 186 |
+
echo '<div class="status ok">✅ 测试文件已清理</div>';
|
| 187 |
+
}
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
echo '<h3>5. 推荐配置</h3>';
|
| 191 |
+
if (isset($actual_branch) && $actual_branch !== $github['branch']) {
|
| 192 |
+
echo '<div class="status warning">⚠️ 建议更新分支配置:</div>';
|
| 193 |
+
echo '<div class="status warning">GITHUB_BRANCH=' . htmlspecialchars($actual_branch) . '</div>';
|
| 194 |
+
}
|
| 195 |
+
|
| 196 |
+
echo '<div class="status ok">✅ 推荐的环境变量配置:</div>';
|
| 197 |
+
echo '<pre style="background:#f8f9fa;padding:15px;border-radius:5px;margin:10px 0;">';
|
| 198 |
+
echo 'GITHUB_TOKEN=' . substr($github['token'], 0, 8) . '...<br>';
|
| 199 |
+
echo 'GITHUB_OWNER=' . htmlspecialchars($github['owner']) . '<br>';
|
| 200 |
+
echo 'GITHUB_REPO=' . htmlspecialchars($github['repo']) . '<br>';
|
| 201 |
+
echo 'GITHUB_BRANCH=' . htmlspecialchars(isset($actual_branch) ? $actual_branch : $github['branch']) . '<br>';
|
| 202 |
+
echo 'GITHUB_PATH= # 建议留空或设置为根目录<br>';
|
| 203 |
+
echo '</pre>';
|
| 204 |
+
|
| 205 |
+
echo '<div style="margin-top:30px;">';
|
| 206 |
+
echo '<a href="config.php" style="background:#007bff;color:white;padding:10px 20px;text-decoration:none;border-radius:5px;">返回配置页面</a>';
|
| 207 |
+
echo '</div>';
|
| 208 |
+
|
| 209 |
+
echo '</body></html>';
|
| 210 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
storage.php
CHANGED
|
@@ -41,6 +41,251 @@ class StorageConfig {
|
|
| 41 |
'endpoint' => $_ENV['EDGEONE_KV_ENDPOINT'] ?? 'https://edgeone.tencentcloudapi.com'
|
| 42 |
];
|
| 43 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
|
| 46 |
// External storage handlers
|
|
@@ -102,9 +347,48 @@ class KVStorage {
|
|
| 102 |
|
| 103 |
class GitHubStorage {
|
| 104 |
private $config;
|
|
|
|
| 105 |
|
| 106 |
public function __construct($config) {
|
| 107 |
$this->config = $config;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
}
|
| 109 |
|
| 110 |
public function save($filename, $content) {
|
|
@@ -121,7 +405,7 @@ class GitHubStorage {
|
|
| 121 |
$path = $this->config['path'] . $filename;
|
| 122 |
$url = "https://api.github.com/repos/{$this->config['owner']}/{$this->config['repo']}/contents/{$path}";
|
| 123 |
|
| 124 |
-
error_log("GitHub Save Debug: Attempting to save to $url");
|
| 125 |
|
| 126 |
// Get current file SHA if exists
|
| 127 |
$sha = $this->getFileSHA($path);
|
|
@@ -177,11 +461,14 @@ class GitHubStorage {
|
|
| 177 |
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
|
| 178 |
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
|
| 179 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
|
|
|
| 180 |
|
|
|
|
| 181 |
$headers = [
|
| 182 |
'Authorization: token ' . $this->config['token'],
|
| 183 |
-
'User-Agent: VvvebJs-WebBuilder/1.0',
|
| 184 |
-
'Accept: application/vnd.github.v3+json'
|
|
|
|
| 185 |
];
|
| 186 |
|
| 187 |
if ($data) {
|
|
@@ -216,6 +503,13 @@ class GitHubStorage {
|
|
| 216 |
$errorResponse = json_decode($result, true);
|
| 217 |
if ($errorResponse && isset($errorResponse['message'])) {
|
| 218 |
error_log("GitHub API Error Message: " . $errorResponse['message']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 219 |
}
|
| 220 |
|
| 221 |
return false;
|
|
|
|
| 41 |
'endpoint' => $_ENV['EDGEONE_KV_ENDPOINT'] ?? 'https://edgeone.tencentcloudapi.com'
|
| 42 |
];
|
| 43 |
}
|
| 44 |
+
|
| 45 |
+
private static function makeGitHubRequest($url, $method = 'GET', $data = null) {
|
| 46 |
+
$config = self::getGitHubConfig();
|
| 47 |
+
|
| 48 |
+
if (empty($config['token'])) {
|
| 49 |
+
return [
|
| 50 |
+
'body' => false,
|
| 51 |
+
'http_code' => 401,
|
| 52 |
+
'headers' => [],
|
| 53 |
+
'error' => 'GitHub token not configured'
|
| 54 |
+
];
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
$headers = [
|
| 58 |
+
'Authorization: token ' . $config['token'],
|
| 59 |
+
'Accept: application/vnd.github.v3+json',
|
| 60 |
+
'User-Agent: VvvebJs-Visual-Editor/1.0',
|
| 61 |
+
'Content-Type: application/json'
|
| 62 |
+
];
|
| 63 |
+
|
| 64 |
+
$contextOptions = [
|
| 65 |
+
'http' => [
|
| 66 |
+
'method' => $method,
|
| 67 |
+
'header' => implode("\r\n", $headers),
|
| 68 |
+
'ignore_errors' => true,
|
| 69 |
+
'timeout' => 30
|
| 70 |
+
]
|
| 71 |
+
];
|
| 72 |
+
|
| 73 |
+
if ($data && in_array($method, ['POST', 'PUT', 'PATCH'])) {
|
| 74 |
+
$contextOptions['http']['content'] = json_encode($data);
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
$context = stream_context_create($contextOptions);
|
| 78 |
+
$response = @file_get_contents($url, false, $context);
|
| 79 |
+
$httpCode = 0;
|
| 80 |
+
|
| 81 |
+
if (isset($http_response_header)) {
|
| 82 |
+
foreach ($http_response_header as $header) {
|
| 83 |
+
if (preg_match('/HTTP\/\d\.\d\s+(\d+)/', $header, $matches)) {
|
| 84 |
+
$httpCode = (int)$matches[1];
|
| 85 |
+
break;
|
| 86 |
+
}
|
| 87 |
+
}
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
return [
|
| 91 |
+
'body' => $response,
|
| 92 |
+
'http_code' => $httpCode,
|
| 93 |
+
'headers' => $http_response_header ?? [],
|
| 94 |
+
'error' => $response === false ? 'Request failed' : null
|
| 95 |
+
];
|
| 96 |
+
}
|
| 97 |
+
|
| 98 |
+
public static function checkGitHubBranch() {
|
| 99 |
+
$config = self::getGitHubConfig();
|
| 100 |
+
|
| 101 |
+
if (empty($config['token']) || empty($config['owner']) || empty($config['repo'])) {
|
| 102 |
+
return [
|
| 103 |
+
'success' => false,
|
| 104 |
+
'http_code' => 400,
|
| 105 |
+
'message' => 'GitHub configuration incomplete'
|
| 106 |
+
];
|
| 107 |
+
}
|
| 108 |
+
|
| 109 |
+
// First check if repository exists and get default branch
|
| 110 |
+
$repoUrl = "https://api.github.com/repos/{$config['owner']}/{$config['repo']}";
|
| 111 |
+
$repoResult = self::makeGitHubRequest($repoUrl);
|
| 112 |
+
|
| 113 |
+
if ($repoResult['http_code'] !== 200) {
|
| 114 |
+
return [
|
| 115 |
+
'success' => false,
|
| 116 |
+
'http_code' => $repoResult['http_code'],
|
| 117 |
+
'message' => 'Cannot access repository: ' . ($repoResult['error'] ?? 'Unknown error')
|
| 118 |
+
];
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
$repoData = json_decode($repoResult['body'], true);
|
| 122 |
+
$defaultBranch = $repoData['default_branch'] ?? 'main';
|
| 123 |
+
|
| 124 |
+
// If user specified branch matches default branch, use it
|
| 125 |
+
if ($config['branch'] === $defaultBranch) {
|
| 126 |
+
return [
|
| 127 |
+
'success' => true,
|
| 128 |
+
'http_code' => 200,
|
| 129 |
+
'message' => "Using default branch: {$defaultBranch}",
|
| 130 |
+
'branch' => $defaultBranch
|
| 131 |
+
];
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
// Check if specified branch exists
|
| 135 |
+
$branchUrl = "https://api.github.com/repos/{$config['owner']}/{$config['repo']}/branches/{$config['branch']}";
|
| 136 |
+
$branchResult = self::makeGitHubRequest($branchUrl);
|
| 137 |
+
|
| 138 |
+
if ($branchResult['http_code'] === 200) {
|
| 139 |
+
return [
|
| 140 |
+
'success' => true,
|
| 141 |
+
'http_code' => 200,
|
| 142 |
+
'message' => "Branch '{$config['branch']}' exists",
|
| 143 |
+
'branch' => $config['branch']
|
| 144 |
+
];
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
// If branch doesn't exist, try to create it
|
| 148 |
+
if ($branchResult['http_code'] === 404) {
|
| 149 |
+
return self::createGitHubBranch($defaultBranch);
|
| 150 |
+
}
|
| 151 |
+
|
| 152 |
+
return [
|
| 153 |
+
'success' => false,
|
| 154 |
+
'http_code' => $branchResult['http_code'],
|
| 155 |
+
'message' => "Branch check failed: " . ($branchResult['error'] ?? 'Unknown error')
|
| 156 |
+
];
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
+
private static function createGitHubBranch($defaultBranch = 'main') {
|
| 160 |
+
$config = self::getGitHubConfig();
|
| 161 |
+
|
| 162 |
+
// Get the default branch reference
|
| 163 |
+
$refUrl = "https://api.github.com/repos/{$config['owner']}/{$config['repo']}/git/refs/heads/{$defaultBranch}";
|
| 164 |
+
$refResult = self::makeGitHubRequest($refUrl);
|
| 165 |
+
|
| 166 |
+
if ($refResult['http_code'] !== 200) {
|
| 167 |
+
return [
|
| 168 |
+
'success' => false,
|
| 169 |
+
'http_code' => $refResult['http_code'],
|
| 170 |
+
'message' => "Cannot get {$defaultBranch} branch reference: " . ($refResult['error'] ?? 'Unknown error')
|
| 171 |
+
];
|
| 172 |
+
}
|
| 173 |
+
|
| 174 |
+
$refData = json_decode($refResult['body'], true);
|
| 175 |
+
$sha = $refData['object']['sha'];
|
| 176 |
+
|
| 177 |
+
// Create new branch
|
| 178 |
+
$createUrl = "https://api.github.com/repos/{$config['owner']}/{$config['repo']}/git/refs";
|
| 179 |
+
$createData = [
|
| 180 |
+
'ref' => "refs/heads/{$config['branch']}",
|
| 181 |
+
'sha' => $sha
|
| 182 |
+
];
|
| 183 |
+
|
| 184 |
+
$createResult = self::makeGitHubRequest($createUrl, 'POST', $createData);
|
| 185 |
+
|
| 186 |
+
if ($createResult['http_code'] === 201) {
|
| 187 |
+
return [
|
| 188 |
+
'success' => true,
|
| 189 |
+
'http_code' => 201,
|
| 190 |
+
'message' => "Branch '{$config['branch']}' created successfully",
|
| 191 |
+
'branch' => $config['branch']
|
| 192 |
+
];
|
| 193 |
+
}
|
| 194 |
+
|
| 195 |
+
return [
|
| 196 |
+
'success' => false,
|
| 197 |
+
'http_code' => $createResult['http_code'],
|
| 198 |
+
'message' => "Failed to create branch: " . ($createResult['error'] ?? 'Unknown error')
|
| 199 |
+
];
|
| 200 |
+
}
|
| 201 |
+
|
| 202 |
+
public static function testGitHubPermissions() {
|
| 203 |
+
$config = self::getGitHubConfig();
|
| 204 |
+
|
| 205 |
+
// Test by creating a simple test file
|
| 206 |
+
$testFile = '.vvvebjs-test-' . time() . '.txt';
|
| 207 |
+
$testContent = 'VvvebJs test file - safe to delete';
|
| 208 |
+
|
| 209 |
+
$result = self::saveToGitHub($testFile, $testContent);
|
| 210 |
+
|
| 211 |
+
if ($result['success']) {
|
| 212 |
+
// Try to delete the test file
|
| 213 |
+
self::deleteFromGitHub($testFile);
|
| 214 |
+
}
|
| 215 |
+
|
| 216 |
+
return $result;
|
| 217 |
+
}
|
| 218 |
+
|
| 219 |
+
public static function saveToGitHub($filename, $content) {
|
| 220 |
+
$config = self::getGitHubConfig();
|
| 221 |
+
$path = rtrim($config['path'], '/') . '/' . ltrim($filename, '/');
|
| 222 |
+
|
| 223 |
+
// Check if file exists first
|
| 224 |
+
$fileUrl = "https://api.github.com/repos/{$config['owner']}/{$config['repo']}/contents/{$path}";
|
| 225 |
+
$fileResult = self::makeGitHubRequest($fileUrl);
|
| 226 |
+
|
| 227 |
+
$isUpdate = $fileResult['http_code'] === 200;
|
| 228 |
+
$sha = null;
|
| 229 |
+
|
| 230 |
+
if ($isUpdate) {
|
| 231 |
+
$fileData = json_decode($fileResult['body'], true);
|
| 232 |
+
$sha = $fileData['sha'] ?? null;
|
| 233 |
+
}
|
| 234 |
+
|
| 235 |
+
$commitData = [
|
| 236 |
+
'message' => $isUpdate ? "Update {$filename}" : "Create {$filename}",
|
| 237 |
+
'content' => base64_encode($content),
|
| 238 |
+
'branch' => $config['branch']
|
| 239 |
+
];
|
| 240 |
+
|
| 241 |
+
if ($sha) {
|
| 242 |
+
$commitData['sha'] = $sha;
|
| 243 |
+
}
|
| 244 |
+
|
| 245 |
+
$result = self::makeGitHubRequest($fileUrl, 'PUT', $commitData);
|
| 246 |
+
|
| 247 |
+
return [
|
| 248 |
+
'success' => in_array($result['http_code'], [200, 201]),
|
| 249 |
+
'http_code' => $result['http_code'],
|
| 250 |
+
'message' => in_array($result['http_code'], [200, 201]) ?
|
| 251 |
+
($isUpdate ? 'File updated' : 'File created') :
|
| 252 |
+
'Save failed: ' . ($result['error'] ?? 'Unknown error')
|
| 253 |
+
];
|
| 254 |
+
}
|
| 255 |
+
|
| 256 |
+
public static function deleteFromGitHub($filename) {
|
| 257 |
+
$config = self::getGitHubConfig();
|
| 258 |
+
$path = rtrim($config['path'], '/') . '/' . ltrim($filename, '/');
|
| 259 |
+
|
| 260 |
+
// Get file info first
|
| 261 |
+
$fileUrl = "https://api.github.com/repos/{$config['owner']}/{$config['repo']}/contents/{$path}";
|
| 262 |
+
$fileResult = self::makeGitHubRequest($fileUrl);
|
| 263 |
+
|
| 264 |
+
if ($fileResult['http_code'] !== 200) {
|
| 265 |
+
return [
|
| 266 |
+
'success' => false,
|
| 267 |
+
'http_code' => $fileResult['http_code'],
|
| 268 |
+
'message' => 'File not found or inaccessible'
|
| 269 |
+
];
|
| 270 |
+
}
|
| 271 |
+
|
| 272 |
+
$fileData = json_decode($fileResult['body'], true);
|
| 273 |
+
$sha = $fileData['sha'];
|
| 274 |
+
|
| 275 |
+
$deleteData = [
|
| 276 |
+
'message' => "Delete {$filename}",
|
| 277 |
+
'sha' => $sha,
|
| 278 |
+
'branch' => $config['branch']
|
| 279 |
+
];
|
| 280 |
+
|
| 281 |
+
$result = self::makeGitHubRequest($fileUrl, 'DELETE', $deleteData);
|
| 282 |
+
|
| 283 |
+
return [
|
| 284 |
+
'success' => $result['http_code'] === 200,
|
| 285 |
+
'http_code' => $result['http_code'],
|
| 286 |
+
'message' => $result['http_code'] === 200 ? 'File deleted' : 'Delete failed'
|
| 287 |
+
];
|
| 288 |
+
}
|
| 289 |
}
|
| 290 |
|
| 291 |
// External storage handlers
|
|
|
|
| 347 |
|
| 348 |
class GitHubStorage {
|
| 349 |
private $config;
|
| 350 |
+
private $actualBranch = null;
|
| 351 |
|
| 352 |
public function __construct($config) {
|
| 353 |
$this->config = $config;
|
| 354 |
+
// Auto-detect the actual default branch
|
| 355 |
+
$this->detectDefaultBranch();
|
| 356 |
+
}
|
| 357 |
+
|
| 358 |
+
private function detectDefaultBranch() {
|
| 359 |
+
if (empty($this->config['token']) || empty($this->config['owner']) || empty($this->config['repo'])) {
|
| 360 |
+
return;
|
| 361 |
+
}
|
| 362 |
+
|
| 363 |
+
// Get repository info to find the default branch
|
| 364 |
+
$url = "https://api.github.com/repos/{$this->config['owner']}/{$this->config['repo']}";
|
| 365 |
+
$repoInfo = $this->makeRequest($url, 'GET');
|
| 366 |
+
|
| 367 |
+
if ($repoInfo && isset($repoInfo['default_branch'])) {
|
| 368 |
+
$this->actualBranch = $repoInfo['default_branch'];
|
| 369 |
+
error_log("GitHub: Detected default branch as '{$this->actualBranch}'");
|
| 370 |
+
} else {
|
| 371 |
+
// Fallback: try common branch names
|
| 372 |
+
$commonBranches = ['main', 'master', 'develop'];
|
| 373 |
+
foreach ($commonBranches as $branch) {
|
| 374 |
+
if ($this->checkBranchExists($branch)) {
|
| 375 |
+
$this->actualBranch = $branch;
|
| 376 |
+
error_log("GitHub: Found existing branch '{$branch}'");
|
| 377 |
+
break;
|
| 378 |
+
}
|
| 379 |
+
}
|
| 380 |
+
}
|
| 381 |
+
|
| 382 |
+
// Update config with detected branch
|
| 383 |
+
if ($this->actualBranch) {
|
| 384 |
+
$this->config['branch'] = $this->actualBranch;
|
| 385 |
+
}
|
| 386 |
+
}
|
| 387 |
+
|
| 388 |
+
private function checkBranchExists($branchName) {
|
| 389 |
+
$url = "https://api.github.com/repos/{$this->config['owner']}/{$this->config['repo']}/branches/{$branchName}";
|
| 390 |
+
$result = $this->makeRequest($url, 'GET');
|
| 391 |
+
return $result !== false;
|
| 392 |
}
|
| 393 |
|
| 394 |
public function save($filename, $content) {
|
|
|
|
| 405 |
$path = $this->config['path'] . $filename;
|
| 406 |
$url = "https://api.github.com/repos/{$this->config['owner']}/{$this->config['repo']}/contents/{$path}";
|
| 407 |
|
| 408 |
+
error_log("GitHub Save Debug: Attempting to save to $url on branch '{$this->config['branch']}'");
|
| 409 |
|
| 410 |
// Get current file SHA if exists
|
| 411 |
$sha = $this->getFileSHA($path);
|
|
|
|
| 461 |
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
|
| 462 |
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
|
| 463 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
| 464 |
+
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
| 465 |
|
| 466 |
+
// Fix: Add proper User-Agent header as required by GitHub API
|
| 467 |
$headers = [
|
| 468 |
'Authorization: token ' . $this->config['token'],
|
| 469 |
+
'User-Agent: VvvebJs-WebBuilder/1.0 (https://github.com/givanz/VvvebJs)',
|
| 470 |
+
'Accept: application/vnd.github.v3+json',
|
| 471 |
+
'X-GitHub-Api-Version: 2022-11-28'
|
| 472 |
];
|
| 473 |
|
| 474 |
if ($data) {
|
|
|
|
| 503 |
$errorResponse = json_decode($result, true);
|
| 504 |
if ($errorResponse && isset($errorResponse['message'])) {
|
| 505 |
error_log("GitHub API Error Message: " . $errorResponse['message']);
|
| 506 |
+
|
| 507 |
+
// Special handling for branch not found
|
| 508 |
+
if (strpos($errorResponse['message'], 'No commit found for SHA') !== false ||
|
| 509 |
+
strpos($errorResponse['message'], 'Invalid request') !== false) {
|
| 510 |
+
error_log("GitHub: Branch '{$this->config['branch']}' may not exist, attempting to detect correct branch");
|
| 511 |
+
$this->detectDefaultBranch();
|
| 512 |
+
}
|
| 513 |
}
|
| 514 |
|
| 515 |
return false;
|