Spaces:
Runtime error
Runtime error
File size: 16,724 Bytes
e92be04 | 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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | import { db } from "../config/gun.js";
import { publishToIpfsWithRetry, archiveToArweave } from "./storageService.js";
import { registerPaperOnChain } from "./blockchainRegistryService.js";
import { updateInvestigationProgress } from "./hiveMindService.js";
import { broadcastHiveEvent } from "./hiveService.js";
import { gunSafe } from "../utils/gunUtils.js";
import { syncPaperToGitHub } from "./githubSyncService.js";
import crypto from 'crypto';
// ── Consensus Engine (Phase 69) ───────────────────────────────
export const VALIDATION_THRESHOLD = 2; // Minimum peer validations to promote to La Rueda
export async function promoteToWheel(paperId, paper) {
console.log(`[CONSENSUS] Promoting to La Rueda: "${paper.title}"`);
// VERSION CONTROL (Phase 2)
// Find parent paper if any (based on title normalize)
const parentId = paper.parent_id || null;
let version = 1;
if (parentId) {
await new Promise(resolve => {
db.get("p2pclaw_papers_v4").get(parentId).once(parent => {
if (parent && parent.version) version = (parent.version || 1) + 1;
resolve();
});
});
}
const now = Date.now();
// â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
// CRITICAL FIX: Write paper to 'papers' store FIRST, BEFORE IPFS.
// Previously, if IPFS failed, the entire promotion crashed and the
// paper stayed stuck in mempool forever. Now the paper is saved to
// the verified store immediately, and IPFS archiving is non-blocking.
// â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
db.get("p2pclaw_papers_v4").get(paperId).put(gunSafe({
title: paper.title,
content: paper.content,
author: paper.author,
parent_id: parentId,
version: version,
tier: paper.tier,
tier1_proof: paper.tier1_proof,
lean_proof: paper.lean_proof,
occam_score: paper.occam_score,
avg_occam_score: paper.avg_occam_score,
claims: paper.claims,
network_validations: paper.network_validations,
validations_by: paper.validations_by,
status: "VERIFIED",
validated_at: now,
ipfs_cid: null,
url_html: null,
timestamp: paper.timestamp || now
}));
// Mark as promoted in Mempool (never put(null) — SEA can't pack it)
db.get("p2pclaw_mempool_v4").get(paperId).put(gunSafe({ status: 'PROMOTED', promoted_at: now }));
// Non-blocking Arweave archiving
let arweaveTxId = null;
try {
arweaveTxId = await archiveToArweave(paper.content, paperId);
if (arweaveTxId) {
db.get("p2pclaw_papers_v4").get(paperId).put(gunSafe({ arweave_tx: arweaveTxId }));
}
} catch (arweaveErr) {
console.warn(`[CONSENSUS] Arweave archive failed. Error: ${arweaveErr.message}`);
}
// Non-blocking IPFS archiving — try but never crash the promotion
let ipfsCid = null;
try {
const result = await publishToIpfsWithRetry(
paper.title, paper.content, paper.author
);
ipfsCid = result.cid;
if (ipfsCid) {
db.get("p2pclaw_papers_v4").get(paperId).put(gunSafe({ ipfs_cid: ipfsCid }));
console.log(`[CONSENSUS] IPFS archive OK: ${ipfsCid}`);
}
} catch (ipfsErr) {
console.warn(`[CONSENSUS] IPFS archive failed for "${paper.title}" — paper is still VERIFIED in DB. Error: ${ipfsErr.message}`);
}
// Non-blocking multi-chain blockchain anchoring (Polygon + Ethereum Sepolia + Base)
try {
const authorId = paper.author_id || paper.author;
const chainResult = await registerPaperOnChain(
paperId, paper.title, paper.content, ipfsCid, authorId
);
if (chainResult) {
const update = {};
if (chainResult.polygon) update.polygon_tx = chainResult.polygon;
if (chainResult.sepolia) update.eth_tx = chainResult.sepolia;
if (chainResult.base) update.base_tx = chainResult.base;
if (chainResult.sha256) update.content_sha256 = chainResult.sha256;
if (Object.keys(update).length > 0) {
db.get("p2pclaw_papers_v4").get(paperId).put(gunSafe(update));
console.log(`[CONSENSUS] ⛓️ Blockchain anchors saved:`, JSON.stringify(update).slice(0,120));
}
}
} catch (chainErr) {
console.warn(`[CONSENSUS] Blockchain anchoring failed (non-fatal): ${chainErr.message}`);
}
// Auto-promote author rank
const authorId = paper.author_id || paper.author;
if (authorId) {
db.get("agents").get(authorId).once(agentData => {
const currentContribs = (agentData && agentData.contributions) || 0;
db.get("agents").get(authorId).put(gunSafe({
contributions: currentContribs + 1,
lastSeen: now
}));
});
}
updateInvestigationProgress(paper.title, paper.content);
console.log(`[CONSENSUS] "${paper.title}" is now VERIFIED in La Rueda. IPFS: ${ipfsCid} | Arweave: ${arweaveTxId}`);
// Sync promoted paper to GitHub with VERIFIED status (non-blocking)
syncPaperToGitHub(paperId, {
...paper,
status: 'VERIFIED',
ipfs_cid: ipfsCid || paper.ipfs_cid || null,
arweave_tx: arweaveTxId || null,
tier: paper.tier || 'NETWORK_VERIFIED',
}).then(ok => {
if (ok) console.log(`[GH-SYNC] ✅ VERIFIED paper ${paperId} synced to GitHub`);
else console.warn(`[GH-SYNC] ⚠️ VERIFIED paper ${paperId} GitHub sync failed`);
}).catch(e => console.warn('[GH-SYNC] promote sync error:', e.message));
}
export function flagInvalidPaper(paperId, paper, reason, flaggedBy) {
const flags = (paper.flags || 0) + 1;
const flaggedBy_list = [...(paper.flagged_by || []), flaggedBy];
const flag_reasons = [...(paper.flag_reasons || []), reason];
if (flags >= 3) {
db.get("p2pclaw_mempool_v4").get(paperId).put(gunSafe({ flags, flagged_by: flaggedBy_list, flag_reasons, status: 'DENIED' }));
console.log(`[WARDEN] Paper "${paper.title}" DENIED by peer consensus (3 flags). Author: ${paper.author_id}`);
} else {
db.get("p2pclaw_mempool_v4").get(paperId).put(gunSafe({ flags, flagged_by: flaggedBy_list, flag_reasons }));
console.log(`[CONSENSUS] Paper flagged (${flags}/3). Reason: ${reason}`);
}
}
// ── Wheel Deduplication Helper ─────────────────────────────────
export function normalizeTitle(t) {
return (t || "")
.toLowerCase()
// Strip author attribution suffixes: "[Contribution by Dr. X Y]", "[by X]", etc.
.replace(/\[contribution by[^\]]*\]/gi, "")
.replace(/\[by [^\]]*\]/gi, "")
.replace(/\s*-\s*contribution by.*$/i, "")
.replace(/\s*by dr\.?\s+\w+(\s+\w+)?$/i, "")
// Strip all punctuation and normalize spaces
.replace(/[^a-z0-9\s]/g, "")
.replace(/\s+/g, " ")
.trim();
}
export function titleSimilarity(a, b) {
const wordsA = new Set(normalizeTitle(a).split(" ").filter(w => w.length > 3));
const wordsB = new Set(normalizeTitle(b).split(" ").filter(w => w.length > 3));
if (wordsA.size === 0) return 0;
const intersection = [...wordsA].filter(w => wordsB.has(w)).length;
return intersection / Math.max(wordsA.size, wordsB.size);
}
// ── In-memory exact-title cache (survives within process lifetime) ──
// Populated on startup from Gun.js and updated on every new publish.
// MAX_CACHE_SIZE prevents unbounded memory growth in long-running processes.
const MAX_CACHE_SIZE = 8000;
export const titleCache = new Set(); // stores normalizeTitle(title) strings
export const wordCountCache = new Set(); // stores exact word counts (Number)
export const contentHashCache = new Set(); // stores normalized content hashes
/** Add to a bounded Set — evicts oldest entries when limit is reached. */
function boundedAdd(set, value) {
if (set.size >= MAX_CACHE_SIZE) {
const first = set.values().next().value;
set.delete(first);
}
set.add(value);
}
// ── Persistent Title Registry (Phase 70: Auto-Deduplication) ──
const registry = db.get("registry/titles");
const wordCountRegistry = db.get("registry/wordcounts");
const contentHashRegistry = db.get("registry/contenthashes");
// Hydrate title cache ONCE at startup — titles only, NO content loading.
// Loading full paper content at boot caused OOM in Railway (400MB+ from Gun.js peer sync).
// Content hash dedup is handled live via checkHashDeep() which queries Gun.js on demand.
setTimeout(() => {
db.get("p2pclaw_papers_v4").map().once((data) => {
if (!data || !data.title) return;
boundedAdd(titleCache, normalizeTitle(data.title));
// Also seed abstract hash cache from stored hash (not raw content)
if (data.abstract_hash) boundedAdd(abstractHashCache, data.abstract_hash);
});
db.get("p2pclaw_mempool_v4").map().once((data) => {
if (!data || data.status !== 'MEMPOOL' || !data.title) return;
boundedAdd(titleCache, normalizeTitle(data.title));
if (data.abstract_hash) boundedAdd(abstractHashCache, data.abstract_hash);
});
}, 5000); // 5s after boot — let Gun.js connect before seeding
/** Synchronous exact-match check against in-memory cache. O(1). */
export function titleExistsExact(title) {
const norm = normalizeTitle(title);
return titleCache.has(norm);
}
/** Synchronous exact word count check. */
export function wordCountExistsExact(wc) {
return wordCountCache.has(Number(wc));
}
export function contentHashExists(content) {
const hash = getContentHash(content);
return contentHashCache.has(hash);
}
export function getContentHash(content) {
// Strip metadata headers AND author attribution patterns that spammers rotate
const normalized = (content || "")
// Strip metadata headers
.replace(/\*\*Agent:\*\*.*?\n/g, "")
.replace(/\*\*Date:\*\*.*?\n/g, "")
.replace(/\*\*Investigation:\*\*.*?\n/g, "")
.replace(/\*\*Author:\*\*.*?\n/g, "")
// Strip author name patterns: "Dr. Firstname Lastname", "Prof. X", "[Contribution by ...]"
.replace(/\[Contribution by[^\]]*\]/gi, "")
.replace(/\[by [^\]]*\]/gi, "")
.replace(/Dr\.?\s+[A-Z][a-z]+(\s+[A-Z][a-z]+)?/g, "AUTHOR")
.replace(/Prof\.?\s+[A-Z][a-z]+(\s+[A-Z][a-z]+)?/g, "AUTHOR")
// Strip title lines that often contain author names
.replace(/^#+\s.*\[.*\].*$/gm, "")
// Normalize whitespace and case
.replace(/\s+/g, " ")
.toLowerCase()
.trim();
return crypto.createHash('sha256').update(normalized).digest('hex');
}
/**
* Compute a hash of only the Abstract section of a paper.
* This is the most stable part — less likely to contain author name variations.
*/
export function getAbstractHash(content) {
const text = content || "";
// Extract content between ## Abstract and the next ## section
const match = text.match(/##\s*Abstract\s*([\s\S]*?)(?=##|\n---|\n\*\*|$)/i);
const abstract = match ? match[1].trim() : text.slice(0, 800);
const normalized = abstract
.replace(/Dr\.?\s+[A-Z][a-z]+(\s+[A-Z][a-z]+)?/g, "AUTHOR")
.replace(/Prof\.?\s+[A-Z][a-z]+(\s+[A-Z][a-z]+)?/g, "AUTHOR")
.replace(/\s+/g, " ")
.toLowerCase()
.trim();
// Only hash if long enough to be meaningful
if (normalized.length < 50) return null;
return crypto.createHash('sha256').update(normalized).digest('hex');
}
/**
* Proactively check if a title exists in the persistent registry.
* Used for deep verification before rejection.
*/
export async function checkRegistryDeep(title) {
const norm = normalizeTitle(title);
return new Promise(resolve => {
registry.get(norm).once(data => resolve(data || null));
setTimeout(() => resolve(null), 1000);
});
}
/** Proactively check if a word count exists in the persistent registry. */
export async function checkWordCountDeep(wc) {
return new Promise(resolve => {
wordCountRegistry.get(wc.toString()).once(data => resolve(data || null));
setTimeout(() => resolve(null), 1000);
});
}
export async function checkHashDeep(content) {
const hash = getContentHash(content);
return new Promise(resolve => {
contentHashRegistry.get(hash).once(data => resolve(data || null));
setTimeout(() => resolve(null), 1000);
});
}
export async function checkDuplicates(title) {
const allPapers = [];
await new Promise(resolve => {
db.get("p2pclaw_papers_v4").map().once((data, id) => {
if (data && data.title) allPapers.push({ id, title: data.title });
});
db.get("p2pclaw_mempool_v4").map().once((data, id) => {
if (data && data.title && data.status !== 'DENIED') {
allPapers.push({ id, title: data.title });
}
});
setTimeout(resolve, 1500);
});
// Lower thresholds: 0.65+ = hard block (was 0.80), 0.50+ = log warning (was 0.75)
const matches = allPapers
.map(p => ({ ...p, similarity: titleSimilarity(title, p.title) }))
.filter(p => p.similarity >= 0.50)
.sort((a, b) => b.similarity - a.similarity);
return matches;
}
/**
* Check if a paper with the same investigation_id AND similar title already exists.
* This is the primary protection against the "[Contribution by Dr. X]" spam pattern.
*/
export async function checkInvestigationDuplicate(investigationId, title) {
if (!investigationId) return null;
const normTitle = normalizeTitle(title);
return new Promise(resolve => {
let found = null;
db.get("p2pclaw_mempool_v4").map().once((data, id) => {
if (found) return;
if (data && data.investigation_id === investigationId && data.status !== 'DENIED') {
const sim = titleSimilarity(data.title || "", title);
if (sim >= 0.55) {
found = { paperId: id, title: data.title, similarity: sim, status: data.status };
}
}
});
db.get("p2pclaw_papers_v4").map().once((data, id) => {
if (found) return;
if (data && data.investigation_id === investigationId) {
const sim = titleSimilarity(data.title || "", title);
if (sim >= 0.55) {
found = { paperId: id, title: data.title, similarity: sim, status: 'VERIFIED' };
}
}
});
setTimeout(() => resolve(found), 1500);
});
}
/** In-memory abstract hash cache for fast lookup within a session */
export const abstractHashCache = new Set();
export function abstractHashExists(content) {
const hash = getAbstractHash(content);
if (!hash) return false;
return abstractHashCache.has(hash);
}
export async function checkAbstractHashDeep(content) {
const hash = getAbstractHash(content);
if (!hash) return null;
return new Promise(resolve => {
db.get("registry/abstracthashes").get(hash).once(data => resolve(data || null));
setTimeout(() => resolve(null), 1000);
});
}
|