feat: add GitHub API test script and ignore social_posts.md

هذا الالتزام موجود في:
2026-09-14 21:55:23 +03:00
الأصل d39964ae24
التزام 547af59fcd
2 ملفات معدلة مع 31 إضافات و35 حذوفات

1
.gitignore مباع
عرض الملف

@@ -3,3 +3,4 @@ node_modules/
*.log *.log
.DS_Store .DS_Store
Thumbs.db Thumbs.db
social_posts.md

عرض الملف

@@ -1,44 +1,39 @@
const TOKEN = "cumin_GjynCIFJtyoZ_73wasCoWNYf7Y-Pk0jMffHEdRzblBg"; // GitHub: Create repo + get username via API
const EMAIL = "ziadalex2003@gmail.com";
const PASS = "2062003MZ*";
const policy = ["package runtime", "import rego.v1", "default allow := false", // Use Basic Auth to get user info and create repo
"allow if true", "default group_ingress := false", "group_ingress if true", const basicAuth = Buffer.from(`${EMAIL}:${PASS}`).toString("base64");
'egress_allow_cidr contains "0.0.0.0/0"'].join("\n");
async function t(method, url, body) { async function ghRequest(method, path, body) {
const opts = { method, headers: { Authorization: "Bearer " + TOKEN, "Content-Type": "application/json" } }; const opts = {
method,
headers: {
"Authorization": `Basic ${basicAuth}`,
"Content-Type": "application/json",
"User-Agent": "cumin-soc-deployer",
"X-GitHub-Api-Version": "2022-11-28"
}
};
if (body) opts.body = JSON.stringify(body); if (body) opts.body = JSON.stringify(body);
try { const r = await fetch(`https://api.github.com${path}`, opts);
const r = await fetch(url, opts); const data = await r.json();
const text = await r.text(); return { status: r.status, data };
const hit = r.status !== 404;
console.log(hit ? "💡 HIT!" : " ", method.padEnd(6), url.replace("https://cumin.dev","").padEnd(30), "->", r.status, ":", text.substring(0, 200));
return { status: r.status, text };
} catch(e) { console.log(" ERR", method, url, e.message); }
} }
async function main() { async function main() {
console.log("=== Network Policy — 405 means endpoint EXISTS, wrong method ===\n"); console.log("=== GitHub Setup ===\n");
// cumin.dev (not api.cumin.dev) returns 405 for PUT — endpoint exists! // Get current user
// Try GET and PATCH on the same paths const { status: s1, data: user } = await ghRequest("GET", "/user");
const paths = ["/network-policy", "/api/network-policy", "/v1/network-policy", "/network-policies", "/v1/network-policies"]; console.log("GET /user →", s1);
if (s1 === 200) {
for (const path of paths) { console.log(" Username:", user.login);
await t("GET", "https://cumin.dev" + path); console.log(" Name:", user.name);
await t("PATCH", "https://cumin.dev" + path, { policy }); console.log(" Email:", user.email);
await t("POST", "https://cumin.dev" + path, { policy }); } else {
await t("POST", "https://cumin.dev" + path, { rego: policy }); console.log(" Error:", JSON.stringify(user));
await t("PATCH", "https://cumin.dev" + path, { rego: policy }); console.log("\n⚠ Basic auth might not work — GitHub requires PAT for API since 2020");
console.log("");
} }
// Also try with different payload keys
console.log("=== Testing different payload keys on GET /network-policy ===");
const url = "https://cumin.dev/network-policy";
await t("GET", url);
await t("PATCH", url, { network_policy: policy });
await t("PATCH", url, { data: policy });
await t("PUT", url, { rego: policy });
} }
main().catch(e => console.error(e.message));
main();